From 43019f987ec68fccdf1d5835bc5e7308555271f9 Mon Sep 17 00:00:00 2001 From: Omer Ganim Date: Sun, 15 May 2016 16:40:13 +0300 Subject: [PATCH] stop transpiling test files --- package.json | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 18f7066..103916e 100644 --- a/package.json +++ b/package.json @@ -9,16 +9,14 @@ "scripts": { "build": "npm run lint && npm run test", "lint": "eslint .", - "test": "node dist-test/src/test.js", - "testd": "node test/src/test.js", + "test": "node test/src/test.js", "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", "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", "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/", - "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 babel && npm run test", + "babel": "rm -rf dist && babel src/ --out-dir dist", + "all": "npm run lint && npm run test", "prepublish": "npm run babel" }, "repository": {