rollup 3.21.4 → 3.21.6
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/bin/rollup +6 -3
- package/dist/es/rollup.js +2 -2
- package/dist/es/shared/node-entry.js +17 -3
- package/dist/es/shared/watch.js +2 -2
- package/dist/loadConfigFile.js +2 -2
- package/dist/rollup.js +2 -2
- package/dist/shared/fsevents-importer.js +2 -2
- package/dist/shared/index.js +2 -2
- package/dist/shared/loadConfigFile.js +2 -2
- package/dist/shared/rollup.js +17 -3
- package/dist/shared/watch-cli.js +5 -2
- package/dist/shared/watch-proxy.js +2 -2
- package/dist/shared/watch.js +2 -2
- package/package.json +9 -12
package/dist/bin/rollup
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
/*
|
|
4
4
|
@license
|
|
5
|
-
Rollup.js v3.21.
|
|
6
|
-
|
|
5
|
+
Rollup.js v3.21.6
|
|
6
|
+
Tue, 09 May 2023 20:05:04 GMT - commit fa5af3756fbabec7e9a5d082550c710c491e85e9
|
|
7
7
|
|
|
8
8
|
https://github.com/rollup/rollup
|
|
9
9
|
|
|
@@ -1705,7 +1705,10 @@ else {
|
|
|
1705
1705
|
catch {
|
|
1706
1706
|
// do nothing
|
|
1707
1707
|
}
|
|
1708
|
-
runRollup(command).then(() =>
|
|
1708
|
+
runRollup(command).then(() => {
|
|
1709
|
+
process$1.stdout.on('finish', () => process$1.exit(0));
|
|
1710
|
+
process$1.stdout.end();
|
|
1711
|
+
});
|
|
1709
1712
|
}
|
|
1710
1713
|
|
|
1711
1714
|
exports.getConfigPath = getConfigPath;
|
package/dist/es/rollup.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v3.21.
|
|
4
|
-
|
|
3
|
+
Rollup.js v3.21.6
|
|
4
|
+
Tue, 09 May 2023 20:05:04 GMT - commit fa5af3756fbabec7e9a5d082550c710c491e85e9
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -16,7 +16,7 @@ import { lstat, realpath, readdir, readFile, mkdir, writeFile } from 'node:fs/pr
|
|
|
16
16
|
import { EventEmitter } from 'node:events';
|
|
17
17
|
import * as tty from 'tty';
|
|
18
18
|
|
|
19
|
-
var version$1 = "3.21.
|
|
19
|
+
var version$1 = "3.21.6";
|
|
20
20
|
|
|
21
21
|
const comma = ','.charCodeAt(0);
|
|
22
22
|
const semicolon = ';'.charCodeAt(0);
|
|
@@ -5264,6 +5264,7 @@ function getMemberReturnExpressionWhenCalled(members, memberName) {
|
|
|
5264
5264
|
|
|
5265
5265
|
// AST walker module for Mozilla Parser API compatible trees
|
|
5266
5266
|
|
|
5267
|
+
|
|
5267
5268
|
function skipThrough(node, st, c) { c(node, st); }
|
|
5268
5269
|
function ignore(_node, _st, _c) {}
|
|
5269
5270
|
|
|
@@ -11862,6 +11863,14 @@ class Program extends NodeBase {
|
|
|
11862
11863
|
code.remove(0, start);
|
|
11863
11864
|
}
|
|
11864
11865
|
if (this.body.length > 0) {
|
|
11866
|
+
// Keep all consecutive lines that start with a comment
|
|
11867
|
+
while (code.original[start] === '/' && /[*/]/.test(code.original[start + 1])) {
|
|
11868
|
+
const firstLineBreak = findFirstLineBreakOutsideComment(code.original.slice(start, this.body[0].start));
|
|
11869
|
+
if (firstLineBreak[0] === -1) {
|
|
11870
|
+
break;
|
|
11871
|
+
}
|
|
11872
|
+
start += firstLineBreak[1];
|
|
11873
|
+
}
|
|
11865
11874
|
renderStatementList(this.body, code, start, this.end, options);
|
|
11866
11875
|
}
|
|
11867
11876
|
else {
|
|
@@ -12105,6 +12114,7 @@ SwitchCase.prototype.needsBoundaries = true;
|
|
|
12105
12114
|
|
|
12106
12115
|
class SwitchStatement extends NodeBase {
|
|
12107
12116
|
createScope(parentScope) {
|
|
12117
|
+
this.parentScope = parentScope;
|
|
12108
12118
|
this.scope = new BlockScope(parentScope);
|
|
12109
12119
|
}
|
|
12110
12120
|
hasEffects(context) {
|
|
@@ -12173,6 +12183,10 @@ class SwitchStatement extends NodeBase {
|
|
|
12173
12183
|
}
|
|
12174
12184
|
this.defaultCase = null;
|
|
12175
12185
|
}
|
|
12186
|
+
parseNode(esTreeNode) {
|
|
12187
|
+
this.discriminant = new (this.context.getNodeConstructor(esTreeNode.discriminant.type))(esTreeNode.discriminant, this, this.parentScope);
|
|
12188
|
+
super.parseNode(esTreeNode);
|
|
12189
|
+
}
|
|
12176
12190
|
render(code, options) {
|
|
12177
12191
|
this.discriminant.render(code, options);
|
|
12178
12192
|
if (this.cases.length > 0) {
|
package/dist/es/shared/watch.js
CHANGED
package/dist/loadConfigFile.js
CHANGED
package/dist/rollup.js
CHANGED
package/dist/shared/index.js
CHANGED
package/dist/shared/rollup.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v3.21.
|
|
4
|
-
|
|
3
|
+
Rollup.js v3.21.6
|
|
4
|
+
Tue, 09 May 2023 20:05:04 GMT - commit fa5af3756fbabec7e9a5d082550c710c491e85e9
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -31,7 +31,7 @@ function _interopNamespaceDefault(e) {
|
|
|
31
31
|
|
|
32
32
|
const tty__namespace = /*#__PURE__*/_interopNamespaceDefault(tty);
|
|
33
33
|
|
|
34
|
-
var version$1 = "3.21.
|
|
34
|
+
var version$1 = "3.21.6";
|
|
35
35
|
|
|
36
36
|
function ensureArray$1(items) {
|
|
37
37
|
if (Array.isArray(items)) {
|
|
@@ -5759,6 +5759,7 @@ function getMemberReturnExpressionWhenCalled(members, memberName) {
|
|
|
5759
5759
|
|
|
5760
5760
|
// AST walker module for Mozilla Parser API compatible trees
|
|
5761
5761
|
|
|
5762
|
+
|
|
5762
5763
|
function skipThrough(node, st, c) { c(node, st); }
|
|
5763
5764
|
function ignore(_node, _st, _c) {}
|
|
5764
5765
|
|
|
@@ -12357,6 +12358,14 @@ class Program extends NodeBase {
|
|
|
12357
12358
|
code.remove(0, start);
|
|
12358
12359
|
}
|
|
12359
12360
|
if (this.body.length > 0) {
|
|
12361
|
+
// Keep all consecutive lines that start with a comment
|
|
12362
|
+
while (code.original[start] === '/' && /[*/]/.test(code.original[start + 1])) {
|
|
12363
|
+
const firstLineBreak = findFirstLineBreakOutsideComment(code.original.slice(start, this.body[0].start));
|
|
12364
|
+
if (firstLineBreak[0] === -1) {
|
|
12365
|
+
break;
|
|
12366
|
+
}
|
|
12367
|
+
start += firstLineBreak[1];
|
|
12368
|
+
}
|
|
12360
12369
|
renderStatementList(this.body, code, start, this.end, options);
|
|
12361
12370
|
}
|
|
12362
12371
|
else {
|
|
@@ -12600,6 +12609,7 @@ SwitchCase.prototype.needsBoundaries = true;
|
|
|
12600
12609
|
|
|
12601
12610
|
class SwitchStatement extends NodeBase {
|
|
12602
12611
|
createScope(parentScope) {
|
|
12612
|
+
this.parentScope = parentScope;
|
|
12603
12613
|
this.scope = new BlockScope(parentScope);
|
|
12604
12614
|
}
|
|
12605
12615
|
hasEffects(context) {
|
|
@@ -12668,6 +12678,10 @@ class SwitchStatement extends NodeBase {
|
|
|
12668
12678
|
}
|
|
12669
12679
|
this.defaultCase = null;
|
|
12670
12680
|
}
|
|
12681
|
+
parseNode(esTreeNode) {
|
|
12682
|
+
this.discriminant = new (this.context.getNodeConstructor(esTreeNode.discriminant.type))(esTreeNode.discriminant, this, this.parentScope);
|
|
12683
|
+
super.parseNode(esTreeNode);
|
|
12684
|
+
}
|
|
12671
12685
|
render(code, options) {
|
|
12672
12686
|
this.discriminant.render(code, options);
|
|
12673
12687
|
if (this.cases.length > 0) {
|
package/dist/shared/watch-cli.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v3.21.
|
|
4
|
-
|
|
3
|
+
Rollup.js v3.21.6
|
|
4
|
+
Tue, 09 May 2023 20:05:04 GMT - commit fa5af3756fbabec7e9a5d082550c710c491e85e9
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -111,6 +111,9 @@ if (process.platform === 'linux') {
|
|
|
111
111
|
}
|
|
112
112
|
|
|
113
113
|
// Note: since nyc uses this module to output coverage, any lines
|
|
114
|
+
// that are in the direct sync flow of nyc's outputCoverage are
|
|
115
|
+
// ignored, since we can never get coverage for them.
|
|
116
|
+
// grab a reference to node's real process object right away
|
|
114
117
|
const processOk = (process) => !!process &&
|
|
115
118
|
typeof process === 'object' &&
|
|
116
119
|
typeof process.removeListener === 'function' &&
|
package/dist/shared/watch.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rollup",
|
|
3
|
-
"version": "3.21.
|
|
3
|
+
"version": "3.21.6",
|
|
4
4
|
"description": "Next-generation ES module bundler",
|
|
5
5
|
"main": "dist/rollup.js",
|
|
6
6
|
"module": "dist/es/rollup.js",
|
|
@@ -63,12 +63,12 @@
|
|
|
63
63
|
"fsevents": "~2.3.2"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
|
-
"@codemirror/commands": "^6.2.
|
|
66
|
+
"@codemirror/commands": "^6.2.4",
|
|
67
67
|
"@codemirror/lang-javascript": "^6.1.7",
|
|
68
68
|
"@codemirror/language": "^6.6.0",
|
|
69
69
|
"@codemirror/search": "^6.4.0",
|
|
70
70
|
"@codemirror/state": "^6.2.0",
|
|
71
|
-
"@codemirror/view": "^6.
|
|
71
|
+
"@codemirror/view": "^6.11.0",
|
|
72
72
|
"@jridgewell/sourcemap-codec": "^1.4.15",
|
|
73
73
|
"@mermaid-js/mermaid-cli": "^10.1.0",
|
|
74
74
|
"@rollup/plugin-alias": "^5.0.0",
|
|
@@ -82,10 +82,10 @@
|
|
|
82
82
|
"@rollup/pluginutils": "^5.0.2",
|
|
83
83
|
"@types/estree": "1.0.1",
|
|
84
84
|
"@types/mocha": "^10.0.1",
|
|
85
|
-
"@types/node": "~14.18.
|
|
85
|
+
"@types/node": "~14.18.43",
|
|
86
86
|
"@types/yargs-parser": "^21.0.0",
|
|
87
|
-
"@typescript-eslint/eslint-plugin": "^5.59.
|
|
88
|
-
"@typescript-eslint/parser": "^5.59.
|
|
87
|
+
"@typescript-eslint/eslint-plugin": "^5.59.2",
|
|
88
|
+
"@typescript-eslint/parser": "^5.59.2",
|
|
89
89
|
"@vue/eslint-config-prettier": "^7.1.0",
|
|
90
90
|
"@vue/eslint-config-typescript": "^11.0.3",
|
|
91
91
|
"acorn": "^8.8.2",
|
|
@@ -115,7 +115,7 @@
|
|
|
115
115
|
"husky": "^8.0.3",
|
|
116
116
|
"inquirer": "^9.2.0",
|
|
117
117
|
"is-reference": "^3.0.1",
|
|
118
|
-
"lint-staged": "^13.2.
|
|
118
|
+
"lint-staged": "^13.2.2",
|
|
119
119
|
"locate-character": "^2.0.5",
|
|
120
120
|
"magic-string": "^0.30.0",
|
|
121
121
|
"mocha": "^10.2.0",
|
|
@@ -125,7 +125,7 @@
|
|
|
125
125
|
"pretty-bytes": "^6.1.0",
|
|
126
126
|
"pretty-ms": "^8.0.0",
|
|
127
127
|
"requirejs": "^2.3.6",
|
|
128
|
-
"rollup": "^3.21.
|
|
128
|
+
"rollup": "^3.21.3",
|
|
129
129
|
"rollup-plugin-license": "^3.0.1",
|
|
130
130
|
"rollup-plugin-string": "^3.0.0",
|
|
131
131
|
"rollup-plugin-thatworks": "^1.0.4",
|
|
@@ -138,14 +138,11 @@
|
|
|
138
138
|
"terser": "^5.17.1",
|
|
139
139
|
"tslib": "^2.5.0",
|
|
140
140
|
"typescript": "^5.0.4",
|
|
141
|
-
"vitepress": "^1.0.0-alpha.
|
|
141
|
+
"vitepress": "^1.0.0-alpha.75",
|
|
142
142
|
"vue": "^3.2.47",
|
|
143
143
|
"weak-napi": "^2.0.2",
|
|
144
144
|
"yargs-parser": "^21.1.1"
|
|
145
145
|
},
|
|
146
|
-
"overrides": {
|
|
147
|
-
"d3": "7.8.0"
|
|
148
|
-
},
|
|
149
146
|
"files": [
|
|
150
147
|
"dist/**/*.js",
|
|
151
148
|
"dist/*.d.ts",
|