@cloudops-tools/cli 0.1.2 → 0.1.3

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 (1) hide show
  1. package/package.json +10 -5
package/package.json CHANGED
@@ -1,6 +1,11 @@
1
1
  {
2
2
  "name": "@cloudops-tools/cli",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
+ "repository": {
5
+ "type": "git",
6
+ "url": "git+https://github.com/jfalava/cloudops-tools.git",
7
+ "directory": "cli"
8
+ },
4
9
  "bin": {
5
10
  "cloudops-tools": "./bin/cloudops-tools.js"
6
11
  },
@@ -12,7 +17,7 @@
12
17
  "scripts": {
13
18
  "build:all": "bun run check && bun run build:windows-x64 && bun run build:linux-x64 && bun run build:macOS-arm",
14
19
  "build:linux-x64": "bun build --compile --minify --sourcemap --bytecode --target=bun-linux-x64-modern --define BUILD_VERSION='\"'${BUILD_VERSION:-0.5}'\"' ./src/app.ts --outfile dist/cloudops-tools && cd dist && zip cloudops-tools-linux-x64.zip cloudops-tools",
15
- "build:macOS-arm": "bun build --compile --minify --sourcemap --bytecode --target=bun-darwin-arm64 --define BUILD_VERSION='\"'${BUILD_VERSION:-0.5}'\"' ./src/app.ts --outfile dist/cloudops-tools.app && cd dist && zip cloudops-tools-macos-arm.zip cloudops-tools.app",
20
+ "build:macOS-arm": "bun build --compile --minify --sourcemap --bytecode --target=bun-darwin-arm64 --define BUILD_VERSION='\"'${BUILD_VERSION:-0.5}'\"' ./src/app.ts --outfile dist/cloudops-tools && cd dist && zip cloudops-tools-macos-arm.zip cloudops-tools",
16
21
  "build:windows-x64": "bun build --compile --minify --sourcemap --bytecode --target=bun-windows-x64-modern --define BUILD_VERSION='\"'${BUILD_VERSION:-0.5}'\"' ./src/app.ts --outfile dist/cloudops-tools.exe && cd dist && zip cloudops-tools-windows-x64.zip cloudops-tools.exe",
17
22
  "check": "tsgo --noEmit && oxlint --fix --type-aware",
18
23
  "format": "oxfmt",
@@ -40,8 +45,8 @@
40
45
  "typescript": "catalog:build"
41
46
  },
42
47
  "optionalDependencies": {
43
- "@cloudops-tools/cli-darwin-arm64": "0.1.2",
44
- "@cloudops-tools/cli-linux-x64": "0.1.2",
45
- "@cloudops-tools/cli-win32-x64": "0.1.2"
48
+ "@cloudops-tools/cli-darwin-arm64": "0.1.3",
49
+ "@cloudops-tools/cli-linux-x64": "0.1.3",
50
+ "@cloudops-tools/cli-win32-x64": "0.1.3"
46
51
  }
47
52
  }