Skip to content

Commit

Permalink
fix: fix output being the same for cjs and es
Browse files Browse the repository at this point in the history
  • Loading branch information
rodoabad committed Jun 23, 2018
1 parent f71a46e commit 2a3bd62
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
],
"scripts": {
"build": "npm run build-cjs && npm run build-es",
"build-cjs": "cross-env BABEL_ENV=cjs parcel build ./src/ManInTheMirror.js --out-dir ./dist/cjs",
"build-es": "cross-env BABEL_ENV=es parcel build ./src/ManInTheMirror.js --out-dir ./dist/es",
"build-cjs": "cross-env BABEL_ENV=cjs parcel build ./src/ManInTheMirror.js --out-dir ./dist/cjs --no-cache",
"build-es": "cross-env BABEL_ENV=es parcel build ./src/ManInTheMirror.js --out-dir ./dist/es --no-cache",
"prepublish": "npm run build",
"semantic-release": "semantic-release"
},
Expand Down

0 comments on commit 2a3bd62

Please sign in to comment.