@lerna-lite/core 1.14.0 → 1.14.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.
|
@@ -294,7 +294,7 @@ export interface WatchCommandOption {
|
|
|
294
294
|
* This provide enough time for the system to collect all Chokidar events (1x per file changes)
|
|
295
295
|
* and merge them into a single Lerna watch change event to be emitted (Lerna will join all file paths into a CSV string separated by whitespace by default).
|
|
296
296
|
*/
|
|
297
|
-
|
|
297
|
+
emitChangesDelay?: number;
|
|
298
298
|
/** Defaults to whitespace, the delimiter that will be used to separate files when mutiple file changes are emitted by the watch */
|
|
299
299
|
fileDelimiter?: string;
|
|
300
300
|
/** Glob pattern to define which file pattern to watch, note that this will be appended to the package file path being watched. */
|
|
@@ -328,7 +328,7 @@ export interface WatchCommandOption {
|
|
|
328
328
|
ignored?: string;
|
|
329
329
|
/** Defaults to true, if set to false then add/addDir events are also emitted for matching paths while instantiating the watching as chokidar discovers these file paths (before the ready event). */
|
|
330
330
|
ignoreInitial?: boolean;
|
|
331
|
-
/** Defaults to
|
|
331
|
+
/** Defaults to true, indicates whether to watch files that don't have read permissions if possible. */
|
|
332
332
|
ignorePermissionErrors?: boolean;
|
|
333
333
|
/** Defaults to 100, interval of file system polling, in milliseconds. You may also set the CHOKIDAR_INTERVAL env variable to override this option. */
|
|
334
334
|
interval?: number;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lerna-lite/core",
|
|
3
3
|
"description": "Lerna-Lite core implementation module",
|
|
4
|
-
"version": "1.14.
|
|
4
|
+
"version": "1.14.1",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"typings": "dist/index.d.ts",
|
|
@@ -74,5 +74,5 @@
|
|
|
74
74
|
"type": "ko_fi",
|
|
75
75
|
"url": "https://ko-fi.com/ghiscoding"
|
|
76
76
|
},
|
|
77
|
-
"gitHead": "
|
|
77
|
+
"gitHead": "7278b5666832949b3ad84c7bdfcd3d801d5237ca"
|
|
78
78
|
}
|