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