rollup 0.67.3 → 0.67.4
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/CHANGELOG.md +5 -1
- package/bin/rollup +1 -1
- package/dist/rollup.browser.es.js +3 -3
- package/dist/rollup.browser.js +3 -3
- package/dist/rollup.es.js +6 -6
- package/dist/rollup.js +6 -6
- package/package.json +2 -2
package/dist/rollup.es.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v0.67.
|
|
4
|
-
|
|
3
|
+
Rollup.js v0.67.4
|
|
4
|
+
Mon, 03 Dec 2018 06:30:02 GMT - commit 7d1ba815d94141e22d2ed71dd2804708ad45be1d
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
https://github.com/rollup/rollup
|
|
@@ -658,13 +658,13 @@ function decode(mappings) {
|
|
|
658
658
|
var c = mappings.charCodeAt(i);
|
|
659
659
|
if (c === 44) { // ","
|
|
660
660
|
if (segment.length)
|
|
661
|
-
line.push(new
|
|
661
|
+
line.push(new Int32Array(segment));
|
|
662
662
|
segment = [];
|
|
663
663
|
j = 0;
|
|
664
664
|
}
|
|
665
665
|
else if (c === 59) { // ";"
|
|
666
666
|
if (segment.length)
|
|
667
|
-
line.push(new
|
|
667
|
+
line.push(new Int32Array(segment));
|
|
668
668
|
segment = [];
|
|
669
669
|
j = 0;
|
|
670
670
|
decoded.push(line);
|
|
@@ -712,7 +712,7 @@ function decode(mappings) {
|
|
|
712
712
|
}
|
|
713
713
|
}
|
|
714
714
|
if (segment.length)
|
|
715
|
-
line.push(new
|
|
715
|
+
line.push(new Int32Array(segment));
|
|
716
716
|
decoded.push(line);
|
|
717
717
|
return decoded;
|
|
718
718
|
}
|
|
@@ -20722,7 +20722,7 @@ function createTransformEmitAsset(assetsById, emitAsset) {
|
|
|
20722
20722
|
};
|
|
20723
20723
|
}
|
|
20724
20724
|
|
|
20725
|
-
var version$1 = "0.67.
|
|
20725
|
+
var version$1 = "0.67.4";
|
|
20726
20726
|
|
|
20727
20727
|
function mkdirpath(path$$1) {
|
|
20728
20728
|
var dir = dirname(path$$1);
|
package/dist/rollup.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v0.67.
|
|
4
|
-
|
|
3
|
+
Rollup.js v0.67.4
|
|
4
|
+
Mon, 03 Dec 2018 06:30:02 GMT - commit 7d1ba815d94141e22d2ed71dd2804708ad45be1d
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
https://github.com/rollup/rollup
|
|
@@ -665,13 +665,13 @@ function decode(mappings) {
|
|
|
665
665
|
var c = mappings.charCodeAt(i);
|
|
666
666
|
if (c === 44) { // ","
|
|
667
667
|
if (segment.length)
|
|
668
|
-
line.push(new
|
|
668
|
+
line.push(new Int32Array(segment));
|
|
669
669
|
segment = [];
|
|
670
670
|
j = 0;
|
|
671
671
|
}
|
|
672
672
|
else if (c === 59) { // ";"
|
|
673
673
|
if (segment.length)
|
|
674
|
-
line.push(new
|
|
674
|
+
line.push(new Int32Array(segment));
|
|
675
675
|
segment = [];
|
|
676
676
|
j = 0;
|
|
677
677
|
decoded.push(line);
|
|
@@ -719,7 +719,7 @@ function decode(mappings) {
|
|
|
719
719
|
}
|
|
720
720
|
}
|
|
721
721
|
if (segment.length)
|
|
722
|
-
line.push(new
|
|
722
|
+
line.push(new Int32Array(segment));
|
|
723
723
|
decoded.push(line);
|
|
724
724
|
return decoded;
|
|
725
725
|
}
|
|
@@ -20729,7 +20729,7 @@ function createTransformEmitAsset(assetsById, emitAsset) {
|
|
|
20729
20729
|
};
|
|
20730
20730
|
}
|
|
20731
20731
|
|
|
20732
|
-
var version$1 = "0.67.
|
|
20732
|
+
var version$1 = "0.67.4";
|
|
20733
20733
|
|
|
20734
20734
|
function mkdirpath(path$$1) {
|
|
20735
20735
|
var dir = path.dirname(path$$1);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rollup",
|
|
3
|
-
"version": "0.67.
|
|
3
|
+
"version": "0.67.4",
|
|
4
4
|
"description": "Next-generation ES module bundler",
|
|
5
5
|
"main": "dist/rollup.js",
|
|
6
6
|
"module": "dist/rollup.es.js",
|
|
@@ -107,7 +107,7 @@
|
|
|
107
107
|
"signal-exit": "^3.0.2",
|
|
108
108
|
"source-map": "^0.6.1",
|
|
109
109
|
"source-map-support": "^0.5.9",
|
|
110
|
-
"sourcemap-codec": "^1.4.
|
|
110
|
+
"sourcemap-codec": "^1.4.4",
|
|
111
111
|
"terser": "^3.8.2",
|
|
112
112
|
"tslib": "^1.9.3",
|
|
113
113
|
"tslint": "^5.11.0",
|