Skip to content

Commit

Permalink
fix(babel): fix regex to exclude only .test.js (patternfly#285)
Browse files Browse the repository at this point in the history
  • Loading branch information
priley86 authored and jeff-phillips-18 committed Mar 23, 2018
1 parent 6356892 commit 0bb3717
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
"start": "concurrently \"npm run storybook:run\" \"npm run storybook:openurl\"",
"commit": "git-cz",
"build": "npm run build:scripts && npm run build:sass && npm run build:less",
"build:scripts": "babel src --out-dir dist/js --ignore test.js,__mocks__",
"build:scripts": "babel src --out-dir dist/js --ignore .test.js,__mocks__",
"build:less": "mkdir -p dist/less && cp -r less/* dist/less",
"build:sass": "mkdir -p dist/sass && cp -r sass/patternfly-react/* dist/sass && node-sass --output-style compressed --include-path sass $npm_package_sassIncludes_patternfly $npm_package_sassIncludes_bootstrap $npm_package_sassIncludes_fontAwesome -o dist/css sass/patternfly-react.scss",
"lint": "eslint --fix --max-warnings 0 src storybook && npm run stylelint",
Expand Down

0 comments on commit 0bb3717

Please sign in to comment.