ts-builds 2.8.2 → 3.0.0

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.
Files changed (3) hide show
  1. package/README.md +3 -3
  2. package/dist/cli.js +0 -0
  3. package/package.json +4 -11
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 .npmrc with hoist patterns
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 .npmrc
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 .npmrc with hoist patterns
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": "2.8.2",
3
+ "version": "3.0.0",
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",
@@ -103,15 +103,8 @@
103
103
  "dev": "node dist/cli.js dev",
104
104
  "prepublishOnly": "pnpm validate:bootstrap"
105
105
  },
106
- "pnpm": {
107
- "peerDependencyRules": {
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@10.34.1+sha512.b58fbde6dca66a929538021581f648b4570b6ca19b18e7cbd7f2c07a7b24454155388dacdf08f2af3678e88a6d1fe04f9d609df24bf51735a060ea041b374ab7"
109
+ "packageManager": "pnpm@11.5.0+sha512.dbfcc4f81cf48597afd4bc391ffdf12c11f1a9fb83a395bfa6b0a2d9cc2fd8ffebafdb1ccbd529632153f793904c2615b7f09fe1a345473fd1c35845172a8eb1"
117
110
  }