@lwrjs/module-bundler 0.11.0-alpha.9 → 0.11.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.
|
@@ -27,7 +27,7 @@ __export(exports, {
|
|
|
27
27
|
minifyJavascript: () => minifyJavascript,
|
|
28
28
|
parseJavascript: () => parseJavascript
|
|
29
29
|
});
|
|
30
|
-
var
|
|
30
|
+
var import_diagnostics = __toModule(require("@lwrjs/diagnostics"));
|
|
31
31
|
var import_esbuild = __toModule(require("esbuild"));
|
|
32
32
|
var import_features = __toModule(require("@lwc/features"));
|
|
33
33
|
var lwcFeatureFlags = "default" in import_features.default ? import_features.default.default : import_features.default;
|
|
@@ -52,7 +52,7 @@ async function minifyJavascript(source) {
|
|
|
52
52
|
});
|
|
53
53
|
return code;
|
|
54
54
|
} catch (error) {
|
|
55
|
-
|
|
55
|
+
import_diagnostics.logger.debug(error);
|
|
56
56
|
throw error;
|
|
57
57
|
}
|
|
58
58
|
}
|
|
@@ -68,7 +68,7 @@ async function parseJavascript(source, options) {
|
|
|
68
68
|
});
|
|
69
69
|
return code;
|
|
70
70
|
} catch (error) {
|
|
71
|
-
|
|
71
|
+
import_diagnostics.logger.debug(error);
|
|
72
72
|
throw error;
|
|
73
73
|
}
|
|
74
74
|
}
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
|
-
"version": "0.11.
|
|
7
|
+
"version": "0.11.1",
|
|
8
8
|
"homepage": "https://developer.salesforce.com/docs/platform/lwr/overview",
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
@@ -47,12 +47,13 @@
|
|
|
47
47
|
"build/**/*.d.ts"
|
|
48
48
|
],
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@lwrjs/
|
|
50
|
+
"@lwrjs/diagnostics": "0.11.1",
|
|
51
|
+
"@lwrjs/shared-utils": "0.11.1",
|
|
51
52
|
"@rollup/plugin-replace": "^2.4.2",
|
|
52
53
|
"rollup": "^2.78.0"
|
|
53
54
|
},
|
|
54
55
|
"devDependencies": {
|
|
55
|
-
"@lwrjs/types": "0.11.
|
|
56
|
+
"@lwrjs/types": "0.11.1",
|
|
56
57
|
"jest": "^26.6.3",
|
|
57
58
|
"ts-jest": "^26.5.6"
|
|
58
59
|
},
|
|
@@ -60,7 +61,7 @@
|
|
|
60
61
|
"esbuild": "^0.9.7"
|
|
61
62
|
},
|
|
62
63
|
"peerDependencies": {
|
|
63
|
-
"@lwc/features": "2.x || 3.x"
|
|
64
|
+
"@lwc/features": "2.x || 3.x || 4.x"
|
|
64
65
|
},
|
|
65
66
|
"engines": {
|
|
66
67
|
"node": ">=16.0.0"
|
|
@@ -68,5 +69,5 @@
|
|
|
68
69
|
"volta": {
|
|
69
70
|
"extends": "../../../package.json"
|
|
70
71
|
},
|
|
71
|
-
"gitHead": "
|
|
72
|
+
"gitHead": "b7c40fdcd86635dd4e368c0a2e91c5d3374c0fcf"
|
|
72
73
|
}
|