intlayer-cli 5.5.10 → 5.6.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.
- package/README.md +1 -1
- package/package.json +8 -6
package/README.md
CHANGED
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
<a href="https://www.facebook.com/intlayer" target="blank"><img align="center"
|
|
34
34
|
src="https://img.shields.io/badge/facebook-4267B2.svg?style=for-the-badge&logo=facebook&logoColor=white"
|
|
35
35
|
alt="Intlayer Facebook" height="30"/></a>
|
|
36
|
-
<a href="https://www.instagram.com/
|
|
36
|
+
<a href="https://www.instagram.com/intlayer/" target="blank"><img align="center"
|
|
37
37
|
src="https://img.shields.io/badge/instagram-%23E4405F.svg?style=for-the-badge&logo=Instagram&logoColor=white"
|
|
38
38
|
alt="Intlayer Instagram" height="30"/></a>
|
|
39
39
|
<a href="https://x.com/Intlayer183096" target="blank"><img align="center"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "intlayer-cli",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.6.0",
|
|
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.
|
|
63
|
+
"@intlayer/cli": "5.6.0"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
66
|
"@changesets/changelog-github": "0.5.1",
|
|
@@ -74,10 +74,11 @@
|
|
|
74
74
|
"tsc-alias": "^1.8.16",
|
|
75
75
|
"tsup": "^8.5.0",
|
|
76
76
|
"typescript": "^5.8.3",
|
|
77
|
-
"
|
|
78
|
-
"@utils/ts-config-types": "1.0.4",
|
|
77
|
+
"vitest": "^3.2.2",
|
|
79
78
|
"@utils/eslint-config": "1.0.4",
|
|
80
|
-
"@utils/tsup-config": "1.0.4"
|
|
79
|
+
"@utils/tsup-config": "1.0.4",
|
|
80
|
+
"@utils/ts-config": "1.0.4",
|
|
81
|
+
"@utils/ts-config-types": "1.0.4"
|
|
81
82
|
},
|
|
82
83
|
"engines": {
|
|
83
84
|
"node": ">=14.18"
|
|
@@ -97,7 +98,8 @@
|
|
|
97
98
|
"prettier:fix": "prettier . --write",
|
|
98
99
|
"reset": "pnpm clean & pnpm build",
|
|
99
100
|
"serve": "webpack serve --config ./webpack.config.ts",
|
|
100
|
-
"test": "",
|
|
101
|
+
"test": "vitest run",
|
|
102
|
+
"test:watch": "vitest",
|
|
101
103
|
"transpile": "webpack --config ./webpack.config.ts",
|
|
102
104
|
"typecheck": "tsup --project ./tsconfig.json --noEmit",
|
|
103
105
|
"watch": "webpack --config ./webpack.config.ts --watch"
|