Skip to content

Commit f2ea420

Browse files
authoredNov 1, 2023
feat: disable minification (#1004)
1 parent 8b508a3 commit f2ea420

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed
 

‎packages/angular/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"dist"
99
],
1010
"scripts": {
11-
"build": "tsup ./src/index.ts --target node12 --minify --clean --dts --splitting",
11+
"build": "tsup ./src/index.ts --target node12 --clean --dts",
1212
"dev": "tsup ./src/index.ts --target node12 --clean --watch src",
1313
"lint": "eslint src/**/*.ts"
1414
},

‎packages/axios/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"dist"
99
],
1010
"scripts": {
11-
"build": "tsup ./src/index.ts --target node12 --minify --clean --dts --splitting",
11+
"build": "tsup ./src/index.ts --target node12 --clean --dts",
1212
"dev": "tsup ./src/index.ts --target node12 --clean --watch src",
1313
"lint": "eslint src/**/*.ts"
1414
},

‎packages/core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"dist"
99
],
1010
"scripts": {
11-
"build": "tsup ./src/index.ts --minify --clean --dts --splitting",
11+
"build": "tsup ./src/index.ts --clean --dts",
1212
"dev": "tsup ./src/index.ts --clean --watch src",
1313
"lint": "eslint src/**/*.ts",
1414
"test": "vitest --global test.ts"

‎packages/msw/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"dist"
99
],
1010
"scripts": {
11-
"build": "tsup ./src/index.ts --target node12 --minify --clean --dts --splitting",
11+
"build": "tsup ./src/index.ts --target node12 --clean --dts",
1212
"dev": "tsup ./src/index.ts --target node12 --clean --watch src",
1313
"lint": "eslint src/**/*.ts"
1414
},

‎packages/orval/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"url": "https://github.com/anymaniax/orval"
4242
},
4343
"scripts": {
44-
"build": "tsup ./src/bin/orval.ts ./src/index.ts --target node12 --minify --clean --dts --splitting",
44+
"build": "tsup ./src/bin/orval.ts ./src/index.ts --target node12 --clean --dts",
4545
"dev": "tsup ./src/bin/orval.ts ./src/index.ts --target node12 --clean --watch ./src --onSuccess 'yarn generate-api'",
4646
"lint": "eslint src/**/*.ts",
4747
"generate-api": "node ./dist/bin/orval.js --config ../../samples/react-query/basic/orval.config.ts"

‎packages/query/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"dist"
99
],
1010
"scripts": {
11-
"build": "tsup ./src/index.ts --target node12 --minify --clean --dts --splitting",
11+
"build": "tsup ./src/index.ts --target node12 --clean --dts",
1212
"dev": "tsup ./src/index.ts --target node12 --clean --watch src",
1313
"lint": "eslint src/**/*.ts"
1414
},

‎packages/swr/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"dist"
99
],
1010
"scripts": {
11-
"build": "tsup ./src/index.ts --target node12 --minify --clean --dts --splitting",
11+
"build": "tsup ./src/index.ts --target node12 --clean --dts",
1212
"dev": "tsup ./src/index.ts --target node12 --clean --watch src",
1313
"lint": "eslint src/**/*.ts"
1414
},

‎packages/zod/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"dist"
99
],
1010
"scripts": {
11-
"build": "tsup ./src/index.ts --target node12 --minify --clean --dts --splitting",
11+
"build": "tsup ./src/index.ts --target node12 --clean --dts",
1212
"dev": "tsup ./src/index.ts --target node12 --clean --watch src",
1313
"lint": "eslint src/**/*.ts"
1414
},

0 commit comments

Comments
 (0)
Please sign in to comment.