Skip to content

Commit

Permalink
fix(publish): Do not publish tests
Browse files Browse the repository at this point in the history
  • Loading branch information
danez committed Nov 23, 2019
1 parent 8334eeb commit ef19403
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 @@ -76,8 +76,8 @@
},
"scripts": {
"build": "yarn build:js && yarn build:es",
"build:js": "cross-env BABEL_ENV=production BABEL_OUTPUT=cjs babel src --out-dir lib/js --ignore __tests__ --copy-files",
"build:es": "cross-env BABEL_ENV=production BABEL_OUTPUT=esm babel src --out-dir lib/es --ignore __tests__ --copy-files",
"build:js": "cross-env BABEL_ENV=production BABEL_OUTPUT=cjs babel src --out-dir lib/js --ignore **/__tests__,**/__mocks__",
"build:es": "cross-env BABEL_ENV=production BABEL_OUTPUT=esm babel src --out-dir lib/es --ignore **/__tests__,**/__mocks__",
"build:storybook": "build-storybook -o .docs",
"lint": "spire lint",
"prepublishOnly": "yarn build",
Expand Down

0 comments on commit ef19403

Please sign in to comment.