We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 389c34e + 4efe63f commit 86816acCopy full SHA for 86816ac
build/ensure/npm/npm.ts
@@ -14,15 +14,15 @@ namespace $ {
14
&& mod.name() !== 'node'
15
&& ! mod.name().startsWith('@')
16
) {
17
- $node [ mod.name() ] // force autoinstall through npm
+ this.$.$node_autoinstall(mod.name()) // force autoinstall through npm
18
return true
19
}
20
21
if(
22
[ node, node_modules ].includes( parent.parent() )
23
&& parent.name().startsWith('@')
24
25
- $node [ `${parent.name()}/${mod.name()}` ] // force autoinstall through npm
+ this.$.$node_autoinstall(`${parent.name()}/${mod.name()}`) // force autoinstall through npm
26
27
28
return false
0 commit comments