Skip to content

Commit

Permalink
Merge pull request #120 from chaijs/fix-build
Browse files Browse the repository at this point in the history
fix(build): ensure node uses umd build
  • Loading branch information
keithamus authored Nov 9, 2017
2 parents 018367e + 7900eaf commit 94cd6a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"index.js",
"type-detect.js"
],
"main": "./index.js",
"main": "./type-detect.js",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/chaijs/type-detect.git"
Expand Down
2 changes: 1 addition & 1 deletion rollup.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default {
output: {
file: env === 'test' ? 'type-detect.test.js' : 'type-detect.js',
name: 'typeDetect',
format: 'iife',
format: 'umd',
},
plugins,
};

0 comments on commit 94cd6a2

Please sign in to comment.