@seeka-labs/cli-apps-azure 3.8.1 → 3.8.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +9 -9
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -12,7 +12,7 @@ npm install -g @seeka-labs/cli-apps-azure
12
12
  yarn global add @seeka-labs/cli-apps-azure
13
13
 
14
14
  # Or run directly with npx
15
- npx @seeka-labs/cli-apps-azure
15
+ npx @seeka-labs/cli-apps-azure@latest
16
16
  ```
17
17
 
18
18
  ## Prerequisites
@@ -27,7 +27,7 @@ Run the CLI from your Seeka app directory:
27
27
 
28
28
  ```bash
29
29
  cd your-seeka-app
30
- npx @seeka-labs/cli-apps-azure
30
+ npx @seeka-labs/cli-apps-azure@latest
31
31
  ```
32
32
 
33
33
  The CLI will automatically detect your app configuration from `.seeka/init.app.seeka.cli.config.json`.
@@ -55,7 +55,7 @@ Creates a new GitHub repository for your Seeka app with all the necessary config
55
55
  #### Example Flow
56
56
 
57
57
  ```
58
- $ npx @seeka-labs/cli-apps-azure
58
+ $ npx @seeka-labs/cli-apps-azure@latest
59
59
 
60
60
  🔐 Authenticating with GitHub...
61
61
 
@@ -105,7 +105,7 @@ Adds a new deployment environment (e.g., staging) to an existing GitHub reposito
105
105
  #### Example Flow
106
106
 
107
107
  ```
108
- $ npx @seeka-labs/cli-apps-azure
108
+ $ npx @seeka-labs/cli-apps-azure@latest
109
109
 
110
110
  ? What would you like to do? Add environment to existing GitHub repository
111
111
 
@@ -150,7 +150,7 @@ Updates all environment variables and secrets for an existing environment, with
150
150
  #### Example Flow
151
151
 
152
152
  ```
153
- $ npx @seeka-labs/cli-apps-azure
153
+ $ npx @seeka-labs/cli-apps-azure@latest
154
154
 
155
155
  ? What would you like to do? Update environment variables and secrets (overwrite existing)
156
156
 
@@ -196,7 +196,7 @@ This file is created when you initialize a Seeka app with `@seeka-labs/cli-apps`
196
196
  You can specify a custom configuration file:
197
197
 
198
198
  ```bash
199
- npx @seeka-labs/cli-apps-azure --configFile ./path/to/config.json
199
+ npx @seeka-labs/cli-apps-azure@latest --configFile ./path/to/config.json
200
200
  ```
201
201
 
202
202
  #### Configuration File Format
@@ -255,13 +255,13 @@ The authenticated user needs:
255
255
 
256
256
  1. **Create your Seeka app**:
257
257
  ```bash
258
- npx @seeka-labs/cli-apps init my-org my-app --template azure-function
258
+ npx @seeka-labs/cli-apps@latest init my-org my-app --template azure-function
259
259
  ```
260
260
 
261
261
  2. **Initialize GitHub repository**:
262
262
  ```bash
263
263
  cd seeka-app-my-app
264
- npx @seeka-labs/cli-apps-azure
264
+ npx @seeka-labs/cli-apps-azure@latest
265
265
  # Select "Initialize GitHub repository"
266
266
  ```
267
267
 
@@ -276,7 +276,7 @@ The authenticated user needs:
276
276
 
277
277
  4. **Add staging environment** (optional):
278
278
  ```bash
279
- npx @seeka-labs/cli-apps-azure
279
+ npx @seeka-labs/cli-apps-azure@latest
280
280
  # Select "Add environment to existing GitHub repository"
281
281
  ```
282
282
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seeka-labs/cli-apps-azure",
3
- "version": "3.8.1",
3
+ "version": "3.8.2",
4
4
  "description": "Seeka - Apps CLI - Azure",
5
5
  "author": "SEEKA <platform@seeka.co>",
6
6
  "license": "MIT",
@@ -31,7 +31,7 @@
31
31
  "devDependencies": {
32
32
  "@jest/globals": "^30",
33
33
  "@octokit/rest": "^22.0.1",
34
- "@seeka-labs/cli-apps": "^3.8.1",
34
+ "@seeka-labs/cli-apps": "^3.8.2",
35
35
  "@types/jest": "^30",
36
36
  "@types/libsodium-wrappers": "^0.7",
37
37
  "@types/lodash-es": "^4",
@@ -48,5 +48,5 @@
48
48
  "ts-jest": "^29",
49
49
  "typescript": "^5"
50
50
  },
51
- "gitHead": "d73cbf556675ad874197d84d149ba15c8d5cc80d"
51
+ "gitHead": "af02a0413272e165016fcaab2e3b35579abaec9b"
52
52
  }