Skip to content

Commit

Permalink
fix: Remove sourcemaps support from babel
Browse files Browse the repository at this point in the history
This is what was making the tests take so long.
  • Loading branch information
jameskerr committed Jun 11, 2019
1 parent efc1ecd commit 36e61e3
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 131 deletions.
1 change: 0 additions & 1 deletion .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
"plugins": [
"@babel/plugin-proposal-object-rest-spread",
"@babel/plugin-proposal-class-properties",
"source-map-support",
"inline-react-svg"
],
"ignore": ["src/js/flow-typed"]
Expand Down
128 changes: 0 additions & 128 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@
"prebuild": "npm run clean",
"build": "npm-run-all -p build:*",
"watch": "npm-run-all -p watch:*",
"build:js": "babel src/js -d dist/js --source-maps=inline",
"build:js": "babel src/js -d dist/js",
"build:css": "node-sass-chokidar src/css --output dist/css",
"build:static": "cpx \"src/static/**\" dist/static",
"watch:js": "npm run build:js -- --watch --skip-initial-build --source-maps",
"watch:js": "npm run build:js -- --watch --skip-initial-build",
"watch:css": "npm run build:css -- --watch --skip-initial",
"watch:static": "npm run build:static -- --watch",
"watch:reload": "livereload dist",
Expand Down

0 comments on commit 36e61e3

Please sign in to comment.