@workflow-code/cli 0.1.2 → 0.1.4-20260814002

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@workflow-code/cli",
3
- "version": "0.1.2",
3
+ "version": "0.1.4-20260814002",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "workflow-code": "./dist/index.js"
@@ -13,25 +13,36 @@
13
13
  "publishConfig": {
14
14
  "access": "public"
15
15
  },
16
- "scripts": {
17
- "build": "tsup --config tsup.config.ts",
18
- "typecheck": "tsc --noEmit",
19
- "test": "cd ../.. && vitest run --config vitest.config.ts --project cli",
20
- "prepack": "pnpm build"
21
- },
22
16
  "dependencies": {
23
17
  "dotenv": "^17.4.2",
24
18
  "tsx": "^4.21.0"
25
19
  },
26
20
  "peerDependencies": {
27
- "workflow-code": ">=0.1.0 <0.2.0"
21
+ "workflow-code": "0.1.4-20260814003"
28
22
  },
29
23
  "devDependencies": {
30
24
  "@types/node": "^25.6.0",
31
- "@workflow-code/auth-config": "workspace:*",
32
- "@workflow-code/workflow-ids": "workspace:*",
25
+ "@vitest/coverage-v8": "^4.1.7",
26
+ "semver": "^7.7.4",
33
27
  "tsup": "^8.5.1",
34
28
  "typescript": "^6.0.3",
35
- "workflow-code": "workspace:*"
29
+ "vitest": "^4.1.7",
30
+ "workflow-code": "0.1.4-20260814003",
31
+ "@workflow-code/auth-config": "0.1.0",
32
+ "@workflow-code/i18n": "0.1.0",
33
+ "@workflow-code/project-upload": "0.1.0",
34
+ "@workflow-code/workflow-ids": "0.1.0"
35
+ },
36
+ "scripts": {
37
+ "bootstrap": "node scripts/bootstrap.mjs",
38
+ "pnpm:devPreinstall": "node scripts/install-guard.mjs",
39
+ "check:boundaries": "node scripts/check-repository-boundaries.mjs",
40
+ "dev": "node scripts/dev.mjs",
41
+ "build": "tsup --config tsup.config.ts",
42
+ "typecheck": "tsc --noEmit",
43
+ "test": "pnpm build && vitest run",
44
+ "coverage": "pnpm build && vitest run --coverage",
45
+ "test:scripts": "node --test scripts/__tests__/*.test.mjs",
46
+ "release:prepare": "node scripts/prepare-release.mjs"
36
47
  }
37
- }
48
+ }
@@ -1,31 +0,0 @@
1
- #!/usr/bin/env node
2
- var __create = Object.create;
3
- var __defProp = Object.defineProperty;
4
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
- var __getOwnPropNames = Object.getOwnPropertyNames;
6
- var __getProtoOf = Object.getPrototypeOf;
7
- var __hasOwnProp = Object.prototype.hasOwnProperty;
8
- var __commonJS = (cb, mod) => function __require() {
9
- return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
10
- };
11
- var __copyProps = (to, from, except, desc) => {
12
- if (from && typeof from === "object" || typeof from === "function") {
13
- for (let key of __getOwnPropNames(from))
14
- if (!__hasOwnProp.call(to, key) && key !== except)
15
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
16
- }
17
- return to;
18
- };
19
- var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
20
- // If the importer is in node compatibility mode or this is not an ESM
21
- // file that has been converted to a CommonJS file using a Babel-
22
- // compatible transform (i.e. "__esModule" has not been set), then set
23
- // "default" to the CommonJS "module.exports" for node compatibility.
24
- isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
25
- mod
26
- ));
27
-
28
- export {
29
- __commonJS,
30
- __toESM
31
- };