1
0
mirror of https://github.com/bobwen-dev/react-templates synced 2025-04-12 00:56:39 +02:00

stop transpiling test files

This commit is contained in:
Omer Ganim 2016-05-15 16:40:13 +03:00
parent dc9e84e99b
commit 43019f987e

View File

@ -9,16 +9,14 @@
"scripts": { "scripts": {
"build": "npm run lint && npm run test", "build": "npm run lint && npm run test",
"lint": "eslint .", "lint": "eslint .",
"test": "node dist-test/src/test.js", "test": "node test/src/test.js",
"testd": "node test/src/test.js",
"test-cov": "istanbul cover test/src/test.js -- --require test/support/env --reporter dot --check-leaks test/ test/acceptance/", "test-cov": "istanbul cover test/src/test.js -- --require test/support/env --reporter dot --check-leaks test/ test/acceptance/",
"patch": "npm version patch -m\"update version to %s\" && git push && git push --tags", "patch": "npm version patch -m\"update version to %s\" && git push && git push --tags",
"minor": "npm version minor -m\"update version to %s\" && git push && git push --tags", "minor": "npm version minor -m\"update version to %s\" && git push && git push --tags",
"major": "npm version major -m\"update version to %s\" && git push && git push --tags", "major": "npm version major -m\"update version to %s\" && git push && git push --tags",
"buildwp": "webpack --config webpack-production.config.js --progress --profile --colors", "buildwp": "webpack --config webpack-production.config.js --progress --profile --colors",
"babel": "rm -rf build && babel src/ --out-dir dist && babel test/src/ --out-dir dist-test/src && cp -R test/data dist-test/", "babel": "rm -rf dist && babel src/ --out-dir dist",
"babel2": "rm -rf build && babel src/ --out-dir build/src && babel test/src/ --out-dir build/test/src && cp -R test/data build/test/data && cp package.json build/", "all": "npm run lint && npm run test",
"all": "npm run lint && npm run babel && npm run test",
"prepublish": "npm run babel" "prepublish": "npm run babel"
}, },
"repository": { "repository": {