mirror of
https://github.com/chaijs/chai
synced 2024-11-12 23:07:06 +00:00
clean up index.js to not check for cov, revert package.json to use index.js
This commit is contained in:
parent
86fe576d56
commit
0b8fff789f
2 changed files with 2 additions and 4 deletions
4
index.js
4
index.js
|
@ -1,3 +1 @@
|
|||
module.exports = (process && process.env && process.env.CHAI_COV)
|
||||
? require('./lib-cov/chai')
|
||||
: require('./lib/chai');
|
||||
module.exports = require('./lib/chai');
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
"bugs": {
|
||||
"url": "https://github.com/chaijs/chai/issues"
|
||||
},
|
||||
"main": "./lib/chai",
|
||||
"main": "./index",
|
||||
"scripts": {
|
||||
"test": "mocha"
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue