Skip to content

Commit e500e3c

Browse files
authoredSep 10, 2020
fix: don't copy tests on build (#112)
1 parent f7317a6 commit e500e3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"scripts": {
3838
"prepublishOnly": "yarn build",
3939
"pretty-quick": "./bin/pretty-quick.js",
40-
"build": "babel src -d dist --copy-files --ignore __tests__",
40+
"build": "babel src -d dist --copy-files --no-copy-ignored --ignore '**/__tests__/*.js'",
4141
"test": "jest",
4242
"lint": "eslint . --ignore-path=.gitignore",
4343
"semantic-release": "semantic-release"

0 commit comments

Comments
 (0)
Please sign in to comment.