@sprucelabs/test 7.7.72 → 7.7.76

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.
Files changed (1) hide show
  1. package/package.json +25 -6
package/package.json CHANGED
@@ -3,7 +3,18 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "7.7.72",
6
+ "version": "7.7.76",
7
+ "skill": {
8
+ "namespace": "spruce-test",
9
+ "upgradeIgnoreList": [
10
+ "@sprucelabs/resolve-path-aliases",
11
+ "@sprucelabs/spruce-test-fixtures",
12
+ "@types/node",
13
+ "chokidar-cli",
14
+ "concurrently",
15
+ "ts-node"
16
+ ]
17
+ },
7
18
  "files": [
8
19
  "build"
9
20
  ],
@@ -24,25 +35,32 @@
24
35
  },
25
36
  "scripts": {
26
37
  "build.ci": "yarn build.tsc",
38
+ "build.copy-files": "true",
27
39
  "build.dev": "yarn build.tsc --sourceMap",
28
40
  "build.dist": "yarn build.tsc && tsc --project tsconfig.dist.json && yarn build.esm-postbuild",
29
41
  "build.esm-postbuild": "esm-postbuild --target build/esm --patterns '**/*.js'",
42
+ "build.resolve-paths": "true",
30
43
  "build.tsc": "tsc",
31
44
  "clean": "yarn clean.build",
32
45
  "clean.all": "yarn clean.dependencies && yarn clean.build",
33
46
  "clean.build": "rm -rf build/",
34
47
  "clean.dependencies": "rm -rf node_modules/ package-lock.json yarn.lock",
35
- "fix.lint": "eslint --fix '**/*.ts'",
36
- "lint": "eslint --cache '**/*.ts' && tsc -p . --noEmit",
48
+ "fix.lint": "eslint --fix --cache '**/*.ts'",
49
+ "lint": "eslint --cache '**/*.ts'",
50
+ "lint.tsc": "tsc -p . --noEmit",
37
51
  "local": "node --inspect=5200 ./build/index.js",
52
+ "post.watch.build": "true",
38
53
  "rebuild": "yarn clean.all && yarn && yarn build.dev",
39
54
  "release": "semantic-release",
55
+ "resolve-paths.lint": "yarn build.resolve-paths ; yarn lint",
40
56
  "test": "jest",
41
57
  "update.dependencies": "yarn clean.dependencies && yarn",
42
58
  "upgrade.packages": "yarn-upgrade-all && rm -f yarn.lock ; yarn ; yarn fix.lint ; true",
43
59
  "upgrade.packages.all": "yarn install && yarn upgrade.packages",
44
60
  "upgrade.packages.test": "yarn upgrade.packages.all && yarn lint && yarn build.dev && yarn test",
45
- "watch.build.dev": "yarn build.tsc -w --sourceMap",
61
+ "watch.build.dev": "tsc-watch --sourceMap --onCompilationComplete 'yarn post.watch.build'",
62
+ "watch.lint": "true",
63
+ "watch.rebuild": "yarn clean.all && yarn && yarn watch.build.dev",
46
64
  "watch.tests": "jest --watch",
47
65
  "watch.tsc": "tsc -w"
48
66
  },
@@ -57,14 +75,15 @@
57
75
  "variable-diff": "^2.0.2"
58
76
  },
59
77
  "devDependencies": {
60
- "@sprucelabs/esm-postbuild": "^1.0.35",
78
+ "@sprucelabs/esm-postbuild": "^1.0.134",
61
79
  "@sprucelabs/semantic-release": "^4.0.7",
62
80
  "@types/deep-equal": "^1.0.1",
63
81
  "@types/jest": "^27.0.2",
64
82
  "@types/lodash": "^4.14.175",
65
83
  "eslint": "^7.32.0",
66
- "eslint-config-spruce": "^10.10.10",
84
+ "eslint-config-spruce": "^10.10.12",
67
85
  "prettier": "^2.4.1",
86
+ "tsc-watch": "^4.5.0",
68
87
  "tsconfig-paths": "^3.11.0",
69
88
  "yarn-upgrade-all": "^0.5.4"
70
89
  },