@intlayer/babel 5.7.2-canary.3 → 5.7.3
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/package.json +9 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intlayer/babel",
|
|
3
|
-
"version": "5.7.
|
|
3
|
+
"version": "5.7.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A Babel plugin for Intlayer that transforms declaration files and provides internationalization features during the build process according to the Intlayer configuration.",
|
|
6
6
|
"keywords": [
|
|
@@ -62,8 +62,8 @@
|
|
|
62
62
|
"@babel/generator": "^7.27.5",
|
|
63
63
|
"@babel/parser": "^7.27.5",
|
|
64
64
|
"@babel/traverse": "^7.27.4",
|
|
65
|
-
"@intlayer/
|
|
66
|
-
"@intlayer/
|
|
65
|
+
"@intlayer/chokidar": "5.7.3",
|
|
66
|
+
"@intlayer/config": "5.7.3"
|
|
67
67
|
},
|
|
68
68
|
"devDependencies": {
|
|
69
69
|
"@babel/types": "^7.27.6",
|
|
@@ -85,12 +85,12 @@
|
|
|
85
85
|
"vitest": "^3.2.2",
|
|
86
86
|
"@utils/ts-config": "1.0.4",
|
|
87
87
|
"@utils/eslint-config": "1.0.4",
|
|
88
|
-
"@utils/
|
|
89
|
-
"@utils/
|
|
88
|
+
"@utils/ts-config-types": "1.0.4",
|
|
89
|
+
"@utils/tsup-config": "1.0.4"
|
|
90
90
|
},
|
|
91
91
|
"peerDependencies": {
|
|
92
|
-
"@intlayer/
|
|
93
|
-
"@intlayer/
|
|
92
|
+
"@intlayer/chokidar": "5.7.3",
|
|
93
|
+
"@intlayer/config": "5.7.3"
|
|
94
94
|
},
|
|
95
95
|
"engines": {
|
|
96
96
|
"node": ">=14.18"
|
|
@@ -99,7 +99,8 @@
|
|
|
99
99
|
"url": "https://github.com/aymericzip/intlayer/issues"
|
|
100
100
|
},
|
|
101
101
|
"scripts": {
|
|
102
|
-
"build": "pnpm
|
|
102
|
+
"build": "pnpm clean & pnpm build:ci",
|
|
103
|
+
"build:ci": "pnpm build:package & pnpm build:types",
|
|
103
104
|
"build:package": "tsup",
|
|
104
105
|
"build:types": "tsc --project ./tsconfig.types.json && tsc-alias --project ./tsconfig.types.json",
|
|
105
106
|
"clean": "rimraf ./dist",
|
|
@@ -108,7 +109,6 @@
|
|
|
108
109
|
"lint:fix": "eslint . --cache --fix",
|
|
109
110
|
"prettier": "prettier . --check",
|
|
110
111
|
"prettier:fix": "prettier --write src/**/*",
|
|
111
|
-
"reset": "pnpm clean & pnpm build",
|
|
112
112
|
"test": "vitest run",
|
|
113
113
|
"test:watch": "vitest"
|
|
114
114
|
}
|