We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 319d272 commit cc55ca5Copy full SHA for cc55ca5
package.json
@@ -13,7 +13,7 @@
13
"scripts": {
14
"start": "node scripts/start.js --debug-template",
15
"build": "node scripts/build.js --debug-template",
16
- "create-react-app": "node global-cli/index.js --scripts-version \"$PWD/`npm pack`\"",
+ "create-react-app": "node global-cli/index.js --scripts-version \"$PWD/`tasks/pack.sh`\"",
17
"test": "tasks/e2e.sh"
18
},
19
"files": [
tasks/e2e.sh
@@ -47,7 +47,7 @@ perl -i -p0e 's/bundledDependencies.*?]/bundledDependencies": []/s' package.json
47
48
# Pack react-scripts
49
npm install
50
-scripts_path=$PWD/`npm pack`
+scripts_path=$PWD/`tasks/pack.sh`
51
52
# lint
53
./node_modules/.bin/eslint --ignore-path .gitignore ./
tasks/pack.sh
@@ -0,0 +1 @@
1
+echo `npm pack`
0 commit comments