**chore: rename npm script for publishing and update version to 0.9.0**
### Changes: - Renamed the `publish` script to `deploy` in `package.json` for clarity and consistency with deployment terminology. - Incremented version number from `0.8.11` to `0.9.0` in `src/utils/version.ts`. ### Purpose: Aligned the naming of the deployment script with standard practices to improve readability and maintainability. Updated the version to `0.9.0` to reflect recent changes and enhancements in the project.
This commit is contained in:
parent
8273bb3301
commit
5a67d48bbc
2 changed files with 2 additions and 2 deletions
|
|
@ -37,7 +37,7 @@
|
|||
"version:patch": "npm version patch",
|
||||
"version:minor": "npm version minor",
|
||||
"version:major": "npm version major",
|
||||
"publish": "npm run build && npm publish",
|
||||
"deploy": "npm run build && npm publish",
|
||||
"deploy:cloud:aws": "cd cloud-wrapper && npm run build && npm run deploy:aws",
|
||||
"deploy:cloud:gcp": "cd cloud-wrapper && npm run build && npm run deploy:gcp",
|
||||
"deploy:cloud:cloudflare": "cd cloud-wrapper && npm run build && npm run deploy:cloudflare",
|
||||
|
|
|
|||
|
|
@ -3,4 +3,4 @@
|
|||
* Do not modify this file directly.
|
||||
*/
|
||||
|
||||
export const VERSION = '0.8.11';
|
||||
export const VERSION = '0.9.0';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue