@lwrjs/static 0.13.0-alpha.26 → 0.13.0-alpha.27
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.
|
@@ -79,7 +79,7 @@ var StaticBundleProvider = class {
|
|
|
79
79
|
version: resolvedVersion,
|
|
80
80
|
specifier,
|
|
81
81
|
config: this.bundleConfig,
|
|
82
|
-
integrity: metadata.integrity
|
|
82
|
+
integrity: metadata.integrity,
|
|
83
83
|
bundleRecord: {
|
|
84
84
|
includedModules,
|
|
85
85
|
imports,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { logger } from '@lwrjs/diagnostics';
|
|
2
|
-
import { VERSION_SIGIL,
|
|
2
|
+
import { VERSION_SIGIL, explodeSpecifier, getSpecifier, isLambdaEnv } from '@lwrjs/shared-utils';
|
|
3
3
|
import path from 'path';
|
|
4
4
|
import fs from 'fs-extra';
|
|
5
5
|
import { getSiteBundleId, parseSiteId, resolveStaticBundleVersion } from '../site-metadata.js';
|
|
@@ -51,7 +51,7 @@ export default class StaticBundleProvider {
|
|
|
51
51
|
version: resolvedVersion,
|
|
52
52
|
specifier: specifier,
|
|
53
53
|
config: this.bundleConfig,
|
|
54
|
-
integrity: metadata.integrity
|
|
54
|
+
integrity: metadata.integrity,
|
|
55
55
|
bundleRecord: {
|
|
56
56
|
// TODO we need to solve include modules for fingerprints support
|
|
57
57
|
includedModules,
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
|
-
"version": "0.13.0-alpha.
|
|
7
|
+
"version": "0.13.0-alpha.27",
|
|
8
8
|
"homepage": "https://developer.salesforce.com/docs/platform/lwr/overview",
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
@@ -52,11 +52,11 @@
|
|
|
52
52
|
"build/**/*.d.ts"
|
|
53
53
|
],
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@lwrjs/diagnostics": "0.13.0-alpha.
|
|
56
|
-
"@lwrjs/shared-utils": "0.13.0-alpha.
|
|
55
|
+
"@lwrjs/diagnostics": "0.13.0-alpha.27",
|
|
56
|
+
"@lwrjs/shared-utils": "0.13.0-alpha.27"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@lwrjs/types": "0.13.0-alpha.
|
|
59
|
+
"@lwrjs/types": "0.13.0-alpha.27",
|
|
60
60
|
"@types/express": "^4.17.21",
|
|
61
61
|
"jest": "^26.6.3",
|
|
62
62
|
"jest-express": "^1.12.0",
|
|
@@ -69,5 +69,5 @@
|
|
|
69
69
|
"volta": {
|
|
70
70
|
"extends": "../../../package.json"
|
|
71
71
|
},
|
|
72
|
-
"gitHead": "
|
|
72
|
+
"gitHead": "2145759ab377e5e625dcd449b80ac25f492513a7"
|
|
73
73
|
}
|