From c1faf95b9bbaa1981013e98576fc58a4d6217020 Mon Sep 17 00:00:00 2001 From: ppatel221 <31732426+ppatel221@users.noreply.github.com> Date: Wed, 3 Jan 2018 18:52:01 -0500 Subject: [PATCH] Fix typo in precompiling-with-webpack.md (#1625) --- docs/recipes/precompiling-with-webpack.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/recipes/precompiling-with-webpack.md b/docs/recipes/precompiling-with-webpack.md index 37c62fbae..4d9465d3b 100644 --- a/docs/recipes/precompiling-with-webpack.md +++ b/docs/recipes/precompiling-with-webpack.md @@ -222,7 +222,7 @@ npm scripts: { "scripts": { "precompile-src": "cross-env NODE_ENV=test babel src --out-dir _src", - "precompile-tests": "cross-env NODE_ENV=test webpack --config webpack.config.test.js", + "precompile-tests": "cross-env NODE_ENV=test webpack --config webpack.config.js", "pretest": "npm run precompile-src && npm run precompile-tests", "test": "cross-env NODE_ENV=test nyc --cache ava _build" }