mirror of
https://github.com/bcomnes/deploy-to-neocities.git
synced 2026-01-16 22:56:28 +00:00
refactor: Made versioning more efficient.
This commit is contained in:
parent
b0dba38c69
commit
7b4bdb680c
1
.gitignore
vendored
1
.gitignore
vendored
@ -3,3 +3,4 @@ sandbox.js
|
||||
config.json
|
||||
public
|
||||
node_modules
|
||||
tmp_modules
|
||||
|
||||
@ -12,8 +12,8 @@
|
||||
"release": "git push --follow-tags && gh-release",
|
||||
"version": "run-s version:*",
|
||||
"version:1-changelog": "auto-changelog -p --template keepachangelog auto-changelog --breaking-pattern 'BREAKING:' && git add CHANGELOG.md",
|
||||
"version:2-cleandeps": "rm -rf node_modules && npm i --only=prod && git add node_modules --force",
|
||||
"postversion": "npm i",
|
||||
"version:2-cleandeps": "mv node_modules tmp_modules && npm i --only=prod && git add node_modules --force",
|
||||
"postversion": "rm -rf node_modules && mv tmp_modules node_modules",
|
||||
"clean": "rimraf dist && mkdirp dist",
|
||||
"build": "mkdir public && cp package.json public/test.json"
|
||||
},
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user