-
Notifications
You must be signed in to change notification settings - Fork 462
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
npm run-script dev fails #834
Comments
I assume you already ran |
Yes, that ran perfectly. :) |
will run bash script from package.json from 'scripts' value of '' attribute. For example: package.json
In this case you can run scripts:
In your case you probably wont have dev script. Remember that few scripts name are reserved (for example npm test will try to run, npm run pretest, npm run test, npm run posttest). More info on https://docs.npmjs.com/misc/scripts Simply check the package.json file and see what the name of the key is for dev. In my case it was start instead of dev, so I ran |
@An-prog-hub actually, the Line 302 in 8fb5820
|
Since worker threads inherit non-process-specific options by default, the configuration needs to be shared via workerData. Fixes: nodejs#834
Since worker threads inherit non-process-specific options by default, the configuration needs to be shared via workerData. PR-URL: nodejs/node-addon-api#837 Fixes: nodejs/node-addon-api#834 Reviewed-By: Michael Dawson <midawson@redhat.com>
Since worker threads inherit non-process-specific options by default, the configuration needs to be shared via workerData. PR-URL: nodejs/node-addon-api#837 Fixes: nodejs/node-addon-api#834 Reviewed-By: Michael Dawson <midawson@redhat.com>
Since worker threads inherit non-process-specific options by default, the configuration needs to be shared via workerData. PR-URL: nodejs/node-addon-api#837 Fixes: nodejs/node-addon-api#834 Reviewed-By: Michael Dawson <midawson@redhat.com>
Since worker threads inherit non-process-specific options by default, the configuration needs to be shared via workerData. PR-URL: nodejs/node-addon-api#837 Fixes: nodejs/node-addon-api#834 Reviewed-By: Michael Dawson <midawson@redhat.com>
Hello! 🙂
I tried to run
npm run-script dev
and it fails. Here is the relevant part of the log:The text was updated successfully, but these errors were encountered: