@autometa/runner 0.1.4 → 0.1.6

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.
@@ -0,0 +1,12 @@
1
+
2
+ > @autometa/runner@0.1.3 test /Users/ben.aherne/Documents/GitHub/autometa/packages/autometa
3
+ > vitest run --passWithNoTests
4
+
5
+
6
+ RUN v0.29.8 /Users/ben.aherne/Documents/GitHub/autometa/packages/autometa
7
+
8
+ No test files found, exiting with code 0
9
+
10
+ include: **/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}
11
+ exclude: **/node_modules/**, **/dist/**, **/cypress/**, **/.{idea,git,cache,output,temp}/**, **/{karma,rollup,webpack,vite,vitest,jest,ava,babel,nyc,cypress,tsup,build}.config.*
12
+ watch exclude: **/node_modules/**, **/dist/**
package/CHANGELOG.md CHANGED
@@ -1,5 +1,32 @@
1
1
  # @autometa/runner
2
2
 
3
+ ## 0.1.6
4
+
5
+ ### Patch Changes
6
+
7
+ - c7e2e26d: fix: group logger skipped if not other event listeners defined
8
+
9
+ ## 0.1.5
10
+
11
+ ### Patch Changes
12
+
13
+ - e8f02f3a: Small bug fixes, unit test coverage, tag expressions
14
+ - e8f02f3a: fix: fixture decorator missing from runner exports
15
+ - Updated dependencies [e8f02f3a]
16
+ - @autometa/gherkin@0.4.1
17
+ - @autometa/phrases@0.1.2
18
+ - @autometa/errors@0.1.1
19
+ - @autometa/scopes@0.2.2
20
+ - @autometa/app@0.1.2
21
+ - @autometa/coordinator@0.1.2
22
+ - @autometa/events@0.1.1
23
+ - @autometa/jest-executor@0.1.2
24
+ - @autometa/test-builder@0.1.2
25
+ - @autometa/datetime@0.1.3
26
+ - @autometa/asserters@0.1.1
27
+ - @autometa/config@0.1.2
28
+ - @autometa/cucumber-expressions@0.1.3
29
+
3
30
  ## 0.1.4
4
31
 
5
32
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@autometa/runner",
3
- "version": "0.1.4",
3
+ "version": "0.1.6",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -18,33 +18,35 @@
18
18
  "@types/uuid": "^9.0.1",
19
19
  "@typescript-eslint/eslint-plugin": "^5.54.1",
20
20
  "@typescript-eslint/parser": "^5.54.1",
21
+ "@vitest/coverage-istanbul": "^0.31.0",
21
22
  "eslint": "^8.37.0",
22
- "eslint-config-custom": "0.6.0",
23
23
  "eslint-config-prettier": "^8.3.0",
24
+ "istanbul": "^0.4.5",
24
25
  "rimraf": "^4.1.2",
25
- "tsconfig": " *",
26
26
  "tsup": "^7.2.0",
27
27
  "typescript": "^4.9.5",
28
- "vitest": "^0.29.8"
28
+ "vitest": "^0.29.8",
29
+ "eslint-config-custom": "0.6.0",
30
+ "tsconfig": "0.7.0"
29
31
  },
30
32
  "dependencies": {
31
- "@autometa/app": "^0.1.1",
32
- "@autometa/asserters": "^0.1.0",
33
- "@autometa/bind-decorator": "^0.5.0",
34
- "@autometa/config": "^0.1.1",
35
- "@autometa/coordinator": "^0.1.1",
36
- "@autometa/cucumber-expressions": "^0.1.2",
37
- "@autometa/datetime": "^0.1.2",
38
- "@autometa/errors": "^0.1.0",
39
- "@autometa/events": "^0.1.0",
40
- "@autometa/gherkin": "^0.4.0",
41
- "@autometa/jest-executor": "^0.1.1",
42
- "@autometa/phrases": "^0.1.1",
43
- "@autometa/scopes": "^0.2.1",
44
- "@autometa/test-builder": "^0.1.1",
45
- "@autometa/types": "^0.4.0",
46
33
  "@cucumber/cucumber-expressions": "^16.1.2",
47
- "colors-cli": "^1.0.32"
34
+ "colors-cli": "^1.0.32",
35
+ "@autometa/asserters": "^0.1.1",
36
+ "@autometa/app": "^0.1.2",
37
+ "@autometa/cucumber-expressions": "^0.1.3",
38
+ "@autometa/config": "^0.1.2",
39
+ "@autometa/errors": "^0.1.1",
40
+ "@autometa/datetime": "^0.1.3",
41
+ "@autometa/events": "^0.1.1",
42
+ "@autometa/gherkin": "^0.4.1",
43
+ "@autometa/phrases": "^0.1.2",
44
+ "@autometa/scopes": "^0.2.2",
45
+ "@autometa/types": "^0.4.0",
46
+ "@autometa/test-builder": "^0.1.2",
47
+ "@autometa/coordinator": "^0.1.2",
48
+ "@autometa/bind-decorator": "^0.5.0",
49
+ "@autometa/jest-executor": "^0.1.2"
48
50
  },
49
51
  "scripts": {
50
52
  "test": "vitest run --passWithNoTests",
@@ -54,6 +56,5 @@
54
56
  "clean": "rimraf dist",
55
57
  "build": "tsup",
56
58
  "build:watch": "tsup --watch"
57
- },
58
- "readme": "# Introduction\n\nThere's nothing here yet"
59
+ }
59
60
  }