sommark 4.5.0 → 4.5.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.
package/core/helpers/lib.js
CHANGED
package/core/modules.js
CHANGED
|
@@ -366,6 +366,7 @@ export async function resolveModules(ast, context) {
|
|
|
366
366
|
security: context.instance.security,
|
|
367
367
|
showSpinner: context.instance.showSpinner,
|
|
368
368
|
importStack: [...stack, absFilename],
|
|
369
|
+
moduleIdentityToken: context.instance.moduleIdentityToken,
|
|
369
370
|
moduleCache: context.instance.moduleCache
|
|
370
371
|
});
|
|
371
372
|
|
package/dist/sommark.browser.js
CHANGED
|
@@ -9184,7 +9184,7 @@ function registerHostSettings(settings) {
|
|
|
9184
9184
|
hostSettings = settings || {};
|
|
9185
9185
|
}
|
|
9186
9186
|
|
|
9187
|
-
const version = "4.5.
|
|
9187
|
+
const version = "4.5.1";
|
|
9188
9188
|
|
|
9189
9189
|
const SomMark$1 = {
|
|
9190
9190
|
version,
|
|
@@ -13818,6 +13818,7 @@ async function resolveModules(ast, context) {
|
|
|
13818
13818
|
security: context.instance.security,
|
|
13819
13819
|
showSpinner: context.instance.showSpinner,
|
|
13820
13820
|
importStack: [...stack, absFilename],
|
|
13821
|
+
moduleIdentityToken: context.instance.moduleIdentityToken,
|
|
13821
13822
|
moduleCache: context.instance.moduleCache
|
|
13822
13823
|
});
|
|
13823
13824
|
|
|
@@ -12726,6 +12726,7 @@ async function resolveModules(ast, context) {
|
|
|
12726
12726
|
security: context.instance.security,
|
|
12727
12727
|
showSpinner: context.instance.showSpinner,
|
|
12728
12728
|
importStack: [...stack, absFilename],
|
|
12729
|
+
moduleIdentityToken: context.instance.moduleIdentityToken,
|
|
12729
12730
|
moduleCache: context.instance.moduleCache
|
|
12730
12731
|
});
|
|
12731
12732
|
|
package/package.json
CHANGED