-
Notifications
You must be signed in to change notification settings - Fork 40
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
feat: Use videojs-generator-verify to verify new packages #232
Conversation
29b06b8
to
9d9f145
Compare
bb5be65
to
2bdf4c8
Compare
9d9f145
to
733aa99
Compare
generators/app/package-json.js
Outdated
@@ -142,7 +141,7 @@ const packageJSON = (current, context) => { | |||
'clean': 'shx rm -rf ./dist ./test/dist', | |||
'postclean': 'shx mkdir -p ./dist ./test/dist', | |||
'lint': 'vjsstandard', | |||
'prepublish': 'not-in-install && npm run build && pkg-ok || in-install', | |||
'prepublishOnly': 'npm run build && vjsverify', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not-in-install was not working correctly for me with npm@6
, this may be something we have to update our projects with right away.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can not-in-install
be fixed for npm@6 rather than opening a bunch more PRs?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good question let me check
@@ -3,8 +3,12 @@ | |||
const helpers = require('yeoman-test'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I re-worked this file a lot, we now make sure that the version
, ci
, install
and prepublishOnly
scripts will work by using the various commands. In the future we should probably add audit
here as well.
3208a75
to
adf411d
Compare
91ce039
to
95c17a2
Compare
95c17a2
to
a5cd321
Compare
Depends on videojs/videojs-generator-verify#1
Closes #230