@teambit/watcher 1.0.543 → 1.0.545
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.
@@ -1,7 +1,6 @@
|
|
1
1
|
import { CLIMain } from '@teambit/cli';
|
2
2
|
import { WatchOptions as ChokidarWatchOptions } from 'chokidar';
|
3
3
|
import { SlotRegistry } from '@teambit/harmony';
|
4
|
-
import { GlobalConfigMain } from '@teambit/global-config';
|
5
4
|
import { ScopeMain } from '@teambit/scope';
|
6
5
|
import { ComponentID } from '@teambit/component-id';
|
7
6
|
import { IpcEventsMain } from '@teambit/ipc-events';
|
@@ -9,6 +8,7 @@ import { Logger, LoggerMain } from '@teambit/logger';
|
|
9
8
|
import { PubsubMain } from '@teambit/pubsub';
|
10
9
|
import { Workspace } from '@teambit/workspace';
|
11
10
|
import { WatchOptions } from './watcher';
|
11
|
+
import { ConfigStoreMain } from '@teambit/config-store';
|
12
12
|
export type OnPreWatch = (componentIds: ComponentID[], watchOpts: WatchOptions) => Promise<void>;
|
13
13
|
export type OnPreWatchSlot = SlotRegistry<OnPreWatch>;
|
14
14
|
export declare class WatcherMain {
|
@@ -18,8 +18,8 @@ export declare class WatcherMain {
|
|
18
18
|
private onPreWatchSlot;
|
19
19
|
readonly ipcEvents: IpcEventsMain;
|
20
20
|
readonly logger: Logger;
|
21
|
-
readonly
|
22
|
-
constructor(workspace: Workspace, scope: ScopeMain, pubsub: PubsubMain, onPreWatchSlot: OnPreWatchSlot, ipcEvents: IpcEventsMain, logger: Logger,
|
21
|
+
readonly configStore: ConfigStoreMain;
|
22
|
+
constructor(workspace: Workspace, scope: ScopeMain, pubsub: PubsubMain, onPreWatchSlot: OnPreWatchSlot, ipcEvents: IpcEventsMain, logger: Logger, configStore: ConfigStoreMain);
|
23
23
|
watch(opts: WatchOptions): Promise<void>;
|
24
24
|
getChokidarWatchOptions(): Promise<ChokidarWatchOptions>;
|
25
25
|
watchScopeInternalFiles(): Promise<void>;
|
@@ -28,14 +28,14 @@ export declare class WatcherMain {
|
|
28
28
|
static slots: ((registerFn: () => string) => SlotRegistry<OnPreWatch>)[];
|
29
29
|
static dependencies: import("@teambit/harmony").Aspect[];
|
30
30
|
static runtime: import("@teambit/harmony").RuntimeDefinition;
|
31
|
-
static provider([cli, workspace, scope, pubsub, loggerMain, ipcEvents,
|
31
|
+
static provider([cli, workspace, scope, pubsub, loggerMain, ipcEvents, configStore]: [
|
32
32
|
CLIMain,
|
33
33
|
Workspace,
|
34
34
|
ScopeMain,
|
35
35
|
PubsubMain,
|
36
36
|
LoggerMain,
|
37
37
|
IpcEventsMain,
|
38
|
-
|
38
|
+
ConfigStoreMain
|
39
39
|
], _: any, [onPreWatchSlot]: [OnPreWatchSlot]): Promise<WatcherMain>;
|
40
40
|
}
|
41
41
|
export default WatcherMain;
|
@@ -18,13 +18,6 @@ function _harmony() {
|
|
18
18
|
};
|
19
19
|
return data;
|
20
20
|
}
|
21
|
-
function _globalConfig() {
|
22
|
-
const data = require("@teambit/global-config");
|
23
|
-
_globalConfig = function () {
|
24
|
-
return data;
|
25
|
-
};
|
26
|
-
return data;
|
27
|
-
}
|
28
21
|
function _scope() {
|
29
22
|
const data = require("@teambit/scope");
|
30
23
|
_scope = function () {
|
@@ -95,19 +88,26 @@ function _watcher2() {
|
|
95
88
|
};
|
96
89
|
return data;
|
97
90
|
}
|
91
|
+
function _configStore() {
|
92
|
+
const data = require("@teambit/config-store");
|
93
|
+
_configStore = function () {
|
94
|
+
return data;
|
95
|
+
};
|
96
|
+
return data;
|
97
|
+
}
|
98
98
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
99
99
|
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
100
100
|
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
|
101
101
|
function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
102
102
|
class WatcherMain {
|
103
|
-
constructor(workspace, scope, pubsub, onPreWatchSlot, ipcEvents, logger,
|
103
|
+
constructor(workspace, scope, pubsub, onPreWatchSlot, ipcEvents, logger, configStore) {
|
104
104
|
this.workspace = workspace;
|
105
105
|
this.scope = scope;
|
106
106
|
this.pubsub = pubsub;
|
107
107
|
this.onPreWatchSlot = onPreWatchSlot;
|
108
108
|
this.ipcEvents = ipcEvents;
|
109
109
|
this.logger = logger;
|
110
|
-
this.
|
110
|
+
this.configStore = configStore;
|
111
111
|
}
|
112
112
|
async watch(opts) {
|
113
113
|
if (!this.workspace) throw new (_workspace().OutsideWorkspaceError)();
|
@@ -115,7 +115,7 @@ class WatcherMain {
|
|
115
115
|
await watcher.watch();
|
116
116
|
}
|
117
117
|
async getChokidarWatchOptions() {
|
118
|
-
const usePollingConf =
|
118
|
+
const usePollingConf = this.configStore.getConfig(_legacy().CFG_WATCH_USE_POLLING);
|
119
119
|
const usePolling = usePollingConf === 'true';
|
120
120
|
return {
|
121
121
|
ignoreInitial: true,
|
@@ -137,9 +137,9 @@ class WatcherMain {
|
|
137
137
|
this.onPreWatchSlot.register(onPreWatchFunc);
|
138
138
|
return this;
|
139
139
|
}
|
140
|
-
static async provider([cli, workspace, scope, pubsub, loggerMain, ipcEvents,
|
140
|
+
static async provider([cli, workspace, scope, pubsub, loggerMain, ipcEvents, configStore], _, [onPreWatchSlot]) {
|
141
141
|
const logger = loggerMain.createLogger(_watcher2().WatcherAspect.id);
|
142
|
-
const watcherMain = new WatcherMain(workspace, scope, pubsub, onPreWatchSlot, ipcEvents, logger,
|
142
|
+
const watcherMain = new WatcherMain(workspace, scope, pubsub, onPreWatchSlot, ipcEvents, logger, configStore);
|
143
143
|
const watchCmd = new (_watch().WatchCommand)(pubsub, logger, watcherMain);
|
144
144
|
cli.register(watchCmd);
|
145
145
|
return watcherMain;
|
@@ -147,7 +147,7 @@ class WatcherMain {
|
|
147
147
|
}
|
148
148
|
exports.WatcherMain = WatcherMain;
|
149
149
|
_defineProperty(WatcherMain, "slots", [_harmony().Slot.withType()]);
|
150
|
-
_defineProperty(WatcherMain, "dependencies", [_cli().CLIAspect, _workspace().WorkspaceAspect, _scope().ScopeAspect, _pubsub().PubsubAspect, _logger().LoggerAspect, _ipcEvents().IpcEventsAspect,
|
150
|
+
_defineProperty(WatcherMain, "dependencies", [_cli().CLIAspect, _workspace().WorkspaceAspect, _scope().ScopeAspect, _pubsub().PubsubAspect, _logger().LoggerAspect, _ipcEvents().IpcEventsAspect, _configStore().ConfigStoreAspect]);
|
151
151
|
_defineProperty(WatcherMain, "runtime", _cli().MainRuntime);
|
152
152
|
_watcher2().WatcherAspect.addRuntime(WatcherMain);
|
153
153
|
var _default = exports.default = WatcherMain;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"names":["_cli","data","require","_harmony","
|
1
|
+
{"version":3,"names":["_cli","data","require","_harmony","_scope","_ipcEvents","_logger","_pubsub","_legacy","_workspace","_pMapSeries","_interopRequireDefault","_watch","_watcher","_watcher2","_configStore","e","__esModule","default","_defineProperty","r","t","_toPropertyKey","Object","defineProperty","value","enumerable","configurable","writable","i","_toPrimitive","Symbol","toPrimitive","call","TypeError","String","Number","WatcherMain","constructor","workspace","scope","pubsub","onPreWatchSlot","ipcEvents","logger","configStore","watch","opts","OutsideWorkspaceError","watcher","Watcher","getChokidarWatchOptions","usePollingConf","getConfig","CFG_WATCH_USE_POLLING","usePolling","ignoreInitial","persistent","watchScopeInternalFiles","chokidarOpts","triggerOnPreWatch","componentIds","watchOpts","preWatchFunctions","values","pMapSeries","func","registerOnPreWatch","onPreWatchFunc","register","provider","cli","loggerMain","_","createLogger","WatcherAspect","id","watcherMain","watchCmd","WatchCommand","exports","Slot","withType","CLIAspect","WorkspaceAspect","ScopeAspect","PubsubAspect","LoggerAspect","IpcEventsAspect","ConfigStoreAspect","MainRuntime","addRuntime","_default"],"sources":["watcher.main.runtime.ts"],"sourcesContent":["import { CLIAspect, CLIMain, MainRuntime } from '@teambit/cli';\nimport { WatchOptions as ChokidarWatchOptions } from 'chokidar';\nimport { SlotRegistry, Slot } from '@teambit/harmony';\nimport { ScopeAspect, ScopeMain } from '@teambit/scope';\nimport { ComponentID } from '@teambit/component-id';\nimport { IpcEventsAspect, IpcEventsMain } from '@teambit/ipc-events';\nimport { Logger, LoggerAspect, LoggerMain } from '@teambit/logger';\nimport { PubsubAspect, PubsubMain } from '@teambit/pubsub';\nimport { CFG_WATCH_USE_POLLING } from '@teambit/legacy.constants';\nimport { WorkspaceAspect, Workspace, OutsideWorkspaceError } from '@teambit/workspace';\nimport pMapSeries from 'p-map-series';\nimport { WatchCommand } from './watch.cmd';\nimport { Watcher, WatchOptions } from './watcher';\nimport { WatcherAspect } from './watcher.aspect';\nimport { ConfigStoreAspect, ConfigStoreMain } from '@teambit/config-store';\n\nexport type OnPreWatch = (componentIds: ComponentID[], watchOpts: WatchOptions) => Promise<void>;\nexport type OnPreWatchSlot = SlotRegistry<OnPreWatch>;\n\nexport class WatcherMain {\n constructor(\n private workspace: Workspace,\n private scope: ScopeMain,\n private pubsub: PubsubMain,\n private onPreWatchSlot: OnPreWatchSlot,\n readonly ipcEvents: IpcEventsMain,\n readonly logger: Logger,\n readonly configStore: ConfigStoreMain\n ) {}\n\n async watch(opts: WatchOptions) {\n if (!this.workspace) throw new OutsideWorkspaceError();\n const watcher = new Watcher(this.workspace, this.pubsub, this, opts);\n await watcher.watch();\n }\n\n async getChokidarWatchOptions(): Promise<ChokidarWatchOptions> {\n const usePollingConf = this.configStore.getConfig(CFG_WATCH_USE_POLLING);\n const usePolling = usePollingConf === 'true';\n return {\n ignoreInitial: true,\n persistent: true,\n usePolling,\n };\n }\n\n async watchScopeInternalFiles() {\n const chokidarOpts = await this.getChokidarWatchOptions();\n await this.scope.watchScopeInternalFiles(chokidarOpts);\n }\n\n async triggerOnPreWatch(componentIds: ComponentID[], watchOpts: WatchOptions) {\n const preWatchFunctions = this.onPreWatchSlot.values();\n await pMapSeries(preWatchFunctions, async (func) => {\n await func(componentIds, watchOpts);\n });\n }\n\n registerOnPreWatch(onPreWatchFunc: OnPreWatch) {\n this.onPreWatchSlot.register(onPreWatchFunc);\n return this;\n }\n\n static slots = [Slot.withType<OnPreWatch>()];\n static dependencies = [\n CLIAspect,\n WorkspaceAspect,\n ScopeAspect,\n PubsubAspect,\n LoggerAspect,\n IpcEventsAspect,\n ConfigStoreAspect,\n ];\n static runtime = MainRuntime;\n\n static async provider(\n [cli, workspace, scope, pubsub, loggerMain, ipcEvents, configStore]: [\n CLIMain,\n Workspace,\n ScopeMain,\n PubsubMain,\n LoggerMain,\n IpcEventsMain,\n ConfigStoreMain,\n ],\n _,\n [onPreWatchSlot]: [OnPreWatchSlot]\n ) {\n const logger = loggerMain.createLogger(WatcherAspect.id);\n const watcherMain = new WatcherMain(workspace, scope, pubsub, onPreWatchSlot, ipcEvents, logger, configStore);\n const watchCmd = new WatchCommand(pubsub, logger, watcherMain);\n cli.register(watchCmd);\n return watcherMain;\n }\n}\n\nWatcherAspect.addRuntime(WatcherMain);\n\nexport default WatcherMain;\n"],"mappings":"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","ignoreList":[]}
|
package/package.json
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
{
|
2
2
|
"name": "@teambit/watcher",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.545",
|
4
4
|
"homepage": "https://bit.cloud/teambit/workspace/watcher",
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"componentId": {
|
7
7
|
"scope": "teambit.workspace",
|
8
8
|
"name": "watcher",
|
9
|
-
"version": "1.0.
|
9
|
+
"version": "1.0.545"
|
10
10
|
},
|
11
11
|
"dependencies": {
|
12
12
|
"chalk": "2.4.2",
|
@@ -18,20 +18,20 @@
|
|
18
18
|
"fs-extra": "10.0.0",
|
19
19
|
"@teambit/component-id": "1.2.2",
|
20
20
|
"@teambit/harmony": "0.4.6",
|
21
|
-
"@teambit/compiler": "1.0.
|
22
|
-
"@teambit/logger": "0.0.
|
23
|
-
"@teambit/workspace": "1.0.
|
24
|
-
"@teambit/cli": "0.0.
|
25
|
-
"@teambit/pubsub": "1.0.
|
26
|
-
"@teambit/
|
27
|
-
"@teambit/ipc-events": "1.0.
|
28
|
-
"@teambit/legacy.constants": "0.0.
|
29
|
-
"@teambit/scope": "1.0.
|
21
|
+
"@teambit/compiler": "1.0.545",
|
22
|
+
"@teambit/logger": "0.0.1215",
|
23
|
+
"@teambit/workspace": "1.0.545",
|
24
|
+
"@teambit/cli": "0.0.1122",
|
25
|
+
"@teambit/pubsub": "1.0.545",
|
26
|
+
"@teambit/config-store": "0.0.2",
|
27
|
+
"@teambit/ipc-events": "1.0.545",
|
28
|
+
"@teambit/legacy.constants": "0.0.11",
|
29
|
+
"@teambit/scope": "1.0.545",
|
30
30
|
"@teambit/harmony.modules.send-server-sent-events": "0.0.7",
|
31
|
-
"@teambit/legacy.bit-map": "0.0.
|
32
|
-
"@teambit/legacy.consumer": "0.0.
|
33
|
-
"@teambit/legacy.logger": "0.0.
|
34
|
-
"@teambit/legacy.scope": "0.0.
|
31
|
+
"@teambit/legacy.bit-map": "0.0.90",
|
32
|
+
"@teambit/legacy.consumer": "0.0.33",
|
33
|
+
"@teambit/legacy.logger": "0.0.14",
|
34
|
+
"@teambit/legacy.scope": "0.0.33",
|
35
35
|
"@teambit/legacy.utils": "0.0.17"
|
36
36
|
},
|
37
37
|
"devDependencies": {
|
File without changes
|