Open romelgomez opened 6 years ago
Thanks for the bug report @romelgomez! I'll take a look and push a fix.
Any chance of this getting fixed. Thanks
After downloading the git repo and run
npm install && npm install -g gulp && gulp
'rxjs' is imported by app/js/utils/cookies.js, but could not be resolved – treating it as an external dependency 'rxjs' is imported by app/js/editors.js, but could not be resolved – treating it as an external dependency 'jquery' is imported by app/js/editors.js, but could not be resolved – treating it as an external dependency 'codemirror' is imported by app/js/editors.js, but could not be resolved – treating it as an external dependency 'jquery' is imported by app/js/runtime.js, but could not be resolved – treating it as an external dependency
The next error, it fixed after update the gulpfile
The sourceMap option has been renamed to "sourcemap" (lowercase "m") in Rollup. The old form is now deprecated in rollup-stream. options.entry is deprecated, use options.input
return rollup({ input: './app/js/runtime.js', sourcemap: true,
I ran npm audit fix
and thereafter gulp
, still get the sourceMap
and deprecated warnings but I'm able to open up :8080 and see the content.
After cloning this repo and npm install && npm install -g gulp && gulp
I get a reference error: primordials is not defined
`
at fs.js:27:26
at req_ (/home/abhishek/rxjs-in-action/node_modules/natives/index.js:137:5)
at Object.req [as require] (/home/abhishek/rxjs-in-action/node_modules/natives/index.js:54:10)
at Object.
when I again try to run it then show the same error. How can I fix it?
@abhishe3571 @paulpdaniels
with this work around its works properly:
yarn install && yarn global add gulp && gulp
I tried the yarn
workaround and I still got the ReferenceError: primordials is not defined
.
What fixed it for me was to also switch from node 12 to node 10.
After downloading the git repo and run
npm install && npm install -g gulp && gulp
The next error, it fixed after update the gulpfile
The sourceMap option has been renamed to "sourcemap" (lowercase "m") in Rollup. The old form is now deprecated in rollup-stream. options.entry is deprecated, use options.input