@decaf-ts/utils 0.3.9 → 0.3.11
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/bin/build-scripts.cjs +206 -19
- package/bin/tag-release.cjs +199 -16
- package/bin/tag-release.sh +1 -1
- package/bin/update-scripts.cjs +199 -16
- package/dist/utils.cjs +23 -7
- package/dist/utils.esm.cjs +23 -8
- package/lib/bin/build-scripts.cjs +0 -0
- package/lib/bin/tag-release.cjs +0 -0
- package/lib/bin/update-scripts.cjs +0 -0
- package/lib/cli/commands/build-scripts.cjs +13 -6
- package/lib/esm/cli/commands/build-scripts.js +13 -6
- package/lib/esm/index.d.ts +9 -1
- package/lib/esm/index.js +10 -2
- package/lib/index.cjs +11 -3
- package/lib/index.d.ts +9 -1
- package/package.json +6 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@decaf-ts/utils",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.11",
|
|
4
4
|
"description": "module management utils for decaf-ts",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -9,12 +9,12 @@
|
|
|
9
9
|
},
|
|
10
10
|
"types": "lib/index.d.ts",
|
|
11
11
|
"bin": {
|
|
12
|
-
"tag-release": "bin/tag-release.cjs",
|
|
13
|
-
"update-scripts": "bin/update-scripts.cjs",
|
|
14
|
-
"build-scripts": "bin/build-scripts.cjs"
|
|
12
|
+
"tag-release": "lib/bin/tag-release.cjs",
|
|
13
|
+
"update-scripts": "lib/bin/update-scripts.cjs",
|
|
14
|
+
"build-scripts": "lib/bin/build-scripts.cjs"
|
|
15
15
|
},
|
|
16
16
|
"scripts": {
|
|
17
|
-
"do-install": "
|
|
17
|
+
"do-install": "NPM_TOKEN=$(cat .npmtoken) npm install",
|
|
18
18
|
"update-dependencies": "PREFIX=\"decaf-ts\"; npm ls | grep \"$PREFIX\" | awk -F/ '{print $NF}' | sed 's/@.*//' | xargs -I package npm update @\"$PREFIX\"/package",
|
|
19
19
|
"update-scripts": "node ./bin/update-scripts.cjs",
|
|
20
20
|
"on-first-run": "node ./bin/update-scripts.cjs --boot",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"coverage": "rimraf ./workdocs/reports/data/*.json && npm run test:all -- --coverage --config=./workdocs/reports/jest.coverage.config.ts",
|
|
33
33
|
"lint": "eslint .",
|
|
34
34
|
"lint-fix": "eslint --fix .",
|
|
35
|
-
"prepare-pr": "npm run
|
|
35
|
+
"prepare-pr": "npm run lint-fix && npm run build:prod && npm run coverage && npm run docs",
|
|
36
36
|
"prepare-release": "npm run lint-fix && npm run build:prod && npm run coverage && npm run docs",
|
|
37
37
|
"release": "./bin/tag-release.sh",
|
|
38
38
|
"clean-publish": "npx clean-publish",
|