-
Notifications
You must be signed in to change notification settings - Fork 6.3k
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
Bithound.metalsmith stylus.2.0.0 #821
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
version: v1.5.0 | ||
ignore: {} | ||
patch: | ||
'npm:marked:20150520': | ||
- marked: | ||
patched: '2016-07-08T18:27:48.890Z' | ||
- metalsmith-markdown > marked: | ||
patched: '2016-07-08T18:27:48.890Z' | ||
'npm:minimatch:20160620': | ||
- metalsmith-collections > minimatch: | ||
patched: '2016-07-08T18:27:48.890Z' | ||
- metalsmith-stylus > minimatch: | ||
patched: '2016-07-08T18:27:48.890Z' | ||
- metalsmith > recursive-readdir > minimatch: | ||
patched: '2016-07-08T18:27:48.890Z' | ||
- metalsmith-stylus > stylus > glob > minimatch: | ||
patched: '2016-07-08T18:27:48.890Z' |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,9 @@ | |
"test": "npm run test:lint && npm run test:unit && npm run test:smoke", | ||
"test:lint": "standard", | ||
"test:unit": "tape tests/**/*.test.js | faucet", | ||
"test:smoke": "tape tests/*.smoketest.js | faucet" | ||
"test:smoke": "tape tests/*.smoketest.js | faucet", | ||
"snyk-protect": "snyk protect", | ||
"prepublish": "npm run snyk-protect" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
|
@@ -35,7 +37,7 @@ | |
"changelog-url": "1.0.2", | ||
"cheerio": "0.19.0", | ||
"chokidar": "1.2.0", | ||
"handlebars": "4.0.4", | ||
"handlebars": "4.0.5", | ||
"html-to-text": "^1.5.0", | ||
"js-yaml": "^3.4.5", | ||
"junk": "1.0.2", | ||
|
@@ -49,16 +51,17 @@ | |
"metalsmith-metadata": "0.0.2", | ||
"metalsmith-permalinks": "0.4.0", | ||
"metalsmith-prism": "2.1.1", | ||
"metalsmith-stylus": "1.0.0", | ||
"metalsmith-stylus": "^2.0.0", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think these should be in another pr There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. +1 for "Update dependencies" PR There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
"metalsmith-yearly-pagination": "2.0.0", | ||
"ncp": "2.0.0", | ||
"node-geocoder": "^3.4.1", | ||
"node-version-data": "1.0.0", | ||
"octonode": "0.7.4", | ||
"octonode": "0.7.6", | ||
"request": "^2.67.0", | ||
"require-dir": "0.3.0", | ||
"semver": "5.0.3", | ||
"st": "1.0.0", | ||
"snyk": "^1.17.0", | ||
"st": "1.1.0", | ||
"strftime": "0.9.2" | ||
}, | ||
"devDependencies": { | ||
|
@@ -68,5 +71,6 @@ | |
"proxyquire": "^1.7.3", | ||
"standard": "^6.0.8", | ||
"tape": "^4.2.2" | ||
} | ||
}, | ||
"snyk": true | ||
} |
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.
Website is not published to npm, so it should be
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.
isn't prepublish always run after install?
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.
@thealphanerd not always, but most times:
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 think the intention is better understandable with 'postinstall', even if 'prepublish' might work as well.