build-ts 8.2.2 → 8.3.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 (2) hide show
  1. package/babel.config.mjs +11 -1
  2. package/package.json +11 -9
package/babel.config.mjs CHANGED
@@ -16,7 +16,17 @@ const config = {
16
16
  plugins: [
17
17
  '@babel/proposal-class-properties',
18
18
  '@babel/proposal-numeric-separator',
19
- '@babel/plugin-syntax-import-assertions',
19
+ // cf. https://babeljs.io/blog/2023/05/26/7.22.0#explicit-resource-management-15633-15520
20
+ '@babel/plugin-proposal-explicit-resource-management',
21
+ // cf. https://babeljs.io/blog/2023/05/26/7.22.0#import-attributes-15536-15620
22
+ '@babel/plugin-syntax-import-attributes',
23
+ // cf. https://babeljs.io/blog/2023/05/26/7.22.0#decorators-updates-15570
24
+ [
25
+ '@babel/plugin-proposal-decorators',
26
+ {
27
+ version: '2023-05',
28
+ },
29
+ ],
20
30
  ],
21
31
  env: {
22
32
  production: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "build-ts",
3
- "version": "8.2.2",
3
+ "version": "8.3.0",
4
4
  "repository": "github:WillBooster/build-ts",
5
5
  "license": "UNLICENSED",
6
6
  "author": "WillBooster Inc.",
@@ -29,14 +29,16 @@
29
29
  "start": "node --no-warnings --loader ts-node/esm src/index.ts",
30
30
  "start-prod": "yarn build && yarn build-ts",
31
31
  "test": "vitest",
32
- "typecheck": "tsc --noEmit --Pretty"
32
+ "typecheck": "wb typecheck"
33
33
  },
34
34
  "prettier": "@willbooster/prettier-config",
35
35
  "dependencies": {
36
36
  "@babel/core": "7.22.10",
37
37
  "@babel/plugin-proposal-class-properties": "7.18.6",
38
+ "@babel/plugin-proposal-decorators": "7.22.10",
39
+ "@babel/plugin-proposal-explicit-resource-management": "7.22.6",
38
40
  "@babel/plugin-proposal-numeric-separator": "7.18.6",
39
- "@babel/plugin-syntax-import-assertions": "7.22.5",
41
+ "@babel/plugin-syntax-import-attributes": "7.22.5",
40
42
  "@babel/plugin-transform-runtime": "7.22.10",
41
43
  "@babel/preset-env": "7.22.10",
42
44
  "@babel/preset-react": "7.22.5",
@@ -75,12 +77,12 @@
75
77
  "@types/node": "20.5.1",
76
78
  "@types/signal-exit": "3.0.1",
77
79
  "@types/yargs": "17.0.24",
78
- "@typescript-eslint/eslint-plugin": "6.4.0",
79
- "@typescript-eslint/parser": "6.4.0",
80
+ "@typescript-eslint/eslint-plugin": "6.4.1",
81
+ "@typescript-eslint/parser": "6.4.1",
80
82
  "@willbooster/babel-configs": "1.3.0",
81
- "@willbooster/eslint-config-ts": "10.4.0",
83
+ "@willbooster/eslint-config-ts": "10.5.0",
82
84
  "@willbooster/prettier-config": "9.1.1",
83
- "@willbooster/wb": "4.8.3",
85
+ "@willbooster/wb": "4.8.5",
84
86
  "conventional-changelog-conventionalcommits": "6.1.0",
85
87
  "eslint": "8.47.0",
86
88
  "eslint-config-prettier": "9.0.0",
@@ -90,7 +92,7 @@
90
92
  "eslint-plugin-sort-destructure-keys": "1.5.0",
91
93
  "eslint-plugin-unicorn": "48.0.1",
92
94
  "husky": "8.0.3",
93
- "lint-staged": "14.0.0",
95
+ "lint-staged": "14.0.1",
94
96
  "micromatch": "4.0.5",
95
97
  "pinst": "3.0.0",
96
98
  "prettier": "3.0.2",
@@ -99,7 +101,7 @@
99
101
  "type-fest": "4.2.0",
100
102
  "vitest": "0.34.2"
101
103
  },
102
- "packageManager": "yarn@4.0.0-rc.49",
104
+ "packageManager": "yarn@4.0.0-rc.50",
103
105
  "engines": {
104
106
  "node": ">=18"
105
107
  }