From 8a78188dcb02142b3e502b6352752a8528bd9b01 Mon Sep 17 00:00:00 2001 From: Stijn de Witt Date: Mon, 31 Oct 2016 12:41:46 +0100 Subject: [PATCH] Fix build on Windows Removed the node_modules prefix when calling eslint and jest They are not needed since these libraries are NPM dependencies and NPM knows how to invoke them See Running tests fails on Windows #28 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 703a82f..e809ee6 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "i18n made simple", "main": "main.js", "scripts": { - "test": "node_modules/.bin/eslint . && node_modules/.bin/jest", + "test": "eslint . && jest", "dist": "babel -d dist ComponentInterpolator.js extensions/i18n_js.js" }, "author": "Jon Jensen",