-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[gha,release] handle versoning and production mode when releasing fro…
…m a tag
- Loading branch information
Showing
3 changed files
with
12 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -70,16 +70,14 @@ | |
"build:chrome:main": "BUILD_ENTRY=main vite build --mode=chrome", | ||
"build:chrome:options": "BUILD_ENTRY=options vite build --mode=chrome", | ||
"build:chrome:popup": "BUILD_ENTRY=popup vite build --mode=chrome", | ||
"build:chrome": "NODE_ENV=development pnpm run env:build chrome && NODE_ENV=development concurrently --kill-others-on-fail 'npm:build:chrome:*'", | ||
"build:chrome": "pnpm run env:build chrome && concurrently --kill-others-on-fail 'npm:build:chrome:*'", | ||
"build:firefox:about": "BUILD_ENTRY=about vite build --mode=firefox", | ||
"build:firefox:content": "BUILD_ENTRY=content vite build --mode=firefox", | ||
"build:firefox:json": "BUILD_ENTRY=json vite build --mode=firefox", | ||
"build:firefox:main": "BUILD_ENTRY=main vite build --mode=firefox", | ||
"build:firefox:options": "BUILD_ENTRY=options vite build --mode=firefox", | ||
"build:firefox:popup": "BUILD_ENTRY=popup vite build --mode=firefox", | ||
"build:firefox": "NODE_ENV=development pnpm run env:build firefox && NODE_ENV=development concurrently --kill-others-on-fail 'npm:build:firefox:*'", | ||
"release:chrome": "pnpm run build:chrome:env && NODE_ENV=production concurrently --kill-others-on-fail 'npm:build:chrome:*'", | ||
"release:firefox": "pnpm run build:firefox:env && NODE_ENV=production concurrently --kill-others-on-fail 'npm:build:firefox:*'" | ||
"build:firefox": "npm run env:build firefox && concurrently --kill-others-on-fail 'npm:build:firefox:*'" | ||
}, | ||
"type": "module", | ||
"packageManager": "[email protected]+sha1.9217c800d4ab947a7aee520242a7b70d64fc7638" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters