@rollup/wasm-node 4.62.4 → 4.63.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.
- package/dist/bin/rollup +3 -3
- package/dist/es/getLogFilter.js +2 -2
- package/dist/es/parseAst.js +2 -2
- package/dist/es/rollup.js +2 -2
- package/dist/es/shared/node-entry.js +303 -174
- package/dist/es/shared/parseAst.js +2 -2
- package/dist/es/shared/watch.js +6 -54
- package/dist/getLogFilter.js +2 -2
- package/dist/loadConfigFile.js +2 -2
- package/dist/parseAst.js +2 -2
- package/dist/rollup.js +2 -2
- package/dist/shared/fsevents-importer.js +2 -2
- package/dist/shared/index.js +6 -54
- package/dist/shared/loadConfigFile.js +2 -2
- package/dist/shared/parseAst.js +2 -2
- package/dist/shared/rollup.js +302 -173
- package/dist/shared/watch-cli.js +2 -2
- package/dist/shared/watch.js +2 -2
- package/dist/wasm-node/bindings_wasm.js +4 -4
- package/dist/wasm-node/bindings_wasm_bg.wasm +0 -0
- package/package.json +21 -21
package/dist/es/shared/watch.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v4.
|
|
4
|
-
|
|
3
|
+
Rollup.js v4.63.0
|
|
4
|
+
Tue, 25 Aug 2026 13:03:35 GMT - commit 34b8b924c815ec9413d7821f6fd54cc615584a51
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -1198,33 +1198,9 @@ function requireParse$2 () {
|
|
|
1198
1198
|
};
|
|
1199
1199
|
|
|
1200
1200
|
const extglobClose = token => {
|
|
1201
|
-
|
|
1201
|
+
input.slice(token.startIndex, state.index + 1);
|
|
1202
1202
|
const body = input.slice(token.startIndex + 2, state.index);
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
if ((token.type === 'plus' || token.type === 'star') && analysis.risky) {
|
|
1206
|
-
const safeOutput = analysis.safeOutput
|
|
1207
|
-
? (token.output ? '' : ONE_CHAR) + (opts.capture ? `(${analysis.safeOutput})` : analysis.safeOutput)
|
|
1208
|
-
: undefined;
|
|
1209
|
-
const open = tokens[token.tokensIndex];
|
|
1210
|
-
|
|
1211
|
-
open.type = 'text';
|
|
1212
|
-
open.value = literal;
|
|
1213
|
-
open.output = safeOutput || utils.escapeRegex(literal);
|
|
1214
|
-
|
|
1215
|
-
for (let i = token.tokensIndex + 1; i < tokens.length; i++) {
|
|
1216
|
-
tokens[i].value = '';
|
|
1217
|
-
tokens[i].output = '';
|
|
1218
|
-
delete tokens[i].suffix;
|
|
1219
|
-
}
|
|
1220
|
-
|
|
1221
|
-
state.output = token.output + open.output;
|
|
1222
|
-
state.backtrack = true;
|
|
1223
|
-
|
|
1224
|
-
push({ type: 'paren', extglob: true, value, output: '' });
|
|
1225
|
-
decrement('parens');
|
|
1226
|
-
return;
|
|
1227
|
-
}
|
|
1203
|
+
analyzeRepeatedExtglob(body, opts);
|
|
1228
1204
|
|
|
1229
1205
|
let output = token.close + (opts.capture ? ')' : '');
|
|
1230
1206
|
let rest;
|
|
@@ -3915,33 +3891,9 @@ function requireParse$1 () {
|
|
|
3915
3891
|
};
|
|
3916
3892
|
|
|
3917
3893
|
const extglobClose = token => {
|
|
3918
|
-
|
|
3894
|
+
input.slice(token.startIndex, state.index + 1);
|
|
3919
3895
|
const body = input.slice(token.startIndex + 2, state.index);
|
|
3920
|
-
|
|
3921
|
-
|
|
3922
|
-
if ((token.type === 'plus' || token.type === 'star') && analysis.risky) {
|
|
3923
|
-
const safeOutput = analysis.safeOutput
|
|
3924
|
-
? (token.output ? '' : ONE_CHAR) + (opts.capture ? `(${analysis.safeOutput})` : analysis.safeOutput)
|
|
3925
|
-
: undefined;
|
|
3926
|
-
const open = tokens[token.tokensIndex];
|
|
3927
|
-
|
|
3928
|
-
open.type = 'text';
|
|
3929
|
-
open.value = literal;
|
|
3930
|
-
open.output = safeOutput || utils.escapeRegex(literal);
|
|
3931
|
-
|
|
3932
|
-
for (let i = token.tokensIndex + 1; i < tokens.length; i++) {
|
|
3933
|
-
tokens[i].value = '';
|
|
3934
|
-
tokens[i].output = '';
|
|
3935
|
-
delete tokens[i].suffix;
|
|
3936
|
-
}
|
|
3937
|
-
|
|
3938
|
-
state.output = token.output + open.output;
|
|
3939
|
-
state.backtrack = true;
|
|
3940
|
-
|
|
3941
|
-
push({ type: 'paren', extglob: true, value, output: '' });
|
|
3942
|
-
decrement('parens');
|
|
3943
|
-
return;
|
|
3944
|
-
}
|
|
3896
|
+
analyzeRepeatedExtglob(body, opts);
|
|
3945
3897
|
|
|
3946
3898
|
let output = token.close + (opts.capture ? ')' : '');
|
|
3947
3899
|
let rest;
|
package/dist/getLogFilter.js
CHANGED
package/dist/loadConfigFile.js
CHANGED
package/dist/parseAst.js
CHANGED
package/dist/rollup.js
CHANGED
package/dist/shared/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v4.
|
|
4
|
-
|
|
3
|
+
Rollup.js v4.63.0
|
|
4
|
+
Tue, 25 Aug 2026 13:03:35 GMT - commit 34b8b924c815ec9413d7821f6fd54cc615584a51
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -1194,33 +1194,9 @@ function requireParse$2 () {
|
|
|
1194
1194
|
};
|
|
1195
1195
|
|
|
1196
1196
|
const extglobClose = token => {
|
|
1197
|
-
|
|
1197
|
+
input.slice(token.startIndex, state.index + 1);
|
|
1198
1198
|
const body = input.slice(token.startIndex + 2, state.index);
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
if ((token.type === 'plus' || token.type === 'star') && analysis.risky) {
|
|
1202
|
-
const safeOutput = analysis.safeOutput
|
|
1203
|
-
? (token.output ? '' : ONE_CHAR) + (opts.capture ? `(${analysis.safeOutput})` : analysis.safeOutput)
|
|
1204
|
-
: undefined;
|
|
1205
|
-
const open = tokens[token.tokensIndex];
|
|
1206
|
-
|
|
1207
|
-
open.type = 'text';
|
|
1208
|
-
open.value = literal;
|
|
1209
|
-
open.output = safeOutput || utils.escapeRegex(literal);
|
|
1210
|
-
|
|
1211
|
-
for (let i = token.tokensIndex + 1; i < tokens.length; i++) {
|
|
1212
|
-
tokens[i].value = '';
|
|
1213
|
-
tokens[i].output = '';
|
|
1214
|
-
delete tokens[i].suffix;
|
|
1215
|
-
}
|
|
1216
|
-
|
|
1217
|
-
state.output = token.output + open.output;
|
|
1218
|
-
state.backtrack = true;
|
|
1219
|
-
|
|
1220
|
-
push({ type: 'paren', extglob: true, value, output: '' });
|
|
1221
|
-
decrement('parens');
|
|
1222
|
-
return;
|
|
1223
|
-
}
|
|
1199
|
+
analyzeRepeatedExtglob(body, opts);
|
|
1224
1200
|
|
|
1225
1201
|
let output = token.close + (opts.capture ? ')' : '');
|
|
1226
1202
|
let rest;
|
|
@@ -3911,33 +3887,9 @@ function requireParse$1 () {
|
|
|
3911
3887
|
};
|
|
3912
3888
|
|
|
3913
3889
|
const extglobClose = token => {
|
|
3914
|
-
|
|
3890
|
+
input.slice(token.startIndex, state.index + 1);
|
|
3915
3891
|
const body = input.slice(token.startIndex + 2, state.index);
|
|
3916
|
-
|
|
3917
|
-
|
|
3918
|
-
if ((token.type === 'plus' || token.type === 'star') && analysis.risky) {
|
|
3919
|
-
const safeOutput = analysis.safeOutput
|
|
3920
|
-
? (token.output ? '' : ONE_CHAR) + (opts.capture ? `(${analysis.safeOutput})` : analysis.safeOutput)
|
|
3921
|
-
: undefined;
|
|
3922
|
-
const open = tokens[token.tokensIndex];
|
|
3923
|
-
|
|
3924
|
-
open.type = 'text';
|
|
3925
|
-
open.value = literal;
|
|
3926
|
-
open.output = safeOutput || utils.escapeRegex(literal);
|
|
3927
|
-
|
|
3928
|
-
for (let i = token.tokensIndex + 1; i < tokens.length; i++) {
|
|
3929
|
-
tokens[i].value = '';
|
|
3930
|
-
tokens[i].output = '';
|
|
3931
|
-
delete tokens[i].suffix;
|
|
3932
|
-
}
|
|
3933
|
-
|
|
3934
|
-
state.output = token.output + open.output;
|
|
3935
|
-
state.backtrack = true;
|
|
3936
|
-
|
|
3937
|
-
push({ type: 'paren', extglob: true, value, output: '' });
|
|
3938
|
-
decrement('parens');
|
|
3939
|
-
return;
|
|
3940
|
-
}
|
|
3892
|
+
analyzeRepeatedExtglob(body, opts);
|
|
3941
3893
|
|
|
3942
3894
|
let output = token.close + (opts.capture ? ')' : '');
|
|
3943
3895
|
let rest;
|
package/dist/shared/parseAst.js
CHANGED