Skip to content

Commit 2ae7952

Browse files
committed
feat: add push commands for resource management
- Introduced new CLI commands for pushing resources to the platform, including `push:dev`, `push:prod`, `push:dev:force`, and `push:prod:force`. - These commands enhance the existing workflow by allowing users to push updates more flexibly, including options for forced pushes.
1 parent b0ffa31 commit 2ae7952

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77
"scripts": {
88
"apply:dev": "tsx src/apply.ts dev",
99
"apply:prod": "tsx src/apply.ts prod",
10+
"push:dev": "tsx src/push.ts dev",
11+
"push:prod": "tsx src/push.ts prod",
12+
"push:dev:force": "tsx src/push.ts dev --force",
13+
"push:prod:force": "tsx src/push.ts prod --force",
1014
"pull:dev": "tsx src/pull.ts dev",
1115
"pull:prod": "tsx src/pull.ts prod",
1216
"call:dev": "tsx src/call.ts dev",

0 commit comments

Comments
 (0)