---FLAGRANT SYSTEM ERROR---
Error: "browserify exited with code 8"
code: 8
stderr:
stream.js:94
throw er; // Unhandled stream error in pipe.
^
Error: Cannot find module '/tmp/peaks.js114610-1072-1hx4qam/node_modules/peaks.js/deamdify' from '/tmp/peaks.js114610-1072-1hx4qam'
at /home/admin/browserify-cdn/node_modules/browserify/node_modules/resolve/lib/async.js:36:25
at load (/home/admin/browserify-cdn/node_modules/browserify/node_modules/resolve/lib/async.js:54:43)
at /home/admin/browserify-cdn/node_modules/browserify/node_modules/resolve/lib/async.js:60:22
at /home/admin/browserify-cdn/node_modules/browserify/node_modules/resolve/lib/async.js:16:47
at Object.oncomplete (fs.js:107:15)
dirPath: /tmp/peaks.js114610-1072-1hx4qam
This is probably an issue with the package, and not browserify-cdn itself.
If you feel differently, feel free to file a bug report at:
https://github.com/jesusabdullah/browserify-cdn/issues
Include the ENTIRETY of the contents of this message, and he can
try to help you out.
Have a nice day!
I have added the following in my package.json to deamdify local code:
"browserify": {
"transform": [
"deamdify"
]
}
The code is hosted on https://github.com/bbcrd/peaks.js
Let me know how I can provide additional informations to solve this issue :-)
Thanks for this service! Awesome to simplify the process for newcomers :-)
Question: are packages browserified based on GIT tags or npm registry tags? Any chance to debug locally before pushing/tagging the code?
wzrd.in doesn't have any special support for transforms, meaning that if deamdify needs to be installed alongside browserify then it's just not gonna work right now. If someone wants to investigate supporting some sane list of transforms, I'd be interested.
We only support bundling modules that are on the npm registry, but an npm module's dependencies are installed with "npm install --production" so if git's available on the build machine then it probably works.
The best way to debug locally is to run a local instance of browserify-cdn, which should be as simple as npm install && npm start.
Hello,
I have encountered this trace when accessing http://wzrd.in/standalone/peaks.js@0.3.0-beta.4
I have added the following in my
package.json
to deamdify local code:The code is hosted on https://github.com/bbcrd/peaks.js Let me know how I can provide additional informations to solve this issue :-)
Thanks for this service! Awesome to simplify the process for newcomers :-)
Question: are packages browserified based on GIT tags or npm registry tags? Any chance to debug locally before pushing/tagging the code?