rollup 4.3.0 → 4.3.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.
- package/dist/bin/rollup +2 -2
- 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 +4 -3
- package/dist/es/shared/parseAst.js +3 -3
- package/dist/es/shared/watch.js +2 -2
- 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 +2 -2
- package/dist/shared/loadConfigFile.js +2 -2
- package/dist/shared/parseAst.js +3 -3
- package/dist/shared/rollup.js +4 -3
- package/dist/shared/watch-cli.js +2 -2
- package/dist/shared/watch-proxy.js +2 -2
- package/dist/shared/watch.js +2 -2
- package/package.json +24 -23
package/dist/bin/rollup
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
/*
|
|
3
3
|
@license
|
|
4
|
-
Rollup.js v4.3.
|
|
5
|
-
|
|
4
|
+
Rollup.js v4.3.1
|
|
5
|
+
Sat, 11 Nov 2023 07:57:25 GMT - commit 52c55bb1e17154ae6d01fb40e0e4a3589bc20a8f
|
|
6
6
|
|
|
7
7
|
https://github.com/rollup/rollup
|
|
8
8
|
|
package/dist/es/getLogFilter.js
CHANGED
package/dist/es/parseAst.js
CHANGED
package/dist/es/rollup.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v4.3.
|
|
4
|
-
|
|
3
|
+
Rollup.js v4.3.1
|
|
4
|
+
Sat, 11 Nov 2023 07:57:25 GMT - commit 52c55bb1e17154ae6d01fb40e0e4a3589bc20a8f
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -16,7 +16,7 @@ import { xxhashBase64Url } from '../../native.js';
|
|
|
16
16
|
import { lstat, realpath, readdir, readFile, mkdir, writeFile } from 'node:fs/promises';
|
|
17
17
|
import * as tty from 'tty';
|
|
18
18
|
|
|
19
|
-
var version = "4.3.
|
|
19
|
+
var version = "4.3.1";
|
|
20
20
|
|
|
21
21
|
const comma = ','.charCodeAt(0);
|
|
22
22
|
const semicolon = ';'.charCodeAt(0);
|
|
@@ -19626,6 +19626,7 @@ async function mergeOptions(config, watchMode, rawCommandOptions = EMPTY_COMMAND
|
|
|
19626
19626
|
'environment',
|
|
19627
19627
|
'failAfterWarnings',
|
|
19628
19628
|
'filterLogs',
|
|
19629
|
+
'forceExit',
|
|
19629
19630
|
'plugin',
|
|
19630
19631
|
'silent',
|
|
19631
19632
|
'stdin',
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v4.3.
|
|
4
|
-
|
|
3
|
+
Rollup.js v4.3.1
|
|
4
|
+
Sat, 11 Nov 2023 07:57:25 GMT - commit 52c55bb1e17154ae6d01fb40e0e4a3589bc20a8f
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -335,7 +335,7 @@ const URL_WATCH = 'configuration-options/#watch';
|
|
|
335
335
|
function error(base) {
|
|
336
336
|
if (!(base instanceof Error)) {
|
|
337
337
|
base = Object.assign(new Error(base.message), base);
|
|
338
|
-
Object.defineProperty(base, 'name', { value: 'RollupError' });
|
|
338
|
+
Object.defineProperty(base, 'name', { value: 'RollupError', writable: true });
|
|
339
339
|
}
|
|
340
340
|
throw base;
|
|
341
341
|
}
|
package/dist/es/shared/watch.js
CHANGED
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
package/dist/shared/parseAst.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v4.3.
|
|
4
|
-
|
|
3
|
+
Rollup.js v4.3.1
|
|
4
|
+
Sat, 11 Nov 2023 07:57:25 GMT - commit 52c55bb1e17154ae6d01fb40e0e4a3589bc20a8f
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -277,7 +277,7 @@ const URL_CONFIGURATION_FILES = 'command-line-interface/#configuration-files';
|
|
|
277
277
|
function error(base) {
|
|
278
278
|
if (!(base instanceof Error)) {
|
|
279
279
|
base = Object.assign(new Error(base.message), base);
|
|
280
|
-
Object.defineProperty(base, 'name', { value: 'RollupError' });
|
|
280
|
+
Object.defineProperty(base, 'name', { value: 'RollupError', writable: true });
|
|
281
281
|
}
|
|
282
282
|
throw base;
|
|
283
283
|
}
|
package/dist/shared/rollup.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v4.3.
|
|
4
|
-
|
|
3
|
+
Rollup.js v4.3.1
|
|
4
|
+
Sat, 11 Nov 2023 07:57:25 GMT - commit 52c55bb1e17154ae6d01fb40e0e4a3589bc20a8f
|
|
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 = "4.3.
|
|
34
|
+
var version = "4.3.1";
|
|
35
35
|
|
|
36
36
|
function ensureArray$1(items) {
|
|
37
37
|
if (Array.isArray(items)) {
|
|
@@ -1169,6 +1169,7 @@ async function mergeOptions(config, watchMode, rawCommandOptions = EMPTY_COMMAND
|
|
|
1169
1169
|
'environment',
|
|
1170
1170
|
'failAfterWarnings',
|
|
1171
1171
|
'filterLogs',
|
|
1172
|
+
'forceExit',
|
|
1172
1173
|
'plugin',
|
|
1173
1174
|
'silent',
|
|
1174
1175
|
'stdin',
|
package/dist/shared/watch-cli.js
CHANGED
package/dist/shared/watch.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rollup",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.1",
|
|
4
4
|
"description": "Next-generation ES module bundler",
|
|
5
5
|
"main": "dist/rollup.js",
|
|
6
6
|
"module": "dist/es/rollup.js",
|
|
@@ -100,18 +100,18 @@
|
|
|
100
100
|
"homepage": "https://rollupjs.org/",
|
|
101
101
|
"optionalDependencies": {
|
|
102
102
|
"fsevents": "~2.3.2",
|
|
103
|
-
"@rollup/rollup-darwin-arm64": "4.3.
|
|
104
|
-
"@rollup/rollup-android-arm64": "4.3.
|
|
105
|
-
"@rollup/rollup-win32-arm64-msvc": "4.3.
|
|
106
|
-
"@rollup/rollup-linux-arm64-gnu": "4.3.
|
|
107
|
-
"@rollup/rollup-linux-arm64-musl": "4.3.
|
|
108
|
-
"@rollup/rollup-android-arm-eabi": "4.3.
|
|
109
|
-
"@rollup/rollup-linux-arm-gnueabihf": "4.3.
|
|
110
|
-
"@rollup/rollup-win32-ia32-msvc": "4.3.
|
|
111
|
-
"@rollup/rollup-darwin-x64": "4.3.
|
|
112
|
-
"@rollup/rollup-win32-x64-msvc": "4.3.
|
|
113
|
-
"@rollup/rollup-linux-x64-gnu": "4.3.
|
|
114
|
-
"@rollup/rollup-linux-x64-musl": "4.3.
|
|
103
|
+
"@rollup/rollup-darwin-arm64": "4.3.1",
|
|
104
|
+
"@rollup/rollup-android-arm64": "4.3.1",
|
|
105
|
+
"@rollup/rollup-win32-arm64-msvc": "4.3.1",
|
|
106
|
+
"@rollup/rollup-linux-arm64-gnu": "4.3.1",
|
|
107
|
+
"@rollup/rollup-linux-arm64-musl": "4.3.1",
|
|
108
|
+
"@rollup/rollup-android-arm-eabi": "4.3.1",
|
|
109
|
+
"@rollup/rollup-linux-arm-gnueabihf": "4.3.1",
|
|
110
|
+
"@rollup/rollup-win32-ia32-msvc": "4.3.1",
|
|
111
|
+
"@rollup/rollup-darwin-x64": "4.3.1",
|
|
112
|
+
"@rollup/rollup-win32-x64-msvc": "4.3.1",
|
|
113
|
+
"@rollup/rollup-linux-x64-gnu": "4.3.1",
|
|
114
|
+
"@rollup/rollup-linux-x64-musl": "4.3.1"
|
|
115
115
|
},
|
|
116
116
|
"devDependenciesComments": {
|
|
117
117
|
"@rollup/plugin-typescript": "It appears that 11.1.3 breaks sourcemaps"
|
|
@@ -122,10 +122,10 @@
|
|
|
122
122
|
"@codemirror/language": "^6.9.2",
|
|
123
123
|
"@codemirror/search": "^6.5.4",
|
|
124
124
|
"@codemirror/state": "^6.3.1",
|
|
125
|
-
"@codemirror/view": "^6.
|
|
125
|
+
"@codemirror/view": "^6.22.0",
|
|
126
126
|
"@jridgewell/sourcemap-codec": "^1.4.15",
|
|
127
127
|
"@mermaid-js/mermaid-cli": "^10.6.0",
|
|
128
|
-
"@napi-rs/cli": "^2.16.
|
|
128
|
+
"@napi-rs/cli": "^2.16.5",
|
|
129
129
|
"@rollup/plugin-alias": "^5.0.1",
|
|
130
130
|
"@rollup/plugin-buble": "^1.0.3",
|
|
131
131
|
"@rollup/plugin-commonjs": "^25.0.7",
|
|
@@ -135,12 +135,12 @@
|
|
|
135
135
|
"@rollup/plugin-terser": "^0.4.4",
|
|
136
136
|
"@rollup/plugin-typescript": "11.1.5",
|
|
137
137
|
"@rollup/pluginutils": "^5.0.5",
|
|
138
|
-
"@types/estree": "1.0.
|
|
138
|
+
"@types/estree": "1.0.5",
|
|
139
139
|
"@types/mocha": "^10.0.3",
|
|
140
140
|
"@types/node": "18.0.0",
|
|
141
141
|
"@types/yargs-parser": "^21.0.2",
|
|
142
|
-
"@typescript-eslint/eslint-plugin": "^6.
|
|
143
|
-
"@typescript-eslint/parser": "^6.
|
|
142
|
+
"@typescript-eslint/eslint-plugin": "^6.10.0",
|
|
143
|
+
"@typescript-eslint/parser": "^6.10.0",
|
|
144
144
|
"@vue/eslint-config-prettier": "^8.0.0",
|
|
145
145
|
"@vue/eslint-config-typescript": "^12.0.0",
|
|
146
146
|
"acorn": "^8.11.2",
|
|
@@ -154,7 +154,7 @@
|
|
|
154
154
|
"date-time": "^4.0.0",
|
|
155
155
|
"es5-shim": "^4.6.7",
|
|
156
156
|
"es6-shim": "^0.35.8",
|
|
157
|
-
"eslint": "^8.
|
|
157
|
+
"eslint": "^8.53.0",
|
|
158
158
|
"eslint-config-prettier": "^9.0.0",
|
|
159
159
|
"eslint-plugin-import": "^2.29.0",
|
|
160
160
|
"eslint-plugin-prettier": "^5.0.1",
|
|
@@ -177,7 +177,7 @@
|
|
|
177
177
|
"pretty-bytes": "^6.1.1",
|
|
178
178
|
"pretty-ms": "^8.0.0",
|
|
179
179
|
"requirejs": "^2.3.6",
|
|
180
|
-
"rollup": "^4.
|
|
180
|
+
"rollup": "^4.3.0",
|
|
181
181
|
"rollup-plugin-license": "^3.2.0",
|
|
182
182
|
"rollup-plugin-string": "^3.0.0",
|
|
183
183
|
"rollup-plugin-thatworks": "^1.0.4",
|
|
@@ -187,17 +187,18 @@
|
|
|
187
187
|
"source-map": "^0.7.4",
|
|
188
188
|
"source-map-support": "^0.5.21",
|
|
189
189
|
"systemjs": "^6.14.2",
|
|
190
|
-
"terser": "^5.
|
|
190
|
+
"terser": "^5.24.0",
|
|
191
191
|
"tslib": "^2.6.2",
|
|
192
192
|
"typescript": "^5.2.2",
|
|
193
193
|
"vite": "^4.5.0",
|
|
194
|
-
"vitepress": "^1.0.0-rc.
|
|
195
|
-
"vue": "^3.3.
|
|
194
|
+
"vitepress": "^1.0.0-rc.25",
|
|
195
|
+
"vue": "^3.3.8",
|
|
196
196
|
"wasm-pack": "^0.12.1",
|
|
197
197
|
"weak-napi": "^2.0.2",
|
|
198
198
|
"yargs-parser": "^21.1.1"
|
|
199
199
|
},
|
|
200
200
|
"overrides": {
|
|
201
|
+
"axios": "^1.6.0",
|
|
201
202
|
"semver": "^7.5.4"
|
|
202
203
|
},
|
|
203
204
|
"files": [
|