@takeshape/branches 9.13.0 → 9.14.1
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 +7 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@takeshape/branches",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.14.1",
|
|
4
4
|
"description": "Shared branch-related code.",
|
|
5
5
|
"homepage": "https://www.takeshape.io",
|
|
6
6
|
"repository": {
|
|
@@ -16,17 +16,22 @@
|
|
|
16
16
|
"dist",
|
|
17
17
|
"es"
|
|
18
18
|
],
|
|
19
|
+
"devDependencies": {
|
|
20
|
+
"@takeshape/typescript-jest-junit-reporter": "9.14.1"
|
|
21
|
+
},
|
|
19
22
|
"engines": {
|
|
20
23
|
"node": ">=16"
|
|
21
24
|
},
|
|
22
25
|
"scripts": {
|
|
23
26
|
"build": "pnpm build:types && pnpm build:js && pnpm build:es && pnpm build:copy",
|
|
27
|
+
"build:ci": "pnpm build:types:ci && pnpm build:js && pnpm build:es && pnpm build:copy",
|
|
24
28
|
"build:copy": "cp -rf build/src/* dist/",
|
|
25
29
|
"build:es": "cross-env BABEL_MODULES=es babel src --out-dir es --extensions \".js,.ts\" --ignore '**/__tests__'",
|
|
26
30
|
"build:js": "cross-env BABEL_MODULES=commonjs babel src --out-dir dist --extensions \".js,.ts\" --ignore '**/__tests__'",
|
|
27
31
|
"build:types": "tsc --emitDeclarationOnly --project tsconfig.json",
|
|
32
|
+
"build:types:ci": "mkdir -p \"${GITHUB_WORKSPACE}/typecheck-results/${npm_package_name#*\\/}\" && tsc --emitDeclarationOnly --project tsconfig.json --pretty false | typescript-jest-junit-reporter | tee \"${GITHUB_WORKSPACE}/typecheck-results/${npm_package_name#*\\/}/typescript-results.xml\"",
|
|
28
33
|
"lint": "eslint . --ext .js,.ts,.json",
|
|
29
|
-
"lint:
|
|
34
|
+
"lint:ci": "pnpm lint --quiet --format json -o \"${GITHUB_WORKSPACE}/test-results/${npm_package_name#*\\/}/eslint-results.json\"",
|
|
30
35
|
"todo": "leasot 'src/**/*.{js,jsx,ts,tsx}'"
|
|
31
36
|
}
|
|
32
37
|
}
|