merge-tsconfigs 0.1.3 → 0.1.4
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/README.md +1 -1
- package/package.json +3 -6
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
[](https://github.com/yowainwright/merge-tsconfigs)
|
|
9
9
|

|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
_Merge-tsconfigs_ is a CLI and node tool for merging tsconfig files into the exact tsconfig file you want. 💪
|
|
12
12
|
|
|
13
13
|
---
|
|
14
14
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "merge-tsconfigs",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "Merge-tsconfigs is a CLI and node tool for merging tsconfig files into the exact tsconfig file you want 🛣️",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"lint": "eslint src --ext .ts",
|
|
29
29
|
"lint-fix": "pnpm run lint --fix",
|
|
30
30
|
"pre-commit": "lint-staged",
|
|
31
|
-
"prepare": "husky install",
|
|
31
|
+
"prepare": "husky install && pnpm env use --global 18",
|
|
32
32
|
"prepublishOnly": "pnpm run test && pnpm run build",
|
|
33
33
|
"release": "release-it",
|
|
34
34
|
"setup:config": "mkdir config && cd config npx tsc --init",
|
|
@@ -51,6 +51,7 @@
|
|
|
51
51
|
"eslint-config-prettier": "^8.6.0",
|
|
52
52
|
"husky": "^8.0.3",
|
|
53
53
|
"lint-staged": "^13.1.0",
|
|
54
|
+
"pnpm": "^7.28.0",
|
|
54
55
|
"prettier": "^2.8.3",
|
|
55
56
|
"release-it": "^15.6.0",
|
|
56
57
|
"rimraf": "^3.0.2",
|
|
@@ -109,10 +110,6 @@
|
|
|
109
110
|
"commitMessage": "chore: release v$npm_package_version"
|
|
110
111
|
}
|
|
111
112
|
},
|
|
112
|
-
"engines": {
|
|
113
|
-
"node": ">=18.0.0",
|
|
114
|
-
"pnpm": ">=7.0.0"
|
|
115
|
-
},
|
|
116
113
|
"keywords": [
|
|
117
114
|
"tsconfig",
|
|
118
115
|
"typescript",
|