@turboops/cli 1.0.0-dev.683 → 1.0.0-dev.695

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 +3 -3
  2. package/package.json +15 -15
package/README.md CHANGED
@@ -6,10 +6,10 @@ Command line interface for TurboOps.
6
6
 
7
7
  ```bash
8
8
  # Global installation
9
- npm install -g @turboops/cli
9
+ pnpm add -g @turboops/cli
10
10
 
11
- # Or use with npx
12
- npx @turboops/cli
11
+ # Or use with pnpm dlx
12
+ pnpm dlx @turboops/cli
13
13
  ```
14
14
 
15
15
  ## Usage
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@turboops/cli",
3
- "version": "1.0.0-dev.683",
3
+ "version": "1.0.0-dev.695",
4
4
  "description": "TurboCLI - Command line interface for TurboOps deployments",
5
5
  "author": "lenne.tech GmbH",
6
6
  "license": "MIT",
@@ -12,19 +12,6 @@
12
12
  "files": [
13
13
  "dist"
14
14
  ],
15
- "scripts": {
16
- "build": "tsup src/index.ts --format esm --dts --clean",
17
- "build:local": "tsup src/index.ts --format esm --dts --clean --define.__TURBOOPS_ENV__=\"'local'\"",
18
- "build:dev": "tsup src/index.ts --format esm --dts --clean --define.__TURBOOPS_ENV__=\"'dev'\"",
19
- "build:prod": "tsup src/index.ts --format esm --dts --clean --define.__TURBOOPS_ENV__=\"'prod'\"",
20
- "dev": "tsup src/index.ts --format esm --watch --define.__TURBOOPS_ENV__=\"'local'\"",
21
- "start": "node dist/index.js",
22
- "lint": "oxlint --fix -c oxlint.json",
23
- "typecheck": "tsc --noEmit",
24
- "test": "vitest run",
25
- "test:watch": "vitest",
26
- "test:coverage": "vitest run --coverage"
27
- },
28
15
  "dependencies": {
29
16
  "chalk": "^5.3.0",
30
17
  "commander": "^12.1.0",
@@ -56,5 +43,18 @@
56
43
  "type": "git",
57
44
  "url": "https://github.com/lenne-tech/turboops.git",
58
45
  "directory": "projects/cli"
46
+ },
47
+ "scripts": {
48
+ "build": "tsup src/index.ts --format esm --dts --clean",
49
+ "build:local": "tsup src/index.ts --format esm --dts --clean --define.__TURBOOPS_ENV__=\"'local'\"",
50
+ "build:dev": "tsup src/index.ts --format esm --dts --clean --define.__TURBOOPS_ENV__=\"'dev'\"",
51
+ "build:prod": "tsup src/index.ts --format esm --dts --clean --define.__TURBOOPS_ENV__=\"'prod'\"",
52
+ "dev": "tsup src/index.ts --format esm --watch --define.__TURBOOPS_ENV__=\"'local'\"",
53
+ "start": "node dist/index.js",
54
+ "lint": "oxlint --fix -c oxlint.json",
55
+ "typecheck": "tsc --noEmit",
56
+ "test": "vitest run",
57
+ "test:watch": "vitest",
58
+ "test:coverage": "vitest run --coverage"
59
59
  }
60
- }
60
+ }