File tree 3 files changed +8
-8
lines changed
3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 95
95
96
96
if hash npm 2> /dev/null
97
97
then
98
- # npm 5 is too buggy right now
98
+ # npm 5.0-5.3 is too buggy
99
99
if [ $( npm -v | head -c 1) -eq 5 ]; then
100
- npm i -g npm@^4.x
100
+ npm i -g npm@^5.4.0
101
101
fi ;
102
102
npm cache clean || npm cache verify
103
103
fi
Original file line number Diff line number Diff line change 87
87
88
88
if hash npm 2> /dev/null
89
89
then
90
- # npm 5 is too buggy right now
90
+ # npm 5.0-5.3 is too buggy
91
91
if [ $( npm -v | head -c 1) -eq 5 ]; then
92
- npm i -g npm@^4.x
92
+ npm i -g npm@^5.4.0
93
93
fi ;
94
94
npm cache clean || npm cache verify
95
95
fi
@@ -163,8 +163,8 @@ npm install test-integrity@^2.0.1
163
163
# Enter the app directory
164
164
cd " $temp_app_path /test-kitchensink"
165
165
166
- # Link to our preset
167
- npm link " $root_path " /packages/babel-preset-react-app
166
+ # Install our preset
167
+ npm install file: " $root_path " /packages/babel-preset-react-app
168
168
169
169
# Link to test module
170
170
npm link " $temp_module_path /node_modules/test-integrity"
Original file line number Diff line number Diff line change 86
86
87
87
if hash npm 2> /dev/null
88
88
then
89
- # npm 5 is too buggy right now
89
+ # npm 5.0-5.3 is too buggy
90
90
if [ $( npm -v | head -c 1) -eq 5 ]; then
91
- npm i -g npm@^4.x
91
+ npm i -g npm@^5.4.0
92
92
fi ;
93
93
npm cache clean || npm cache verify
94
94
fi
You can’t perform that action at this time.
0 commit comments