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
{{ message }}
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.
I'm trying to remove dependencies on Github while using jspm and when I change the dependency github:nodelibs-buffer to npm:jspm-nodelibs-buffer, the module loader file is not being created in the jspm_packages/npm folder. All the other jspm-nodelibs-* dependencies that I am requiring are fine:
One thing I've noticed as a difference between other nodelibs-* projects is the package.json. The main property does not have a ./ before the main value.
nodelibs-vm: "main": "./vm.js",
nodelibs-buffer: "main": "buffer.js",
The text was updated successfully, but these errors were encountered:
ndzeller
changed the title
Module wrapper not being created in jspm_packages/npm for dependency npm:jspm-nodelibs-buffer
Module loader file not being created in jspm_packages/npm for dependency npm:jspm-nodelibs-buffer
Jan 18, 2018
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hello.
I'm trying to remove dependencies on Github while using jspm and when I change the dependency
github:nodelibs-buffer
tonpm:jspm-nodelibs-buffer
, the module loader file is not being created in thejspm_packages/npm
folder. All the otherjspm-nodelibs-*
dependencies that I am requiring are fine:One thing I've noticed as a difference between other
nodelibs-*
projects is thepackage.json
. The main property does not have a./
before the main value.nodelibs-vm:
"main": "./vm.js",
nodelibs-buffer:
"main": "buffer.js",
The text was updated successfully, but these errors were encountered: