@lwc/template-compiler 3.0.0 → 3.0.2
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/dist/index.cjs.js +8 -3
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +8 -3
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/dist/index.cjs.js
CHANGED
|
@@ -1850,7 +1850,7 @@ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
|
1850
1850
|
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
1851
1851
|
PERFORMANCE OF THIS SOFTWARE.
|
|
1852
1852
|
***************************************************************************** */
|
|
1853
|
-
/* global Reflect, Promise */
|
|
1853
|
+
/* global Reflect, Promise, SuppressedError, Symbol */
|
|
1854
1854
|
|
|
1855
1855
|
|
|
1856
1856
|
function __rest(s, e) {
|
|
@@ -1863,7 +1863,12 @@ function __rest(s, e) {
|
|
|
1863
1863
|
t[p[i]] = s[p[i]];
|
|
1864
1864
|
}
|
|
1865
1865
|
return t;
|
|
1866
|
-
}
|
|
1866
|
+
}
|
|
1867
|
+
|
|
1868
|
+
typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
|
|
1869
|
+
var e = new Error(message);
|
|
1870
|
+
return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
|
|
1871
|
+
};
|
|
1867
1872
|
|
|
1868
1873
|
/*
|
|
1869
1874
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -5360,5 +5365,5 @@ function compile(source, config) {
|
|
|
5360
5365
|
exports.compile = compile;
|
|
5361
5366
|
exports.default = compile;
|
|
5362
5367
|
exports.parse = parse;
|
|
5363
|
-
/** version: 3.0.
|
|
5368
|
+
/** version: 3.0.2 */
|
|
5364
5369
|
//# sourceMappingURL=index.cjs.js.map
|