Skip to content

Commit

Permalink
feat: disable minification (#1004)
Browse files Browse the repository at this point in the history
  • Loading branch information
GMierzwa authored Nov 1, 2023
1 parent 8b508a3 commit f2ea420
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion packages/angular/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"dist"
],
"scripts": {
"build": "tsup ./src/index.ts --target node12 --minify --clean --dts --splitting",
"build": "tsup ./src/index.ts --target node12 --clean --dts",
"dev": "tsup ./src/index.ts --target node12 --clean --watch src",
"lint": "eslint src/**/*.ts"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/axios/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"dist"
],
"scripts": {
"build": "tsup ./src/index.ts --target node12 --minify --clean --dts --splitting",
"build": "tsup ./src/index.ts --target node12 --clean --dts",
"dev": "tsup ./src/index.ts --target node12 --clean --watch src",
"lint": "eslint src/**/*.ts"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"dist"
],
"scripts": {
"build": "tsup ./src/index.ts --minify --clean --dts --splitting",
"build": "tsup ./src/index.ts --clean --dts",
"dev": "tsup ./src/index.ts --clean --watch src",
"lint": "eslint src/**/*.ts",
"test": "vitest --global test.ts"
Expand Down
2 changes: 1 addition & 1 deletion packages/msw/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"dist"
],
"scripts": {
"build": "tsup ./src/index.ts --target node12 --minify --clean --dts --splitting",
"build": "tsup ./src/index.ts --target node12 --clean --dts",
"dev": "tsup ./src/index.ts --target node12 --clean --watch src",
"lint": "eslint src/**/*.ts"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/orval/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"url": "https://github.com/anymaniax/orval"
},
"scripts": {
"build": "tsup ./src/bin/orval.ts ./src/index.ts --target node12 --minify --clean --dts --splitting",
"build": "tsup ./src/bin/orval.ts ./src/index.ts --target node12 --clean --dts",
"dev": "tsup ./src/bin/orval.ts ./src/index.ts --target node12 --clean --watch ./src --onSuccess 'yarn generate-api'",
"lint": "eslint src/**/*.ts",
"generate-api": "node ./dist/bin/orval.js --config ../../samples/react-query/basic/orval.config.ts"
Expand Down
2 changes: 1 addition & 1 deletion packages/query/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"dist"
],
"scripts": {
"build": "tsup ./src/index.ts --target node12 --minify --clean --dts --splitting",
"build": "tsup ./src/index.ts --target node12 --clean --dts",
"dev": "tsup ./src/index.ts --target node12 --clean --watch src",
"lint": "eslint src/**/*.ts"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/swr/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"dist"
],
"scripts": {
"build": "tsup ./src/index.ts --target node12 --minify --clean --dts --splitting",
"build": "tsup ./src/index.ts --target node12 --clean --dts",
"dev": "tsup ./src/index.ts --target node12 --clean --watch src",
"lint": "eslint src/**/*.ts"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/zod/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"dist"
],
"scripts": {
"build": "tsup ./src/index.ts --target node12 --minify --clean --dts --splitting",
"build": "tsup ./src/index.ts --target node12 --clean --dts",
"dev": "tsup ./src/index.ts --target node12 --clean --watch src",
"lint": "eslint src/**/*.ts"
},
Expand Down

0 comments on commit f2ea420

Please sign in to comment.