@lwrjs/router 0.11.3 → 0.11.5
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.
|
@@ -44,7 +44,7 @@ function setUpWatcher(factory, onModuleChange) {
|
|
|
44
44
|
const watcher = factory.createFileWatcher();
|
|
45
45
|
watcher.on("change", (0, import_shared_utils.debounce)((file) => onModuleChange(file), 500));
|
|
46
46
|
watcher.on("unlink", (0, import_shared_utils.debounce)((file) => onModuleChange(file, true), 500));
|
|
47
|
-
watcher.on("add", (file) => import_diagnostics.logger.info(`Watching Router Config file at "${file}"`));
|
|
47
|
+
watcher.on("add", (file) => import_diagnostics.logger.info({label: `@lwrjs/router`, message: `Watching Router Config file at "${file}"`}));
|
|
48
48
|
return watcher;
|
|
49
49
|
}
|
|
50
50
|
function getHandlerClassName(specifier) {
|
|
@@ -26,7 +26,7 @@ export function setUpWatcher(factory, onModuleChange) {
|
|
|
26
26
|
const watcher = factory.createFileWatcher();
|
|
27
27
|
watcher.on('change', debounce((file) => onModuleChange(file), 500));
|
|
28
28
|
watcher.on('unlink', debounce((file) => onModuleChange(file, true), 500));
|
|
29
|
-
watcher.on('add', (file) => logger.info(`Watching Router Config file at "${file}"`));
|
|
29
|
+
watcher.on('add', (file) => logger.info({ label: `@lwrjs/router`, message: `Watching Router Config file at "${file}"` }));
|
|
30
30
|
return watcher;
|
|
31
31
|
}
|
|
32
32
|
/**
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
8
|
-
"version": "0.11.
|
|
8
|
+
"version": "0.11.5",
|
|
9
9
|
"homepage": "https://developer.salesforce.com/docs/platform/lwr/overview",
|
|
10
10
|
"repository": {
|
|
11
11
|
"type": "git",
|
|
@@ -53,14 +53,14 @@
|
|
|
53
53
|
"test:server": "jest --config ./jest.server.config.cjs"
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
|
-
"@lwrjs/client-modules": "0.11.
|
|
57
|
-
"@lwrjs/diagnostics": "0.11.
|
|
58
|
-
"@lwrjs/shared-utils": "0.11.
|
|
56
|
+
"@lwrjs/client-modules": "0.11.5",
|
|
57
|
+
"@lwrjs/diagnostics": "0.11.5",
|
|
58
|
+
"@lwrjs/shared-utils": "0.11.5",
|
|
59
59
|
"ajv": "6.12.6"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
|
-
"@lwc/jest-preset": "^14.
|
|
63
|
-
"@lwrjs/fs-watch": "0.11.
|
|
62
|
+
"@lwc/jest-preset": "^14.2.1",
|
|
63
|
+
"@lwrjs/fs-watch": "0.11.5",
|
|
64
64
|
"@rollup/plugin-typescript": "^11.1.5",
|
|
65
65
|
"jest": "^26.6.3",
|
|
66
66
|
"rollup": "^2.78.0",
|
|
@@ -98,5 +98,5 @@
|
|
|
98
98
|
"volta": {
|
|
99
99
|
"extends": "../../../package.json"
|
|
100
100
|
},
|
|
101
|
-
"gitHead": "
|
|
101
|
+
"gitHead": "b1a54889dd55baed1bf61ceb497d251958415595"
|
|
102
102
|
}
|