@autometa/coordinator 0.3.13 → 0.3.15
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/.turbo/turbo-coverage.log +19 -0
- package/.turbo/turbo-lint$colon$fix.log +4 -0
- package/.turbo/turbo-prettify.log +0 -0
- package/.turbo/turbo-test.log +0 -0
- package/CHANGELOG.md +21 -0
- package/README.md +1 -1
- package/package.json +13 -13
- package/tsup.config.ts +1 -1
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
|
|
2
|
+
> @autometa/coordinator@0.1.1 coverage /Users/ben.aherne/Documents/GitHub/autometa/packages/coordinator
|
|
3
|
+
> vitest run --coverage --passWithNoTests
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
RUN v0.29.8 /Users/ben.aherne/Documents/GitHub/autometa/packages/coordinator
|
|
7
|
+
Coverage enabled with istanbul
|
|
8
|
+
|
|
9
|
+
% Coverage report from istanbul
|
|
10
|
+
----------|---------|----------|---------|---------|-------------------
|
|
11
|
+
File | % Stmts | % Branch | % Funcs | % Lines | Uncovered Line #s
|
|
12
|
+
----------|---------|----------|---------|---------|-------------------
|
|
13
|
+
All files | 0 | 0 | 0 | 0 |
|
|
14
|
+
----------|---------|----------|---------|---------|-------------------
|
|
15
|
+
No test files found, exiting with code 0
|
|
16
|
+
|
|
17
|
+
include: **/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}
|
|
18
|
+
exclude: **/node_modules/**, **/dist/**, **/cypress/**, **/.{idea,git,cache,output,temp}/**, **/{karma,rollup,webpack,vite,vitest,jest,ava,babel,nyc,cypress,tsup,build}.config.*
|
|
19
|
+
watch exclude: **/node_modules/**, **/dist/**
|
|
File without changes
|
|
File without changes
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @autometa/coordinator
|
|
2
2
|
|
|
3
|
+
## 0.3.15
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [51ad241]
|
|
8
|
+
- @autometa/gherkin@0.6.10
|
|
9
|
+
- @autometa/events@0.2.22
|
|
10
|
+
- @autometa/jest-executor@0.4.15
|
|
11
|
+
- @autometa/scopes@0.5.12
|
|
12
|
+
- @autometa/test-builder@0.2.13
|
|
13
|
+
|
|
14
|
+
## 0.3.14
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- @autometa/gherkin@0.6.9
|
|
19
|
+
- @autometa/scopes@0.5.11
|
|
20
|
+
- @autometa/test-builder@0.2.12
|
|
21
|
+
- @autometa/events@0.2.21
|
|
22
|
+
- @autometa/jest-executor@0.4.14
|
|
23
|
+
|
|
3
24
|
## 0.3.13
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@autometa/coordinator",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.15",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -18,29 +18,30 @@
|
|
|
18
18
|
"@types/uuid": "^9.0.5",
|
|
19
19
|
"@typescript-eslint/eslint-plugin": "^5.54.1",
|
|
20
20
|
"@typescript-eslint/parser": "^5.54.1",
|
|
21
|
-
"@vitest/coverage-istanbul": "^
|
|
21
|
+
"@vitest/coverage-istanbul": "^1.4.0",
|
|
22
|
+
"@vitest/coverage-v8": "^1.4.0",
|
|
22
23
|
"eslint": "^8.37.0",
|
|
23
|
-
"eslint-config-custom": "0.6.0",
|
|
24
24
|
"eslint-config-prettier": "^8.3.0",
|
|
25
25
|
"istanbul": "^0.4.5",
|
|
26
26
|
"rimraf": "^4.1.2",
|
|
27
|
-
"tsconfig": " *",
|
|
28
27
|
"tsup": "^7.2.0",
|
|
29
28
|
"typescript": "^4.9.5",
|
|
30
|
-
"vitest": "
|
|
29
|
+
"vitest": "1.4.0",
|
|
30
|
+
"tsconfig": "0.7.0",
|
|
31
|
+
"eslint-config-custom": "0.6.0"
|
|
31
32
|
},
|
|
32
33
|
"dependencies": {
|
|
34
|
+
"tsyringe": "^4.8.0",
|
|
33
35
|
"@autometa/app": "^0.3.4",
|
|
34
36
|
"@autometa/asserters": "^0.1.8",
|
|
37
|
+
"@autometa/events": "^0.2.22",
|
|
35
38
|
"@autometa/config": "^0.1.23",
|
|
36
39
|
"@autometa/errors": "^0.2.2",
|
|
37
|
-
"@autometa/
|
|
38
|
-
"@autometa/
|
|
39
|
-
"@autometa/jest-executor": "^0.4.13",
|
|
40
|
-
"@autometa/scopes": "^0.5.10",
|
|
41
|
-
"@autometa/test-builder": "^0.2.11",
|
|
40
|
+
"@autometa/gherkin": "^0.6.10",
|
|
41
|
+
"@autometa/scopes": "^0.5.12",
|
|
42
42
|
"@autometa/types": "^0.4.1",
|
|
43
|
-
"
|
|
43
|
+
"@autometa/jest-executor": "^0.4.15",
|
|
44
|
+
"@autometa/test-builder": "^0.2.13"
|
|
44
45
|
},
|
|
45
46
|
"scripts": {
|
|
46
47
|
"test": "vitest run --passWithNoTests",
|
|
@@ -51,6 +52,5 @@
|
|
|
51
52
|
"clean": "rimraf dist",
|
|
52
53
|
"build": "tsup",
|
|
53
54
|
"build:watch": "tsup --watch"
|
|
54
|
-
}
|
|
55
|
-
"readme": "# Introduction\n\nThere's nothing here yet"
|
|
55
|
+
}
|
|
56
56
|
}
|
package/tsup.config.ts
CHANGED
|
@@ -4,7 +4,7 @@ export default defineConfig({
|
|
|
4
4
|
clean: true, // clean up the dist folder
|
|
5
5
|
format: ["cjs", "esm"], // generate cjs and esm files
|
|
6
6
|
dts: true,
|
|
7
|
-
sourcemap:true, // generate sourcemaps
|
|
7
|
+
sourcemap: true, // generate sourcemaps
|
|
8
8
|
skipNodeModulesBundle: true,
|
|
9
9
|
entryPoints: ["src/index.ts"],
|
|
10
10
|
target: "es2020",
|