@auto-engineer/cli 0.8.2 → 0.8.4
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/CHANGELOG.md +17 -0
- package/LICENSE +10 -0
- package/package.json +19 -20
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @auto-engineer/cli
|
|
2
2
|
|
|
3
|
+
## 0.8.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- bump version up
|
|
8
|
+
- @auto-engineer/message-bus@0.8.4
|
|
9
|
+
|
|
10
|
+
## 0.8.3
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- 3aff24e: bump version up
|
|
15
|
+
- version bump
|
|
16
|
+
- Updated dependencies [3aff24e]
|
|
17
|
+
- Updated dependencies
|
|
18
|
+
- @auto-engineer/message-bus@0.8.3
|
|
19
|
+
|
|
3
20
|
## 0.8.2
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
package/LICENSE
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
Elastic License 2.0
|
|
2
|
+
|
|
3
|
+
Copyright 2024 Sam Hatoum
|
|
4
|
+
|
|
5
|
+
This software and associated documentation files (the "Software") are licensed under the Elastic License 2.0 (the "License"). You may not use this file except in compliance with the License.
|
|
6
|
+
|
|
7
|
+
You may obtain a copy of the License at:
|
|
8
|
+
https://www.elastic.co/licensing/elastic-license
|
|
9
|
+
|
|
10
|
+
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
|
package/package.json
CHANGED
|
@@ -31,27 +31,10 @@
|
|
|
31
31
|
"engines": {
|
|
32
32
|
"node": ">=18.0.0"
|
|
33
33
|
},
|
|
34
|
-
"scripts": {
|
|
35
|
-
"build": "tsc && tsx ../../scripts/fix-esm-imports.ts && chmod +x dist/bin/auto.js && cp -r src/server/*.html src/server/*.svg dist/src/server/ 2>/dev/null || true",
|
|
36
|
-
"build:tsx": "echo 'Using tsx runtime, no build needed'",
|
|
37
|
-
"dev": "node scripts/watch.js",
|
|
38
|
-
"test": "vitest run --reporter=dot",
|
|
39
|
-
"test:watch": "vitest",
|
|
40
|
-
"lint": "eslint 'src/**/*.ts' --ignore-pattern '**/*.specs.ts' --max-warnings 0 --config ../../eslint.config.ts",
|
|
41
|
-
"type-check": "tsc --noEmit",
|
|
42
|
-
"flow": "tsx src/index.ts flow",
|
|
43
|
-
"prepublishOnly": "npm run build",
|
|
44
|
-
"format": "prettier --write \"**/*.{js,ts,json,md,yml,yaml}\" --ignore-path ../../.prettierignore --log-level warn",
|
|
45
|
-
"lint:fix": "eslint 'src/**/*.ts' --fix --config ../../eslint.config.ts",
|
|
46
|
-
"format:fix": "prettier --write \"**/*.{js,ts,json,md,yml,yaml}\" --ignore-path ../../.prettierignore --log-level warn",
|
|
47
|
-
"link:dev": "pnpm build && pnpm link --global",
|
|
48
|
-
"unlink:dev": "pnpm unlink --global"
|
|
49
|
-
},
|
|
50
34
|
"publishConfig": {
|
|
51
35
|
"access": "public"
|
|
52
36
|
},
|
|
53
37
|
"dependencies": {
|
|
54
|
-
"@auto-engineer/message-bus": "workspace:*",
|
|
55
38
|
"chalk": "^5.3.0",
|
|
56
39
|
"chokidar": "^3.6.0",
|
|
57
40
|
"commander": "^12.0.0",
|
|
@@ -70,7 +53,8 @@
|
|
|
70
53
|
"ora": "^8.0.1",
|
|
71
54
|
"socket.io": "^4.7.5",
|
|
72
55
|
"test": "^3.3.0",
|
|
73
|
-
"yaml": "^2.6.1"
|
|
56
|
+
"yaml": "^2.6.1",
|
|
57
|
+
"@auto-engineer/message-bus": "0.8.4"
|
|
74
58
|
},
|
|
75
59
|
"devDependencies": {
|
|
76
60
|
"@types/cors": "^2.8.0",
|
|
@@ -83,5 +67,20 @@
|
|
|
83
67
|
"get-port": "^7.1.0",
|
|
84
68
|
"tsx": "^4.20.3"
|
|
85
69
|
},
|
|
86
|
-
"version": "0.8.
|
|
87
|
-
|
|
70
|
+
"version": "0.8.4",
|
|
71
|
+
"scripts": {
|
|
72
|
+
"build": "tsc && tsx ../../scripts/fix-esm-imports.ts && chmod +x dist/bin/auto.js && cp -r src/server/*.html src/server/*.svg dist/src/server/ 2>/dev/null || true",
|
|
73
|
+
"build:tsx": "echo 'Using tsx runtime, no build needed'",
|
|
74
|
+
"dev": "node scripts/watch.js",
|
|
75
|
+
"test": "vitest run --reporter=dot",
|
|
76
|
+
"test:watch": "vitest",
|
|
77
|
+
"lint": "eslint 'src/**/*.ts' --ignore-pattern '**/*.specs.ts' --max-warnings 0 --config ../../eslint.config.ts",
|
|
78
|
+
"type-check": "tsc --noEmit",
|
|
79
|
+
"flow": "tsx src/index.ts flow",
|
|
80
|
+
"format": "prettier --write \"**/*.{js,ts,json,md,yml,yaml}\" --ignore-path ../../.prettierignore --log-level warn",
|
|
81
|
+
"lint:fix": "eslint 'src/**/*.ts' --fix --config ../../eslint.config.ts",
|
|
82
|
+
"format:fix": "prettier --write \"**/*.{js,ts,json,md,yml,yaml}\" --ignore-path ../../.prettierignore --log-level warn",
|
|
83
|
+
"link:dev": "pnpm build && pnpm link --global",
|
|
84
|
+
"unlink:dev": "pnpm unlink --global"
|
|
85
|
+
}
|
|
86
|
+
}
|