ts-builds 2.8.2 → 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/README.md +3 -3
- package/dist/cli.js +0 -0
- package/package.json +10 -17
package/README.md
CHANGED
|
@@ -17,7 +17,7 @@ pnpm init
|
|
|
17
17
|
pnpm add -D ts-builds tsdown
|
|
18
18
|
|
|
19
19
|
# Initialize
|
|
20
|
-
npx ts-builds init # Creates .
|
|
20
|
+
npx ts-builds init # Creates pnpm-workspace.yaml with hoist patterns
|
|
21
21
|
npx ts-builds config # Creates ts-builds.config.json
|
|
22
22
|
|
|
23
23
|
# Create source files
|
|
@@ -33,7 +33,7 @@ npx ts-builds validate
|
|
|
33
33
|
```bash
|
|
34
34
|
pnpm add -D ts-builds tsdown
|
|
35
35
|
|
|
36
|
-
npx ts-builds init # Creates .
|
|
36
|
+
npx ts-builds init # Creates pnpm-workspace.yaml
|
|
37
37
|
npx ts-builds config # Creates config file
|
|
38
38
|
npx ts-builds cleanup # Remove redundant dependencies
|
|
39
39
|
|
|
@@ -45,7 +45,7 @@ npx ts-builds validate
|
|
|
45
45
|
### Setup Commands
|
|
46
46
|
|
|
47
47
|
```bash
|
|
48
|
-
npx ts-builds init # Create .
|
|
48
|
+
npx ts-builds init # Create pnpm-workspace.yaml with hoist patterns
|
|
49
49
|
npx ts-builds config # Create ts-builds.config.json
|
|
50
50
|
npx ts-builds config --force # Overwrite existing config
|
|
51
51
|
npx ts-builds info # Show bundled packages
|
package/dist/cli.js
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ts-builds",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"description": "Shared TypeScript configuration files for library templates. Provides standardized ESLint, Prettier, Vitest, TypeScript, and build configs.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"typescript",
|
|
@@ -58,23 +58,23 @@
|
|
|
58
58
|
"@vitest/coverage-v8": "^4.1.8",
|
|
59
59
|
"@vitest/ui": "^4.1.8",
|
|
60
60
|
"eslint": "^10.4.1",
|
|
61
|
-
"eslint-config-functype": "^2.
|
|
61
|
+
"eslint-config-functype": "^2.103.0",
|
|
62
62
|
"eslint-config-prettier": "^10.1.8",
|
|
63
|
-
"eslint-plugin-functype": "^2.
|
|
63
|
+
"eslint-plugin-functype": "^2.103.0",
|
|
64
64
|
"eslint-plugin-prettier": "^5.5.6",
|
|
65
65
|
"eslint-plugin-simple-import-sort": "^13.0.0",
|
|
66
|
-
"functype": "^1.
|
|
67
|
-
"functype-os": "^1.
|
|
66
|
+
"functype": "^1.3.0",
|
|
67
|
+
"functype-os": "^1.3.0",
|
|
68
68
|
"globals": "^17.6.0",
|
|
69
69
|
"prettier": "^3.8.3",
|
|
70
70
|
"ts-node": "^10.9.2",
|
|
71
71
|
"typescript": "^6.0.3",
|
|
72
|
-
"typescript-eslint": "^8.60.
|
|
72
|
+
"typescript-eslint": "^8.60.1",
|
|
73
73
|
"vitest": "^4.1.8"
|
|
74
74
|
},
|
|
75
75
|
"devDependencies": {
|
|
76
76
|
"rimraf": "^6.1.3",
|
|
77
|
-
"tsdown": "^0.22.
|
|
77
|
+
"tsdown": "^0.22.2"
|
|
78
78
|
},
|
|
79
79
|
"peerDependencies": {
|
|
80
80
|
"tsdown": "^0.x",
|
|
@@ -103,15 +103,8 @@
|
|
|
103
103
|
"dev": "node dist/cli.js dev",
|
|
104
104
|
"prepublishOnly": "pnpm validate:bootstrap"
|
|
105
105
|
},
|
|
106
|
-
"
|
|
107
|
-
"
|
|
108
|
-
"allowedVersions": {
|
|
109
|
-
"eslint": "10"
|
|
110
|
-
}
|
|
111
|
-
},
|
|
112
|
-
"overrides": {
|
|
113
|
-
"unrun": "0.2.37"
|
|
114
|
-
}
|
|
106
|
+
"engines": {
|
|
107
|
+
"node": ">=22"
|
|
115
108
|
},
|
|
116
|
-
"packageManager": "pnpm@
|
|
109
|
+
"packageManager": "pnpm@11.5.2+sha512.71c631e382066efc25625d5cf029075de07b61b37f6e27350fbd84b1bda5864c8c1967adc280776b45c30a715c0359a3be08fef42d5bb09e2b99029979692916"
|
|
117
110
|
}
|