intlayer-cli 5.7.2 → 5.7.4
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 +5 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "intlayer-cli",
|
|
3
|
-
"version": "5.7.
|
|
3
|
+
"version": "5.7.4",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Lightweight CLI tool for Intlayer, enabling content audits, dictionary management, and CMS sync. Ideal for JavaScript developers using React or Express.",
|
|
6
6
|
"keywords": [
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
],
|
|
61
61
|
"dependencies": {
|
|
62
62
|
"webpack": "^5.98.0",
|
|
63
|
-
"@intlayer/cli": "5.7.
|
|
63
|
+
"@intlayer/cli": "5.7.4"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
66
|
"@changesets/changelog-github": "0.5.1",
|
|
@@ -75,9 +75,9 @@
|
|
|
75
75
|
"tsup": "^8.5.0",
|
|
76
76
|
"typescript": "^5.8.3",
|
|
77
77
|
"vitest": "^3.2.2",
|
|
78
|
+
"@utils/eslint-config": "1.0.4",
|
|
78
79
|
"@utils/ts-config": "1.0.4",
|
|
79
80
|
"@utils/ts-config-types": "1.0.4",
|
|
80
|
-
"@utils/eslint-config": "1.0.4",
|
|
81
81
|
"@utils/tsup-config": "1.0.4"
|
|
82
82
|
},
|
|
83
83
|
"engines": {
|
|
@@ -87,7 +87,8 @@
|
|
|
87
87
|
"url": "https://github.com/aymericzip/intlayer/issues"
|
|
88
88
|
},
|
|
89
89
|
"scripts": {
|
|
90
|
-
"build": "pnpm
|
|
90
|
+
"build": "pnpm clean & pnpm build:ci",
|
|
91
|
+
"build:ci": "pnpm build:package & pnpm build:types",
|
|
91
92
|
"build:package": "tsup",
|
|
92
93
|
"build:types": "tsc --project ./tsconfig.types.json && tsc-alias --project ./tsconfig.types.json",
|
|
93
94
|
"clean": "rimraf ./dist",
|
|
@@ -96,7 +97,6 @@
|
|
|
96
97
|
"lint:fix": "eslint . --cache --fix",
|
|
97
98
|
"prettier": "prettier . --check",
|
|
98
99
|
"prettier:fix": "prettier . --write",
|
|
99
|
-
"reset": "pnpm clean & pnpm build",
|
|
100
100
|
"serve": "webpack serve --config ./webpack.config.ts",
|
|
101
101
|
"test": "vitest run",
|
|
102
102
|
"test:watch": "vitest",
|