@intlayer/chokidar 8.6.10 → 8.7.0-canary.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.
|
@@ -108,6 +108,22 @@ const config = {
|
|
|
108
108
|
*/
|
|
109
109
|
saveComponents: false,
|
|
110
110
|
},
|
|
111
|
+
build: {
|
|
112
|
+
/**
|
|
113
|
+
* Minify the dictionaries to reduce the bundle size.
|
|
114
|
+
*/
|
|
115
|
+
minify: true;
|
|
116
|
+
|
|
117
|
+
/**
|
|
118
|
+
* Purge the unused keys in a dictionaries
|
|
119
|
+
*/
|
|
120
|
+
purge: true;
|
|
121
|
+
|
|
122
|
+
/**
|
|
123
|
+
* Indicates if the build should check TypeScript types
|
|
124
|
+
*/
|
|
125
|
+
checkTypes: false;
|
|
126
|
+
}
|
|
111
127
|
};
|
|
112
128
|
|
|
113
129
|
module.exports = config;
|
|
@@ -68,5 +68,21 @@
|
|
|
68
68
|
* If true, the compiler will rewrite the component file on disk.
|
|
69
69
|
*/
|
|
70
70
|
"saveComponents": false
|
|
71
|
+
},
|
|
72
|
+
"build": {
|
|
73
|
+
/**
|
|
74
|
+
* Minify the dictionaries to reduce the bundle size.
|
|
75
|
+
*/
|
|
76
|
+
"minify": true;
|
|
77
|
+
|
|
78
|
+
/**
|
|
79
|
+
* Purge the unused keys in a dictionaries
|
|
80
|
+
*/
|
|
81
|
+
"purge": true;
|
|
82
|
+
|
|
83
|
+
/**
|
|
84
|
+
* Indicates if the build should check TypeScript types
|
|
85
|
+
*/
|
|
86
|
+
"checkTypes": false;
|
|
71
87
|
}
|
|
72
88
|
}
|
|
@@ -108,6 +108,22 @@ const config = {
|
|
|
108
108
|
*/
|
|
109
109
|
saveComponents: false,
|
|
110
110
|
},
|
|
111
|
+
build: {
|
|
112
|
+
/**
|
|
113
|
+
* Minify the dictionaries to reduce the bundle size.
|
|
114
|
+
*/
|
|
115
|
+
minify: true;
|
|
116
|
+
|
|
117
|
+
/**
|
|
118
|
+
* Purge the unused keys in a dictionaries
|
|
119
|
+
*/
|
|
120
|
+
purge: true;
|
|
121
|
+
|
|
122
|
+
/**
|
|
123
|
+
* Indicates if the build should check TypeScript types
|
|
124
|
+
*/
|
|
125
|
+
checkTypes: false;
|
|
126
|
+
}
|
|
111
127
|
};
|
|
112
128
|
|
|
113
129
|
export default config;
|
|
@@ -107,6 +107,22 @@ const config: IntlayerConfig = {
|
|
|
107
107
|
*/
|
|
108
108
|
saveComponents: false,
|
|
109
109
|
},
|
|
110
|
+
build: {
|
|
111
|
+
/**
|
|
112
|
+
* Minify the dictionaries to reduce the bundle size.
|
|
113
|
+
*/
|
|
114
|
+
minify: true;
|
|
115
|
+
|
|
116
|
+
/**
|
|
117
|
+
* Purge the unused keys in a dictionaries
|
|
118
|
+
*/
|
|
119
|
+
purge: true;
|
|
120
|
+
|
|
121
|
+
/**
|
|
122
|
+
* Indicates if the build should check TypeScript types
|
|
123
|
+
*/
|
|
124
|
+
checkTypes: false;
|
|
125
|
+
}
|
|
110
126
|
};
|
|
111
127
|
|
|
112
128
|
export default config;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intlayer/chokidar",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.7.0-canary.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Uses chokidar to scan and build Intlayer declaration files into dictionaries based on Intlayer configuration.",
|
|
6
6
|
"keywords": [
|
|
@@ -109,15 +109,15 @@
|
|
|
109
109
|
"typecheck": "tsc --noEmit --project tsconfig.types.json"
|
|
110
110
|
},
|
|
111
111
|
"dependencies": {
|
|
112
|
-
"@intlayer/api": "8.
|
|
113
|
-
"@intlayer/config": "8.
|
|
114
|
-
"@intlayer/core": "8.
|
|
115
|
-
"@intlayer/dictionaries-entry": "8.
|
|
116
|
-
"@intlayer/remote-dictionaries-entry": "8.
|
|
117
|
-
"@intlayer/types": "8.
|
|
118
|
-
"@intlayer/unmerged-dictionaries-entry": "8.
|
|
112
|
+
"@intlayer/api": "8.7.0-canary.0",
|
|
113
|
+
"@intlayer/config": "8.7.0-canary.0",
|
|
114
|
+
"@intlayer/core": "8.7.0-canary.0",
|
|
115
|
+
"@intlayer/dictionaries-entry": "8.7.0-canary.0",
|
|
116
|
+
"@intlayer/remote-dictionaries-entry": "8.7.0-canary.0",
|
|
117
|
+
"@intlayer/types": "8.7.0-canary.0",
|
|
118
|
+
"@intlayer/unmerged-dictionaries-entry": "8.7.0-canary.0",
|
|
119
119
|
"chokidar": "3.6.0",
|
|
120
|
-
"defu": "6.1.
|
|
120
|
+
"defu": "6.1.7",
|
|
121
121
|
"fast-glob": "3.3.3",
|
|
122
122
|
"recast": "^0.23.11",
|
|
123
123
|
"simple-git": "3.33.0",
|
|
@@ -131,7 +131,7 @@
|
|
|
131
131
|
"rimraf": "6.1.3",
|
|
132
132
|
"tsdown": "0.21.7",
|
|
133
133
|
"typescript": "6.0.2",
|
|
134
|
-
"vitest": "4.1.
|
|
134
|
+
"vitest": "4.1.3",
|
|
135
135
|
"zod": "4.3.6"
|
|
136
136
|
},
|
|
137
137
|
"engines": {
|