You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/trace/resolver.ts
+1-1
Original file line number
Diff line number
Diff line change
@@ -368,7 +368,7 @@ export class Resolver {
368
368
369
369
if(provider==="nodemodules"){
370
370
thrownewJspmError(
371
-
`${parentUrl}node_modules/${target.name}does not exist, try installing "${target.name}" with npm first via "npm install ${target.name}".`
371
+
`Cannot find package ${target.name}in node_modules from parent ${parentUrl}. Try installing "${target.name}" with npm first adding it to package.json "dependencies" or running "npm install --save${target.name}".`
0 commit comments