@takeshape/schema 9.107.4 → 9.107.8
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 +8 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@takeshape/schema",
|
|
3
|
-
"version": "9.107.
|
|
3
|
+
"version": "9.107.8",
|
|
4
4
|
"description": "TakeShape Schema",
|
|
5
5
|
"homepage": "https://www.takeshape.io",
|
|
6
6
|
"repository": {
|
|
@@ -28,9 +28,10 @@
|
|
|
28
28
|
"p-reduce": "^2.1.0",
|
|
29
29
|
"semver": "^7.3.2",
|
|
30
30
|
"tiny-invariant": "^1.2.0",
|
|
31
|
-
"@takeshape/
|
|
32
|
-
"@takeshape/errors": "9.107.
|
|
33
|
-
"@takeshape/
|
|
31
|
+
"@takeshape/infra": "9.107.8",
|
|
32
|
+
"@takeshape/errors": "9.107.8",
|
|
33
|
+
"@takeshape/json-schema": "9.107.8",
|
|
34
|
+
"@takeshape/util": "9.107.8"
|
|
34
35
|
},
|
|
35
36
|
"devDependencies": {
|
|
36
37
|
"@takeshape/json-schema-to-typescript": "^11.0.0",
|
|
@@ -46,7 +47,7 @@
|
|
|
46
47
|
"meow": "^9.0.0",
|
|
47
48
|
"p-map": "^5.0.0",
|
|
48
49
|
"shortid": "^2.2.15",
|
|
49
|
-
"@takeshape/typescript-jest-junit-reporter": "9.107.
|
|
50
|
+
"@takeshape/typescript-jest-junit-reporter": "9.107.8"
|
|
50
51
|
},
|
|
51
52
|
"engines": {
|
|
52
53
|
"node": ">=16"
|
|
@@ -63,10 +64,11 @@
|
|
|
63
64
|
"build:types:ci": "mkdir -p \"${GITHUB_WORKSPACE}/typecheck-results/${npm_package_name#*\\/}\" && tsc --emitDeclarationOnly --project tsconfig.build.json --pretty false | typescript-jest-junit-reporter | tee \"${GITHUB_WORKSPACE}/typecheck-results/${npm_package_name#*\\/}/typescript-results.xml\"",
|
|
64
65
|
"clean": "del-cli build dist es *.tsbuildinfo",
|
|
65
66
|
"clean:test": "del-cli .esdata-test && del-cli .dynamo-test",
|
|
67
|
+
"deploy": "node ./scripts/publish-json-schema.mjs",
|
|
68
|
+
"deploy:ci": "pnpm run deploy",
|
|
66
69
|
"json2ts": "node scripts/json-schema-to-typescript.mjs",
|
|
67
70
|
"lint": "eslint . --ext .js,.ts",
|
|
68
71
|
"lint:ci": "pnpm lint --quiet --format json -o \"${GITHUB_WORKSPACE}/test-results/${npm_package_name#*\\/}/eslint-results.json\"",
|
|
69
|
-
"publish-json-schema": "node ./scripts/publish-json-schema.mjs",
|
|
70
72
|
"test": "jest",
|
|
71
73
|
"test-changed": "pnpm run test --changedSince=master",
|
|
72
74
|
"test:ci": "JEST_JUNIT_OUTPUT_DIR=\"${GITHUB_WORKSPACE}/test-results/${npm_package_name#*\\/}\" JEST_JUNIT_OUTPUT_NAME=\"jest-results.xml\" jest --silent --ci --coverageDirectory=\"${GITHUB_WORKSPACE}/coverage/${npm_package_name#*\\/}\" --reporters=default --reporters=jest-junit --maxWorkers=4",
|