@lwrjs/static 0.10.0-alpha.22 → 0.11.0-alpha.0

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.
@@ -29,7 +29,7 @@ __export(exports, {
29
29
  var import_shared_utils = __toModule(require("@lwrjs/shared-utils"));
30
30
  var import_path = __toModule(require("path"));
31
31
  var import_fs_extra = __toModule(require("fs-extra"));
32
- var import_static_utils = __toModule(require("../utils/static-utils"));
32
+ var import_static_utils = __toModule(require("../utils/static-utils.cjs"));
33
33
  var LWR_SSR_BUNDLE_PREFIX = "@lwrjs/lwc-ssr/";
34
34
  var StaticBundleProvider = class {
35
35
  constructor(_config, context) {
@@ -28,7 +28,7 @@ __export(exports, {
28
28
  });
29
29
  var import_shared_utils = __toModule(require("@lwrjs/shared-utils"));
30
30
  var import_path = __toModule(require("path"));
31
- var import_static_utils = __toModule(require("../utils/static-utils"));
31
+ var import_static_utils = __toModule(require("../utils/static-utils.cjs"));
32
32
  var StaticModuleProvider = class {
33
33
  constructor(_config, context) {
34
34
  this.name = "static-module-provider";
@@ -1,7 +1,7 @@
1
1
  import { explodeSpecifier, getSpecifier, logger } from '@lwrjs/shared-utils';
2
2
  import path from 'path';
3
3
  import fs from 'fs-extra';
4
- import { resolveStaticBundleVersion } from '../utils/static-utils';
4
+ import { resolveStaticBundleVersion } from '../utils/static-utils.js';
5
5
  const LWR_SSR_BUNDLE_PREFIX = '@lwrjs/lwc-ssr/';
6
6
  export default class StaticBundleProvider {
7
7
  constructor(_config, context) {
@@ -1,6 +1,6 @@
1
1
  import { explodeSpecifier, getSpecifier, logger } from '@lwrjs/shared-utils';
2
2
  import path from 'path';
3
- import { resolveStaticBundleVersion } from '../utils/static-utils';
3
+ import { resolveStaticBundleVersion } from '../utils/static-utils.js';
4
4
  export default class StaticModuleProvider {
5
5
  constructor(_config, context) {
6
6
  this.name = 'static-module-provider';
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "version": "0.10.0-alpha.22",
7
+ "version": "0.11.0-alpha.0",
8
8
  "homepage": "https://developer.salesforce.com/docs/platform/lwr/overview",
9
9
  "repository": {
10
10
  "type": "git",
@@ -48,10 +48,10 @@
48
48
  "build/**/*.d.ts"
49
49
  ],
50
50
  "dependencies": {
51
- "@lwrjs/shared-utils": "0.10.0-alpha.22"
51
+ "@lwrjs/shared-utils": "0.11.0-alpha.0"
52
52
  },
53
53
  "devDependencies": {
54
- "@lwrjs/types": "0.10.0-alpha.22",
54
+ "@lwrjs/types": "0.11.0-alpha.0",
55
55
  "@types/express": "^4.17.17",
56
56
  "jest-express": "^1.12.0",
57
57
  "mock-res": "^0.6.0"
@@ -62,5 +62,5 @@
62
62
  "volta": {
63
63
  "extends": "../../../package.json"
64
64
  },
65
- "gitHead": "ef991388d9158dbca91656d7ec7c0a641b477f4f"
65
+ "gitHead": "6917abefe32752eeed0f9ba98505ca2b76f1df9d"
66
66
  }