Skip to content

Commit

Permalink
workflow changes
Browse files Browse the repository at this point in the history
  • Loading branch information
iLiftALot committed Nov 15, 2024
1 parent 5aec023 commit 3c17cf8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
"dev": "node esbuild.config.mjs && terser -o dist/dev/main.js dist/dev/main.js",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production && terser -o dist/build/main.js dist/build/main.js",
"bump-version": "node version-bump.mjs",
"upload:patch": "npm version patch -m \"Automated bump to %s\" && npm run bump-version && npm run build && git add . && git commit -m \"Update for version $(node -p \\\"require('./package.json').version\\\")\" && git push origin development --follow-tags",
"upload:minor": "npm version minor -m \"Automated bump to %s\" && npm run bump-version && npm run build && git add . && git commit -m \"Update for version $(node -p \\\"require('./package.json').version\\\")\" && git push origin development --follow-tags",
"upload:major": "npm version minor -m \"Automated bump to %s\" && npm run bump-version && npm run build && git add . && git commit -m \"Update for version $(node -p \\\"require('./package.json').version\\\")\" && git push origin development --follow-tags"
"upload:patch": "npm version patch -m \"Automated bump to %s\" && npm run bump-version && npm run build && git add . && VERSION=$(node -p \"require('./package.json').version\") && git commit -m \"Update for version $VERSION\" && git push origin development --follow-tags",
"upload:minor": "npm version patch -m \"Automated bump to %s\" && npm run bump-version && npm run build && git add . && VERSION=$(node -p \"require('./package.json').version\") && git commit -m \"Update for version $VERSION\" && git push origin development --follow-tags",
"upload:major": "npm version patch -m \"Automated bump to %s\" && npm run bump-version && npm run build && git add . && VERSION=$(node -p \"require('./package.json').version\") && git commit -m \"Update for version $VERSION\" && git push origin development --follow-tags"
},
"keywords": [
"obsidian",
Expand Down

0 comments on commit 3c17cf8

Please sign in to comment.