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
In the past, jspm install jade would create a directory, jade@1.11.0, and a file, jade@1.11.0.js, in directory jspm_packages/npm. The file is no longer created during installation.
The error may be related to commit 7089f78 for issue #1291.
When these two lines are removed from lib/package.js, the former behaviour is restored:
# lines790,791if(exists)returnexists;
The error seems to occur when the main entry in package.json is a directory, not a file.
The text was updated successfully, but these errors were encountered:
Recently, after installing plugin-jade with no error messages, an attempt to load a .jade file results in a 404 error, file not found, for url http://localhost:8080/jspm_packages/npm/jade@1.11.0.js.
In the past,
jspm install jade
would create a directory, jade@1.11.0, and a file, jade@1.11.0.js, in directory jspm_packages/npm. The file is no longer created during installation.The error may be related to commit 7089f78 for issue #1291.
When these two lines are removed from lib/package.js, the former behaviour is restored:
The error seems to occur when the
main
entry inpackage.json
is a directory, not a file.The text was updated successfully, but these errors were encountered: