Skip to content

Commit

Permalink
fix: upgrade build-ts
Browse files Browse the repository at this point in the history
  • Loading branch information
exKAZUu committed Sep 15, 2023
1 parent 2f13f70 commit e856089
Show file tree
Hide file tree
Showing 6 changed files with 929 additions and 510 deletions.
14 changes: 7 additions & 7 deletions packages/shared-lib-blitz-next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
"exports": {
".": {
"require": "./dist/cjs/index.cjs",
"import": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts"
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./src": {
"require": "./src/index.ts",
Expand All @@ -18,8 +18,8 @@
}
},
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"bin/",
"dist/"
Expand All @@ -42,8 +42,8 @@
"@typescript-eslint/parser": "6.7.0",
"@willbooster/eslint-config-ts": "10.5.0",
"@willbooster/prettier-config": "9.1.1",
"blitz": "2.0.0-beta.32",
"build-ts": "8.4.3",
"blitz": "2.0.0-beta.33",
"build-ts": "9.1.4",
"eslint": "8.49.0",
"eslint-config-prettier": "9.0.0",
"eslint-import-resolver-typescript": "3.6.0",
Expand All @@ -56,7 +56,7 @@
"prettier": "3.0.3",
"sort-package-json": "2.5.1",
"typescript": "5.2.2",
"vitest": "0.34.3"
"vitest": "0.34.4"
},
"publishConfig": {
"access": "public"
Expand Down
12 changes: 6 additions & 6 deletions packages/shared-lib-node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
"exports": {
".": {
"require": "./dist/cjs/index.cjs",
"import": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts"
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./src": {
"require": "./src/index.ts",
Expand All @@ -18,8 +18,8 @@
}
},
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"bin/",
"dist/"
Expand Down Expand Up @@ -47,7 +47,7 @@
"@typescript-eslint/parser": "6.7.0",
"@willbooster/eslint-config-ts": "10.5.0",
"@willbooster/prettier-config": "9.1.1",
"build-ts": "8.4.3",
"build-ts": "9.1.4",
"eslint": "8.49.0",
"eslint-config-prettier": "9.0.0",
"eslint-import-resolver-typescript": "3.6.0",
Expand All @@ -60,7 +60,7 @@
"prettier": "3.0.3",
"sort-package-json": "2.5.1",
"typescript": "5.2.2",
"vitest": "0.34.3"
"vitest": "0.34.4"
},
"publishConfig": {
"access": "public"
Expand Down
30 changes: 15 additions & 15 deletions packages/shared-lib-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
"type": "module",
"exports": {
".": {
"require": "./dist/cjs/index.cjs",
"import": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts"
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"bin/",
"dist/"
Expand All @@ -33,16 +33,16 @@
},
"prettier": "@willbooster/prettier-config",
"devDependencies": {
"@babel/core": "7.22.11",
"@babel/core": "7.22.19",
"@mdx-js/react": "2.3.0",
"@storybook/addon-actions": "7.4.0",
"@storybook/addon-docs": "7.4.0",
"@storybook/addon-essentials": "7.4.0",
"@storybook/addon-interactions": "7.4.0",
"@storybook/addon-links": "7.4.0",
"@storybook/addon-actions": "7.4.1",
"@storybook/addon-docs": "7.4.1",
"@storybook/addon-essentials": "7.4.1",
"@storybook/addon-interactions": "7.4.1",
"@storybook/addon-links": "7.4.1",
"@storybook/builder-webpack4": "6.5.16",
"@storybook/manager-webpack4": "6.5.16",
"@storybook/react": "7.4.0",
"@storybook/react": "7.4.1",
"@storybook/testing-library": "0.2.0",
"@types/eslint": "8.44.2",
"@types/micromatch": "4.0.2",
Expand All @@ -53,7 +53,7 @@
"@willbooster/eslint-config-ts-react": "10.1.7",
"@willbooster/prettier-config": "9.1.1",
"babel-loader": "9.1.3",
"build-ts": "8.4.3",
"build-ts": "9.1.4",
"eslint": "8.49.0",
"eslint-config-prettier": "9.0.0",
"eslint-import-resolver-typescript": "3.6.0",
Expand All @@ -71,7 +71,7 @@
"react-dom": "18.2.0",
"sort-package-json": "2.5.1",
"typescript": "5.2.2",
"vitest": "0.34.3"
"vitest": "0.34.4"
},
"peerDependencies": {
"react": "~18.2.0",
Expand Down
12 changes: 6 additions & 6 deletions packages/shared-lib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
"exports": {
".": {
"require": "./dist/cjs/index.cjs",
"import": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts"
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./src": {
"require": "./src/index.ts",
Expand All @@ -18,8 +18,8 @@
}
},
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"bin/",
"dist/"
Expand All @@ -42,7 +42,7 @@
"@typescript-eslint/parser": "6.7.0",
"@willbooster/eslint-config-ts": "10.5.0",
"@willbooster/prettier-config": "9.1.1",
"build-ts": "8.4.3",
"build-ts": "9.1.4",
"eslint": "8.49.0",
"eslint-config-prettier": "9.0.0",
"eslint-import-resolver-typescript": "3.6.0",
Expand All @@ -55,7 +55,7 @@
"prettier": "3.0.3",
"sort-package-json": "2.5.1",
"typescript": "5.2.2",
"vitest": "0.34.3"
"vitest": "0.34.4"
},
"publishConfig": {
"access": "public"
Expand Down
8 changes: 4 additions & 4 deletions packages/wb/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,20 +26,20 @@
"chalk": "5.3.0",
"dotenv": "16.3.1",
"kill-port": "2.0.1",
"minimal-promise-pool": "3.0.3",
"minimal-promise-pool": "4.0.0",
"tree-kill": "1.2.2"
},
"devDependencies": {
"@types/eslint": "8.44.2",
"@types/kill-port": "2.0.0",
"@types/kill-port": "2.0.1",
"@types/micromatch": "4.0.2",
"@types/node": "18.17.12",
"@types/yargs": "17.0.24",
"@typescript-eslint/eslint-plugin": "6.7.0",
"@typescript-eslint/parser": "6.7.0",
"@willbooster/eslint-config-ts": "10.5.0",
"@willbooster/prettier-config": "9.1.1",
"build-ts": "8.4.3",
"build-ts": "9.1.4",
"eslint": "8.49.0",
"eslint-config-prettier": "9.0.0",
"eslint-import-resolver-typescript": "3.6.0",
Expand All @@ -53,7 +53,7 @@
"sort-package-json": "2.5.1",
"type-fest": "4.3.1",
"typescript": "5.2.2",
"vitest": "0.34.3",
"vitest": "0.34.4",
"yargs": "17.7.2"
},
"engines": {
Expand Down
Loading

0 comments on commit e856089

Please sign in to comment.