@4mbl/tsconfig 3.0.0 → 3.0.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 +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@4mbl/tsconfig",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"description": "TypeScript configuration templates for various environments.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "4mbl",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"delete:latest": "node ./scripts/deleteLatestJson.js",
|
|
20
20
|
"delete:version": "node ./scripts/deleteVersionFile.js",
|
|
21
21
|
"get:version": "node -pe \"require('./package.json')['version']\" > version.txt",
|
|
22
|
-
"release": "npm run get:version && npm run build && npm publish && npm run delete:latest && git add . && git commit --file version.txt && git push && npm run delete:version",
|
|
22
|
+
"release": "npm run get:version && npm install && npm run build && npm publish && npm run delete:latest && git add . && git commit --file version.txt && git push && npm run delete:version",
|
|
23
23
|
"release:patch": "npm version patch --no-git-tag-version && npm run release",
|
|
24
24
|
"release:minor": "npm version minor --no-git-tag-version && npm run release",
|
|
25
25
|
"release:major": "npm version major --no-git-tag-version && npm run release"
|