@autometa/runner 0.6.4 → 1.0.0-rc.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/package.json CHANGED
@@ -1,65 +1,60 @@
1
1
  {
2
2
  "name": "@autometa/runner",
3
- "version": "0.6.4",
3
+ "version": "1.0.0-rc.0",
4
4
  "description": "",
5
5
  "type": "module",
6
- "main": "dist/index.js",
7
- "module": "dist/esm/index.js",
6
+ "main": "dist/index.cjs",
7
+ "module": "dist/index.js",
8
8
  "types": "dist/index.d.ts",
9
+ "files": [
10
+ "dist"
11
+ ],
9
12
  "exports": {
10
- "import": "./dist/esm/index.js",
11
- "require": "./dist/index.js",
12
- "default": "./dist/esm/index.js",
13
+ "import": "./dist/index.js",
14
+ "require": "./dist/index.cjs",
15
+ "default": "./dist/index.js",
13
16
  "types": "./dist/index.d.ts"
14
17
  },
15
18
  "license": "MIT",
16
19
  "devDependencies": {
17
20
  "@types/node": "^18.11.18",
18
- "@types/uuid": "^9.0.5",
19
21
  "@typescript-eslint/eslint-plugin": "^5.54.1",
20
22
  "@typescript-eslint/parser": "^5.54.1",
21
- "@vitest/coverage-istanbul": "^1.4.0",
22
- "@vitest/coverage-v8": "^1.4.0",
23
23
  "eslint": "^8.37.0",
24
24
  "eslint-config-prettier": "^8.3.0",
25
- "istanbul": "^0.4.5",
26
25
  "rimraf": "^4.1.2",
27
26
  "tsup": "^7.2.0",
28
27
  "typescript": "^4.9.5",
29
28
  "vitest": "1.4.0",
29
+ "vite-tsconfig-paths": "^5.1.4",
30
+ "eslint-config-custom": "0.6.0",
30
31
  "tsconfig": "0.7.0",
31
- "eslint-config-custom": "0.6.0"
32
+ "tsup-config": "0.1.0"
32
33
  },
33
34
  "dependencies": {
34
35
  "@cucumber/cucumber-expressions": "^16.1.2",
35
- "colors-cli": "^1.0.32",
36
- "@autometa/asserters": "^0.1.8",
37
- "@autometa/app": "^0.4.2",
38
- "@autometa/bind-decorator": "^0.5.1",
39
- "@autometa/config": "^0.1.27",
40
- "@autometa/cucumber-expressions": "^0.4.4",
41
- "@autometa/datetime": "^0.1.16",
42
- "@autometa/coordinator": "^0.3.33",
43
- "@autometa/events": "^0.3.2",
44
- "@autometa/errors": "^0.2.2",
45
- "@autometa/file-proxies": "^0.2.0",
46
- "@autometa/http": "^1.4.20",
47
- "@autometa/gherkin": "^0.7.2",
48
- "@autometa/scopes": "^0.7.2",
49
- "@autometa/fixture-proxies": "^0.1.3",
50
- "@autometa/injection": "^0.1.5",
51
- "@autometa/jest-executor": "^0.6.4",
52
- "@autometa/phrases": "^0.1.12",
53
- "@autometa/test-builder": "^0.4.2",
54
- "@autometa/types": "^0.4.1"
36
+ "tslib": "^2.6.2",
37
+ "@autometa/executor": "1.0.0-rc.0",
38
+ "@autometa/assertions": "1.0.0-rc.0",
39
+ "@autometa/coordinator": "1.0.0-rc.0",
40
+ "@autometa/cucumber-expressions": "1.0.0-rc.0",
41
+ "@autometa/scopes": "1.0.0-rc.0",
42
+ "@autometa/injection": "1.0.0-rc.0"
55
43
  },
56
44
  "scripts": {
45
+ "type-check": "tsc --noEmit",
46
+ "type-check:watch": "tsc --noEmit --watch",
47
+ "build": "tsup && pnpm run build:types",
48
+ "build:types": "rimraf tsconfig.types.tsbuildinfo && tsc --build tsconfig.types.json",
49
+ "build:watch": "tsup --watch",
50
+ "dev": "tsup --watch",
57
51
  "test": "vitest run --passWithNoTests",
58
- "prettify": "prettier --config .prettierrc 'src/**/*.ts' --write",
52
+ "test:watch": "vitest --passWithNoTests",
53
+ "test:ui": "vitest --ui --passWithNoTests",
54
+ "coverage": "vitest run --coverage --passWithNoTests",
59
55
  "lint": "eslint . --max-warnings 0",
60
56
  "lint:fix": "eslint . --fix",
61
- "clean": "rimraf dist",
62
- "build": "tsup",
63
- "build:watch": "tsup --watch"
57
+ "prettify": "prettier --config .prettierrc 'src/**/*.ts' --write",
58
+ "clean": "rimraf dist"
64
59
  }
65
60
  }
package/.eslintignore DELETED
@@ -1,3 +0,0 @@
1
- /dist
2
- /out
3
- node_modules
package/.eslintrc.cjs DELETED
@@ -1,4 +0,0 @@
1
- module.exports = {
2
- root: true,
3
- extends: ["custom"],
4
- };
@@ -1,4 +0,0 @@
1
-
2
- > @autometa/runner@0.4.22 lint:fix /Users/ben.aherne/Documents/GitHub/autometa/packages/autometa
3
- > eslint . --fix "--max-warnings=0"
4
-
File without changes
@@ -1,12 +0,0 @@
1
-
2
- > @autometa/runner@0.5.11 test /Users/ben.aherne/Documents/GitHub/autometa/packages/autometa
3
- > vitest run --passWithNoTests
4
-
5
-
6
- RUN v1.4.0 /Users/ben.aherne/Documents/GitHub/autometa/packages/autometa
7
-
8
- include: **/*.{test,spec}.?(c|m)[jt]s?(x)
9
- exclude: **/node_modules/**, **/dist/**, **/cypress/**, **/.{idea,git,cache,output,temp}/**, **/{karma,rollup,webpack,vite,vitest,jest,ava,babel,nyc,cypress,tsup,build,eslint,prettier}.config.*
10
- watch exclude: **/node_modules/**, **/dist/**
11
- No test files found, exiting with code 0
12
-