@auto-engineer/cli 1.2.0 → 2.0.0
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 +16 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @auto-engineer/cli
|
|
2
2
|
|
|
3
|
+
## 2.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [`c3a1f4f`](https://github.com/BeOnAuto/auto-engineer/commit/c3a1f4f51bdda9cd97f839c0f9a3d2664518388a) Thanks [@github-actions[bot]](https://github.com/github-actions%5Bbot%5D)! - - **global**: version packages
|
|
8
|
+
- **cli**: rename suspend hooks to generic shutdown hooks (#42)
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- [`6770053`](https://github.com/BeOnAuto/auto-engineer/commit/67700538ddd17656eb0de17b1a16d5f7e4ca14f6) Thanks [@rami-hatoum](https://github.com/rami-hatoum)! - - Fixed incorrect argument order in test code generation for it/describe blocks
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [[`c3a1f4f`](https://github.com/BeOnAuto/auto-engineer/commit/c3a1f4f51bdda9cd97f839c0f9a3d2664518388a), [`6770053`](https://github.com/BeOnAuto/auto-engineer/commit/67700538ddd17656eb0de17b1a16d5f7e4ca14f6)]:
|
|
15
|
+
- @auto-engineer/file-store@2.0.0
|
|
16
|
+
- @auto-engineer/narrative@2.0.0
|
|
17
|
+
- @auto-engineer/pipeline@2.0.0
|
|
18
|
+
|
|
3
19
|
## 1.2.0
|
|
4
20
|
|
|
5
21
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -40,15 +40,15 @@
|
|
|
40
40
|
"node-fetch": "^3.3.2",
|
|
41
41
|
"ora": "^8.0.1",
|
|
42
42
|
"socket.io": "^4.7.5",
|
|
43
|
-
"@auto-engineer/
|
|
44
|
-
"@auto-engineer/
|
|
45
|
-
"@auto-engineer/
|
|
43
|
+
"@auto-engineer/file-store": "2.0.0",
|
|
44
|
+
"@auto-engineer/pipeline": "2.0.0",
|
|
45
|
+
"@auto-engineer/narrative": "2.0.0"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@types/node": "^22.0.0",
|
|
49
49
|
"socket.io-client": "^4.8.3"
|
|
50
50
|
},
|
|
51
|
-
"version": "
|
|
51
|
+
"version": "2.0.0",
|
|
52
52
|
"scripts": {
|
|
53
53
|
"build": "tsc && tsx ../../scripts/fix-esm-imports.ts && chmod +x dist/bin/auto.js",
|
|
54
54
|
"test": "vitest run --reporter=dot",
|