Commit 468cbc2 1 parent 5d55817 commit 468cbc2 Copy full SHA for 468cbc2
File tree 2 files changed +10
-2
lines changed
2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 17
17
cd /d %~dp0
18
18
cd ..
19
19
20
- call npm install -g npm@ latest || goto :error
20
+ @ rem The image we're currently running has a broken version of Node.js enabled
21
+ @ rem by nvm (v10.15.3), which has no npm bin. This hack uses the functional
22
+ @ rem Node v8.9.1 to install npm@latest, it then uses this version of npm to
23
+ @ rem install npm for v10.15.3.
24
+ call nvm use v8.9.1 || goto :error
25
+ call node C:\Users\kbuilder\AppData\Roaming\nvm-ps\versions\v8.9.1\node_modules\npm-bootstrap\bin\npm-cli.js i npm -g || goto :error
26
+ call nvm use v10.15.3 || goto :error
27
+ call node C:\Users\kbuilder\AppData\Roaming\nvm-ps\versions\v8.9.1\node_modules\npm\bin\npm-cli.js i npm -g || goto :error
28
+
21
29
call npm install || goto :error
22
30
call npm run test || goto :error
23
31
Original file line number Diff line number Diff line change 99
99
"eslint-plugin-prettier" : " ^3.0.0" ,
100
100
"gts" : " ^1.0.0" ,
101
101
"intelli-espower-loader" : " ^1.0.1" ,
102
- "jsdoc" : " ^ 3.5.4 " ,
102
+ "jsdoc" : " 3.5.5 " ,
103
103
"jsdoc-baseline" : " git+https://github.com/hegemonic/jsdoc-baseline.git" ,
104
104
"linkinator" : " ^1.1.2" ,
105
105
"mocha" : " ^6.0.0" ,
You can’t perform that action at this time.
0 commit comments