@lwrjs/core 0.8.0-alpha.15 → 0.8.0-alpha.18
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/build/cjs/context/hooks.cjs +1 -1
- package/build/cjs/index.cjs +1 -1
- package/build/cjs/tools/server-warmup.cjs +6 -2
- package/build/cjs/tools/static-generation.cjs +16 -14
- package/build/es/context/hooks.js +2 -2
- package/build/es/index.js +2 -2
- package/build/es/tools/server-warmup.js +7 -2
- package/build/es/tools/static-generation.js +18 -15
- package/package.json +29 -29
|
@@ -43,7 +43,7 @@ async function runConfigurationsHook(hookPlugins, lwrConfig, dataConfig, runtime
|
|
|
43
43
|
(0, import_config.validateLwrAppConfig)(JSON.stringify(lwrConfig), "post");
|
|
44
44
|
} catch (e) {
|
|
45
45
|
if (process.env.UNSAFE_IGNORE_CONFIG_VALIDATION === "true") {
|
|
46
|
-
|
|
46
|
+
import_shared_utils.logger.warn("ignoring config validation errors due to UNSAFE_IGNORE_CONFIG_VALIDATION flag...proceed with caution");
|
|
47
47
|
console.dir(e, {depth: null});
|
|
48
48
|
} else {
|
|
49
49
|
throw e;
|
package/build/cjs/index.cjs
CHANGED
|
@@ -264,7 +264,7 @@ async function generateStaticSite(config) {
|
|
|
264
264
|
config.serverType = "fs";
|
|
265
265
|
const {serverMode} = config;
|
|
266
266
|
if (serverMode === "dev" || serverMode === "compat") {
|
|
267
|
-
|
|
267
|
+
import_shared_utils.logger.warn("static generation in `dev` or `compat` mode is currently not fully supported");
|
|
268
268
|
}
|
|
269
269
|
const lwrApp = createServer(config);
|
|
270
270
|
overrideConfigAsSrc(lwrApp);
|
|
@@ -30,8 +30,12 @@ var import_static_generation = __toModule(require("./static-generation.cjs"));
|
|
|
30
30
|
var import_dir = __toModule(require("./utils/dir.cjs"));
|
|
31
31
|
var import_network_dispatcher = __toModule(require("./utils/network-dispatcher.cjs"));
|
|
32
32
|
var import_config = __toModule(require("@lwrjs/config"));
|
|
33
|
+
var import_shared_utils = __toModule(require("@lwrjs/shared-utils"));
|
|
33
34
|
async function warmupServer(config, internalRequestKey) {
|
|
34
|
-
|
|
35
|
+
if (!import_shared_utils.logger.currentLevel || import_shared_utils.logger.currentLevel == import_shared_utils.WARN || import_shared_utils.logger.currentLevel == import_shared_utils.INFO) {
|
|
36
|
+
import_shared_utils.logger.setOptions({dedupe: new Set([import_shared_utils.WARN])});
|
|
37
|
+
}
|
|
38
|
+
import_shared_utils.logger.info("[Server Warmup] starting");
|
|
35
39
|
const {routes, staticSiteGenerator, port, apiVersion, basePath, lwrVersion, serverMode} = config;
|
|
36
40
|
staticSiteGenerator.outputDir = import_dir.skipDirCreation;
|
|
37
41
|
const urlRewriteMap = new Map();
|
|
@@ -44,5 +48,5 @@ async function warmupServer(config, internalRequestKey) {
|
|
|
44
48
|
serverMode
|
|
45
49
|
};
|
|
46
50
|
await new import_static_generation.default().generateRoutes(runtimeEnvironment, staticSiteGenerator, routes, new import_network_dispatcher.default(port, internalRequestKey), staticSiteGenerator.outputDir, urlRewriteMap);
|
|
47
|
-
|
|
51
|
+
import_shared_utils.logger.info("[Server Warmup] complete");
|
|
48
52
|
}
|
|
@@ -37,13 +37,16 @@ var import_config = __toModule(require("@lwrjs/config"));
|
|
|
37
37
|
var SiteGenerator = class {
|
|
38
38
|
async buildStaticApplication(config, dispatcher) {
|
|
39
39
|
const startTime = import_perf_hooks.performance.now();
|
|
40
|
-
|
|
40
|
+
import_shared_utils.logger.info("[Static Generation] starting");
|
|
41
|
+
if (!import_shared_utils.logger.currentLevel || import_shared_utils.logger.currentLevel == import_shared_utils.WARN || import_shared_utils.logger.currentLevel == import_shared_utils.INFO) {
|
|
42
|
+
import_shared_utils.logger.setOptions({dedupe: new Set([import_shared_utils.WARN])});
|
|
43
|
+
}
|
|
41
44
|
const {routes, staticSiteGenerator, rootDir, assets} = config;
|
|
42
45
|
if (!staticSiteGenerator.outputDir) {
|
|
43
46
|
staticSiteGenerator.outputDir = "__generated_site__";
|
|
44
47
|
}
|
|
45
48
|
const outputDir = (0, import_path.join)(rootDir, staticSiteGenerator.outputDir);
|
|
46
|
-
|
|
49
|
+
import_shared_utils.logger.info(`Clear Output Location: ${outputDir}`);
|
|
47
50
|
import_fs_extra.default.rmSync(outputDir, {recursive: true, force: true});
|
|
48
51
|
const urlRewriteMap = new Map();
|
|
49
52
|
const {apiVersion, basePath, lwrVersion, serverMode} = config;
|
|
@@ -60,7 +63,7 @@ var SiteGenerator = class {
|
|
|
60
63
|
this.copyAssets(assets, outputDir);
|
|
61
64
|
const endTime = import_perf_hooks.performance.now();
|
|
62
65
|
const timeDiff = (endTime - startTime) / 1e3;
|
|
63
|
-
|
|
66
|
+
import_shared_utils.logger.info(`[Static Generation] complete in ${Math.round(timeDiff)} seconds`);
|
|
64
67
|
}
|
|
65
68
|
async generateRoutes(runtimeEnvironment, staticSiteGenerator, routes, dispatcher, outputDir, urlRewriteMap = new Map()) {
|
|
66
69
|
if (!staticSiteGenerator.locales) {
|
|
@@ -90,10 +93,10 @@ var SiteGenerator = class {
|
|
|
90
93
|
createGenerateURLFunction(dispatcher) {
|
|
91
94
|
const generateRoute = async (uri, siteConfig) => {
|
|
92
95
|
const locale = siteConfig.locale;
|
|
93
|
-
|
|
96
|
+
import_shared_utils.logger.info(`Start Generate: ${locale} ${uri}`);
|
|
94
97
|
await this.dispatchResourceRecursive(uri, dispatcher, {resourceType: "route"}, siteConfig);
|
|
95
98
|
this.addAdditionalImportMetadataToViewConfig(siteConfig);
|
|
96
|
-
|
|
99
|
+
import_shared_utils.logger.info(`End Generate ${locale} ${uri}`);
|
|
97
100
|
};
|
|
98
101
|
return generateRoute.bind(this);
|
|
99
102
|
}
|
|
@@ -102,7 +105,7 @@ var SiteGenerator = class {
|
|
|
102
105
|
if (!visitedUrls.has(url)) {
|
|
103
106
|
visitedUrls.add(url);
|
|
104
107
|
if (url.indexOf("/:") !== -1 || url.indexOf("*") !== -1) {
|
|
105
|
-
|
|
108
|
+
import_shared_utils.logger.warn("Skipped generation of url with variable path segment: " + url);
|
|
106
109
|
return;
|
|
107
110
|
}
|
|
108
111
|
let context;
|
|
@@ -176,7 +179,7 @@ var SiteGenerator = class {
|
|
|
176
179
|
await Promise.all(dispatchRequests);
|
|
177
180
|
} else {
|
|
178
181
|
const body = context.fs?.body;
|
|
179
|
-
|
|
182
|
+
import_shared_utils.logger.warn(`Failed to fetch ${url}: (${statusCode}) ${body}`);
|
|
180
183
|
}
|
|
181
184
|
}
|
|
182
185
|
async handleHtmlResource(url, context, siteConfig, dispatcher) {
|
|
@@ -240,7 +243,7 @@ var SiteGenerator = class {
|
|
|
240
243
|
siteConfig.viewConfigPath = this.getResourcePathFromUrl(siteConfig, resourceUri);
|
|
241
244
|
}
|
|
242
245
|
} else {
|
|
243
|
-
|
|
246
|
+
import_shared_utils.logger.warn("Skipped inline bootstrap resource: %j", resource);
|
|
244
247
|
}
|
|
245
248
|
}
|
|
246
249
|
}
|
|
@@ -250,7 +253,7 @@ var SiteGenerator = class {
|
|
|
250
253
|
if (resourceUri.startsWith("/")) {
|
|
251
254
|
dispatchRequests.push(this.dispatchResourceRecursive(resourceUri, dispatcher, {resourceType: "resource"}, siteConfig));
|
|
252
255
|
} else {
|
|
253
|
-
|
|
256
|
+
import_shared_utils.logger.warn("Skipped resource: %j", resource);
|
|
254
257
|
}
|
|
255
258
|
}
|
|
256
259
|
await Promise.all(dispatchRequests);
|
|
@@ -266,7 +269,7 @@ var SiteGenerator = class {
|
|
|
266
269
|
const mappingURL = siteConfig.endpoints?.uris?.mapping + encodeURIComponent(jsUri);
|
|
267
270
|
await this.dispatchResourceRecursive(mappingURL, dispatcher, {resourceType: "mapping"}, siteConfig);
|
|
268
271
|
} else {
|
|
269
|
-
|
|
272
|
+
import_shared_utils.logger.warn('Unable to fetch mapping for bare specifier or variable dynamic import: "' + jsUri + '"');
|
|
270
273
|
}
|
|
271
274
|
} else if (isAdditionalModulesRequest) {
|
|
272
275
|
const uri = `${siteConfig.endpoints?.uris.legacyDefault}${encodeURIComponent(jsUri)}`;
|
|
@@ -283,7 +286,7 @@ var SiteGenerator = class {
|
|
|
283
286
|
for (const ref of assetReferences) {
|
|
284
287
|
const refUrl = ref.override?.uri || ref.url;
|
|
285
288
|
dispatchRequests.push(this.dispatchResourceRecursive(refUrl, dispatcher, {resourceType: "asset", asset: metadata?.asset}, siteConfig).catch((err) => {
|
|
286
|
-
import_shared_utils.logger.warn(`Failed to fetch asset
|
|
289
|
+
import_shared_utils.logger.warn(`Failed to fetch asset reference => ${refUrl} from ${url}`, err);
|
|
287
290
|
}));
|
|
288
291
|
}
|
|
289
292
|
return Promise.all(dispatchRequests);
|
|
@@ -320,11 +323,10 @@ var SiteGenerator = class {
|
|
|
320
323
|
if (assetSrcDir && import_fs_extra.default.existsSync(assetSrcDir)) {
|
|
321
324
|
import_fs_extra.default.copySync(assetSrcDir, assetOutputDir);
|
|
322
325
|
} else {
|
|
323
|
-
|
|
326
|
+
import_shared_utils.logger.warn("Could not find assets to copy at path: " + assetSrcDir);
|
|
324
327
|
}
|
|
325
328
|
} catch (e) {
|
|
326
|
-
|
|
327
|
-
console.error(e);
|
|
329
|
+
import_shared_utils.logger.error("Error occurred processing asset config: " + JSON.stringify(asset), e);
|
|
328
330
|
}
|
|
329
331
|
}
|
|
330
332
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DEFAULT_LWR_BOOTSTRAP_CONFIG } from '@lwrjs/shared-utils';
|
|
1
|
+
import { DEFAULT_LWR_BOOTSTRAP_CONFIG, logger } from '@lwrjs/shared-utils';
|
|
2
2
|
import { validateLwrAppConfig } from '@lwrjs/config';
|
|
3
3
|
// Add missing bootstrap objects to routes
|
|
4
4
|
function normalizeRoutesBootstrap({ routes, errorRoutes }) {
|
|
@@ -19,7 +19,7 @@ export async function runConfigurationsHook(hookPlugins, lwrConfig, dataConfig,
|
|
|
19
19
|
catch (e) {
|
|
20
20
|
// TODO: temporary workaround for https://github.com/salesforce/lwr/issues/825
|
|
21
21
|
if (process.env.UNSAFE_IGNORE_CONFIG_VALIDATION === 'true') {
|
|
22
|
-
|
|
22
|
+
logger.warn('ignoring config validation errors due to UNSAFE_IGNORE_CONFIG_VALIDATION flag...proceed with caution');
|
|
23
23
|
console.dir(e, { depth: null });
|
|
24
24
|
}
|
|
25
25
|
else {
|
package/build/es/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { deepFreeze, getFeatureFlags, DEFAULT_LWR_BOOTSTRAP_CONFIG } from '@lwrjs/shared-utils';
|
|
1
|
+
import { deepFreeze, getFeatureFlags, DEFAULT_LWR_BOOTSTRAP_CONFIG, logger } from '@lwrjs/shared-utils';
|
|
2
2
|
import { LwrCompiler } from '@lwrjs/compiler';
|
|
3
3
|
import { LwrModuleBundler } from '@lwrjs/module-bundler';
|
|
4
4
|
import { LwrModuleRegistry } from '@lwrjs/module-registry';
|
|
@@ -235,7 +235,7 @@ export async function generateStaticSite(config) {
|
|
|
235
235
|
if (serverMode === 'dev' || serverMode === 'compat') {
|
|
236
236
|
// TODO: dynamic imports are not generated in dev mode
|
|
237
237
|
// https://github.com/salesforce/lwr/issues/1111
|
|
238
|
-
|
|
238
|
+
logger.warn('static generation in `dev` or `compat` mode is currently not fully supported');
|
|
239
239
|
}
|
|
240
240
|
const lwrApp = createServer(config);
|
|
241
241
|
overrideConfigAsSrc(lwrApp);
|
|
@@ -2,8 +2,13 @@ import SiteGenerator from './static-generation.js';
|
|
|
2
2
|
import { skipDirCreation } from './utils/dir.js';
|
|
3
3
|
import NetworkDispatcher from './utils/network-dispatcher.js';
|
|
4
4
|
import { explodeMode } from '@lwrjs/config';
|
|
5
|
+
import { logger, WARN, INFO } from '@lwrjs/shared-utils';
|
|
5
6
|
export async function warmupServer(config, internalRequestKey) {
|
|
6
|
-
|
|
7
|
+
// De-duplicate warming messages if log level is warn or info
|
|
8
|
+
if (!logger.currentLevel || logger.currentLevel == WARN || logger.currentLevel == INFO) {
|
|
9
|
+
logger.setOptions({ dedupe: new Set([WARN]) });
|
|
10
|
+
}
|
|
11
|
+
logger.info('[Server Warmup] starting');
|
|
7
12
|
const { routes, staticSiteGenerator, port, apiVersion, basePath, lwrVersion, serverMode } = config;
|
|
8
13
|
staticSiteGenerator.outputDir = skipDirCreation;
|
|
9
14
|
const urlRewriteMap = new Map();
|
|
@@ -17,6 +22,6 @@ export async function warmupServer(config, internalRequestKey) {
|
|
|
17
22
|
};
|
|
18
23
|
// For each locale, generate all the modules
|
|
19
24
|
await new SiteGenerator().generateRoutes(runtimeEnvironment, staticSiteGenerator, routes, new NetworkDispatcher(port, internalRequestKey), staticSiteGenerator.outputDir, urlRewriteMap);
|
|
20
|
-
|
|
25
|
+
logger.info('[Server Warmup] complete');
|
|
21
26
|
}
|
|
22
27
|
//# sourceMappingURL=server-warmup.js.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { performance } from 'perf_hooks';
|
|
2
|
-
import { getSpecifier, getFeatureFlags, hashContent, isSelfUrl, getModuleUriPrefix, getMappingUriPrefix, logger, } from '@lwrjs/shared-utils';
|
|
2
|
+
import { getSpecifier, getFeatureFlags, hashContent, isSelfUrl, getModuleUriPrefix, getMappingUriPrefix, logger, WARN, INFO, } from '@lwrjs/shared-utils';
|
|
3
3
|
import { join, dirname, extname } from 'path';
|
|
4
4
|
import fs from 'fs-extra';
|
|
5
5
|
import { writeResponse } from './utils/stream.js';
|
|
@@ -16,13 +16,17 @@ export default class SiteGenerator {
|
|
|
16
16
|
*/
|
|
17
17
|
async buildStaticApplication(config, dispatcher) {
|
|
18
18
|
const startTime = performance.now();
|
|
19
|
-
|
|
19
|
+
logger.info('[Static Generation] starting');
|
|
20
|
+
// De-duplicate warming messages if log level is warn or info
|
|
21
|
+
if (!logger.currentLevel || logger.currentLevel == WARN || logger.currentLevel == INFO) {
|
|
22
|
+
logger.setOptions({ dedupe: new Set([WARN]) });
|
|
23
|
+
}
|
|
20
24
|
const { routes, staticSiteGenerator, rootDir, assets } = config;
|
|
21
25
|
if (!staticSiteGenerator.outputDir) {
|
|
22
26
|
staticSiteGenerator.outputDir = '__generated_site__';
|
|
23
27
|
}
|
|
24
28
|
const outputDir = join(rootDir, staticSiteGenerator.outputDir);
|
|
25
|
-
|
|
29
|
+
logger.info(`Clear Output Location: ${outputDir}`);
|
|
26
30
|
fs.rmSync(outputDir, { recursive: true, force: true });
|
|
27
31
|
const urlRewriteMap = new Map();
|
|
28
32
|
const { apiVersion, basePath, lwrVersion, serverMode } = config;
|
|
@@ -42,7 +46,7 @@ export default class SiteGenerator {
|
|
|
42
46
|
this.copyAssets(assets, outputDir);
|
|
43
47
|
const endTime = performance.now();
|
|
44
48
|
const timeDiff = (endTime - startTime) / 1000;
|
|
45
|
-
|
|
49
|
+
logger.info(`[Static Generation] complete in ${Math.round(timeDiff)} seconds`);
|
|
46
50
|
}
|
|
47
51
|
/**
|
|
48
52
|
* Crawl all view routes for a site
|
|
@@ -85,12 +89,12 @@ export default class SiteGenerator {
|
|
|
85
89
|
createGenerateURLFunction(dispatcher) {
|
|
86
90
|
const generateRoute = async (uri, siteConfig) => {
|
|
87
91
|
const locale = siteConfig.locale;
|
|
88
|
-
|
|
92
|
+
logger.info(`Start Generate: ${locale} ${uri}`);
|
|
89
93
|
// Kick off site generation for the current route
|
|
90
94
|
await this.dispatchResourceRecursive(uri, dispatcher, { resourceType: 'route' }, siteConfig);
|
|
91
95
|
// If there is a view config add any extra collected import metadata to the config
|
|
92
96
|
this.addAdditionalImportMetadataToViewConfig(siteConfig);
|
|
93
|
-
|
|
97
|
+
logger.info(`End Generate ${locale} ${uri}`);
|
|
94
98
|
};
|
|
95
99
|
return generateRoute.bind(this);
|
|
96
100
|
}
|
|
@@ -109,7 +113,7 @@ export default class SiteGenerator {
|
|
|
109
113
|
// Skip urls with path segment variables (i.e. '/custom/:bar')
|
|
110
114
|
// Users can specify specific urls via the '_additionalRoutePaths' config property
|
|
111
115
|
if (url.indexOf('/:') !== -1 || url.indexOf('*') !== -1) {
|
|
112
|
-
|
|
116
|
+
logger.warn('Skipped generation of url with variable path segment: ' + url);
|
|
113
117
|
return;
|
|
114
118
|
}
|
|
115
119
|
// Generate resource
|
|
@@ -240,7 +244,7 @@ export default class SiteGenerator {
|
|
|
240
244
|
}
|
|
241
245
|
else {
|
|
242
246
|
const body = context.fs?.body;
|
|
243
|
-
|
|
247
|
+
logger.warn(`Failed to fetch ${url}: (${statusCode}) ${body}`);
|
|
244
248
|
}
|
|
245
249
|
}
|
|
246
250
|
/**
|
|
@@ -341,7 +345,7 @@ export default class SiteGenerator {
|
|
|
341
345
|
}
|
|
342
346
|
}
|
|
343
347
|
else {
|
|
344
|
-
|
|
348
|
+
logger.warn('Skipped inline bootstrap resource: %j', resource);
|
|
345
349
|
}
|
|
346
350
|
}
|
|
347
351
|
}
|
|
@@ -353,7 +357,7 @@ export default class SiteGenerator {
|
|
|
353
357
|
dispatchRequests.push(this.dispatchResourceRecursive(resourceUri, dispatcher, { resourceType: 'resource' }, siteConfig));
|
|
354
358
|
}
|
|
355
359
|
else {
|
|
356
|
-
|
|
360
|
+
logger.warn('Skipped resource: %j', resource);
|
|
357
361
|
}
|
|
358
362
|
}
|
|
359
363
|
// -- Dispatch dependencies
|
|
@@ -373,7 +377,7 @@ export default class SiteGenerator {
|
|
|
373
377
|
await this.dispatchResourceRecursive(mappingURL, dispatcher, { resourceType: 'mapping' }, siteConfig);
|
|
374
378
|
}
|
|
375
379
|
else {
|
|
376
|
-
|
|
380
|
+
logger.warn('Unable to fetch mapping for bare specifier or variable dynamic import: "' +
|
|
377
381
|
jsUri +
|
|
378
382
|
'"');
|
|
379
383
|
}
|
|
@@ -405,7 +409,7 @@ export default class SiteGenerator {
|
|
|
405
409
|
const refUrl = ref.override?.uri || ref.url;
|
|
406
410
|
dispatchRequests.push(this.dispatchResourceRecursive(refUrl, dispatcher, { resourceType: 'asset', asset: metadata?.asset }, siteConfig).catch((err) => {
|
|
407
411
|
// Warn the user that the we failed to fetch a referenced asset
|
|
408
|
-
logger.warn(`Failed to fetch asset
|
|
412
|
+
logger.warn(`Failed to fetch asset reference => ${refUrl} from ${url}`, err);
|
|
409
413
|
}));
|
|
410
414
|
}
|
|
411
415
|
return Promise.all(dispatchRequests);
|
|
@@ -463,12 +467,11 @@ export default class SiteGenerator {
|
|
|
463
467
|
fs.copySync(assetSrcDir, assetOutputDir);
|
|
464
468
|
}
|
|
465
469
|
else {
|
|
466
|
-
|
|
470
|
+
logger.warn('Could not find assets to copy at path: ' + assetSrcDir);
|
|
467
471
|
}
|
|
468
472
|
}
|
|
469
473
|
catch (e) {
|
|
470
|
-
|
|
471
|
-
console.error(e);
|
|
474
|
+
logger.error('Error occurred processing asset config: ' + JSON.stringify(asset), e);
|
|
472
475
|
}
|
|
473
476
|
}
|
|
474
477
|
}
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
|
-
"version": "0.8.0-alpha.
|
|
7
|
+
"version": "0.8.0-alpha.18",
|
|
8
8
|
"homepage": "https://developer.salesforce.com/docs/platform/lwr/overview",
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
@@ -32,32 +32,32 @@
|
|
|
32
32
|
"package.cjs"
|
|
33
33
|
],
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@lwrjs/app-service": "0.8.0-alpha.
|
|
36
|
-
"@lwrjs/asset-registry": "0.8.0-alpha.
|
|
37
|
-
"@lwrjs/asset-transformer": "0.8.0-alpha.
|
|
38
|
-
"@lwrjs/base-template-engine": "0.8.0-alpha.
|
|
39
|
-
"@lwrjs/base-view-provider": "0.8.0-alpha.
|
|
40
|
-
"@lwrjs/base-view-transformer": "0.8.0-alpha.
|
|
41
|
-
"@lwrjs/client-modules": "0.8.0-alpha.
|
|
42
|
-
"@lwrjs/compiler": "0.8.0-alpha.
|
|
43
|
-
"@lwrjs/config": "0.8.0-alpha.
|
|
44
|
-
"@lwrjs/diagnostics": "0.8.0-alpha.
|
|
45
|
-
"@lwrjs/fs-asset-provider": "0.8.0-alpha.
|
|
46
|
-
"@lwrjs/html-view-provider": "0.8.0-alpha.
|
|
47
|
-
"@lwrjs/loader": "0.8.0-alpha.
|
|
48
|
-
"@lwrjs/lwc-module-provider": "0.8.0-alpha.
|
|
49
|
-
"@lwrjs/lwc-ssr": "0.8.0-alpha.
|
|
50
|
-
"@lwrjs/markdown-view-provider": "0.8.0-alpha.
|
|
51
|
-
"@lwrjs/module-bundler": "0.8.0-alpha.
|
|
52
|
-
"@lwrjs/module-registry": "0.8.0-alpha.
|
|
53
|
-
"@lwrjs/npm-module-provider": "0.8.0-alpha.
|
|
54
|
-
"@lwrjs/nunjucks-view-provider": "0.8.0-alpha.
|
|
55
|
-
"@lwrjs/o11y": "0.8.0-alpha.
|
|
56
|
-
"@lwrjs/resource-registry": "0.8.0-alpha.
|
|
57
|
-
"@lwrjs/router": "0.8.0-alpha.
|
|
58
|
-
"@lwrjs/server": "0.8.0-alpha.
|
|
59
|
-
"@lwrjs/shared-utils": "0.8.0-alpha.
|
|
60
|
-
"@lwrjs/view-registry": "0.8.0-alpha.
|
|
35
|
+
"@lwrjs/app-service": "0.8.0-alpha.18",
|
|
36
|
+
"@lwrjs/asset-registry": "0.8.0-alpha.18",
|
|
37
|
+
"@lwrjs/asset-transformer": "0.8.0-alpha.18",
|
|
38
|
+
"@lwrjs/base-template-engine": "0.8.0-alpha.18",
|
|
39
|
+
"@lwrjs/base-view-provider": "0.8.0-alpha.18",
|
|
40
|
+
"@lwrjs/base-view-transformer": "0.8.0-alpha.18",
|
|
41
|
+
"@lwrjs/client-modules": "0.8.0-alpha.18",
|
|
42
|
+
"@lwrjs/compiler": "0.8.0-alpha.18",
|
|
43
|
+
"@lwrjs/config": "0.8.0-alpha.18",
|
|
44
|
+
"@lwrjs/diagnostics": "0.8.0-alpha.18",
|
|
45
|
+
"@lwrjs/fs-asset-provider": "0.8.0-alpha.18",
|
|
46
|
+
"@lwrjs/html-view-provider": "0.8.0-alpha.18",
|
|
47
|
+
"@lwrjs/loader": "0.8.0-alpha.18",
|
|
48
|
+
"@lwrjs/lwc-module-provider": "0.8.0-alpha.18",
|
|
49
|
+
"@lwrjs/lwc-ssr": "0.8.0-alpha.18",
|
|
50
|
+
"@lwrjs/markdown-view-provider": "0.8.0-alpha.18",
|
|
51
|
+
"@lwrjs/module-bundler": "0.8.0-alpha.18",
|
|
52
|
+
"@lwrjs/module-registry": "0.8.0-alpha.18",
|
|
53
|
+
"@lwrjs/npm-module-provider": "0.8.0-alpha.18",
|
|
54
|
+
"@lwrjs/nunjucks-view-provider": "0.8.0-alpha.18",
|
|
55
|
+
"@lwrjs/o11y": "0.8.0-alpha.18",
|
|
56
|
+
"@lwrjs/resource-registry": "0.8.0-alpha.18",
|
|
57
|
+
"@lwrjs/router": "0.8.0-alpha.18",
|
|
58
|
+
"@lwrjs/server": "0.8.0-alpha.18",
|
|
59
|
+
"@lwrjs/shared-utils": "0.8.0-alpha.18",
|
|
60
|
+
"@lwrjs/view-registry": "0.8.0-alpha.18",
|
|
61
61
|
"fs-extra": "^10.1.0",
|
|
62
62
|
"ms": "^2.1.3",
|
|
63
63
|
"path-to-regexp": "^6.2.0",
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"ws": "^8.8.1"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
|
-
"@lwrjs/types": "0.8.0-alpha.
|
|
68
|
+
"@lwrjs/types": "0.8.0-alpha.18",
|
|
69
69
|
"@types/ws": "^8.5.3"
|
|
70
70
|
},
|
|
71
71
|
"peerDependencies": {
|
|
@@ -74,5 +74,5 @@
|
|
|
74
74
|
"engines": {
|
|
75
75
|
"node": ">=14.15.4 <19"
|
|
76
76
|
},
|
|
77
|
-
"gitHead": "
|
|
77
|
+
"gitHead": "a93c661c7654fb326d253690f2c0ba4269f30763"
|
|
78
78
|
}
|