rollup 4.13.0 → 4.13.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/LICENSE.md +2 -1
- 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 +3 -3
- package/dist/es/shared/parseAst.js +2 -2
- package/dist/es/shared/watch.js +5 -2
- package/dist/getLogFilter.js +2 -2
- package/dist/loadConfigFile.js +2 -2
- package/dist/native.js +1 -0
- 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 +5 -2
- package/dist/shared/loadConfigFile.js +2 -2
- package/dist/shared/parseAst.js +2 -2
- package/dist/shared/rollup.js +3 -3
- package/dist/shared/watch-cli.js +2 -2
- package/dist/shared/watch.js +2 -2
- package/package.json +30 -29
package/LICENSE.md
CHANGED
|
@@ -104,7 +104,8 @@ Repository: sindresorhus/binary-extensions
|
|
|
104
104
|
|
|
105
105
|
> MIT License
|
|
106
106
|
>
|
|
107
|
-
> Copyright (c)
|
|
107
|
+
> Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
108
|
+
> Copyright (c) Paul Miller (https://paulmillr.com)
|
|
108
109
|
>
|
|
109
110
|
> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
110
111
|
>
|
package/dist/bin/rollup
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
/*
|
|
3
3
|
@license
|
|
4
|
-
Rollup.js v4.13.
|
|
5
|
-
|
|
4
|
+
Rollup.js v4.13.1
|
|
5
|
+
Wed, 27 Mar 2024 10:27:07 GMT - commit fffaedeaa1cf9c8f6efc93d53bb8a81738e0ce87
|
|
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.13.
|
|
4
|
-
|
|
3
|
+
Rollup.js v4.13.1
|
|
4
|
+
Wed, 27 Mar 2024 10:27:07 GMT - commit fffaedeaa1cf9c8f6efc93d53bb8a81738e0ce87
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -16,7 +16,7 @@ import { performance } from 'node:perf_hooks';
|
|
|
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.13.
|
|
19
|
+
var version = "4.13.1";
|
|
20
20
|
|
|
21
21
|
const comma = ','.charCodeAt(0);
|
|
22
22
|
const semicolon = ';'.charCodeAt(0);
|
package/dist/es/shared/watch.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v4.13.
|
|
4
|
-
|
|
3
|
+
Rollup.js v4.13.1
|
|
4
|
+
Wed, 27 Mar 2024 10:27:07 GMT - commit fffaedeaa1cf9c8f6efc93d53bb8a81738e0ce87
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -2098,6 +2098,9 @@ const require$$0 = [
|
|
|
2098
2098
|
"a",
|
|
2099
2099
|
"aac",
|
|
2100
2100
|
"adp",
|
|
2101
|
+
"afdesign",
|
|
2102
|
+
"afphoto",
|
|
2103
|
+
"afpub",
|
|
2101
2104
|
"ai",
|
|
2102
2105
|
"aif",
|
|
2103
2106
|
"aiff",
|
package/dist/getLogFilter.js
CHANGED
package/dist/loadConfigFile.js
CHANGED
package/dist/native.js
CHANGED
|
@@ -17,6 +17,7 @@ const bindingsByPlatformAndArch = {
|
|
|
17
17
|
arm: { base: 'linux-arm-gnueabihf', musl: null },
|
|
18
18
|
arm64: { base: 'linux-arm64-gnu', musl: 'linux-arm64-musl' },
|
|
19
19
|
riscv64: { base: 'linux-riscv64-gnu', musl: null },
|
|
20
|
+
s390x: { base: 'linux-s390x-gnu', musl: null },
|
|
20
21
|
x64: { base: 'linux-x64-gnu', musl: 'linux-x64-musl' }
|
|
21
22
|
},
|
|
22
23
|
win32: {
|
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.13.
|
|
4
|
-
|
|
3
|
+
Rollup.js v4.13.1
|
|
4
|
+
Wed, 27 Mar 2024 10:27:07 GMT - commit fffaedeaa1cf9c8f6efc93d53bb8a81738e0ce87
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -2093,6 +2093,9 @@ const require$$0 = [
|
|
|
2093
2093
|
"a",
|
|
2094
2094
|
"aac",
|
|
2095
2095
|
"adp",
|
|
2096
|
+
"afdesign",
|
|
2097
|
+
"afphoto",
|
|
2098
|
+
"afpub",
|
|
2096
2099
|
"ai",
|
|
2097
2100
|
"aif",
|
|
2098
2101
|
"aiff",
|
package/dist/shared/parseAst.js
CHANGED
package/dist/shared/rollup.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v4.13.
|
|
4
|
-
|
|
3
|
+
Rollup.js v4.13.1
|
|
4
|
+
Wed, 27 Mar 2024 10:27:07 GMT - commit fffaedeaa1cf9c8f6efc93d53bb8a81738e0ce87
|
|
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.13.
|
|
34
|
+
var version = "4.13.1";
|
|
35
35
|
|
|
36
36
|
function ensureArray$1(items) {
|
|
37
37
|
if (Array.isArray(items)) {
|
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.13.
|
|
3
|
+
"version": "4.13.1",
|
|
4
4
|
"description": "Next-generation ES module bundler",
|
|
5
5
|
"main": "dist/rollup.js",
|
|
6
6
|
"module": "dist/es/rollup.js",
|
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
"armv7-unknown-linux-gnueabihf",
|
|
26
26
|
"i686-pc-windows-msvc",
|
|
27
27
|
"riscv64gc-unknown-linux-gnu",
|
|
28
|
+
"s390x-unknown-linux-gnu",
|
|
28
29
|
"x86_64-apple-darwin",
|
|
29
30
|
"x86_64-pc-windows-msvc",
|
|
30
31
|
"x86_64-unknown-linux-gnu",
|
|
@@ -101,26 +102,26 @@
|
|
|
101
102
|
"homepage": "https://rollupjs.org/",
|
|
102
103
|
"optionalDependencies": {
|
|
103
104
|
"fsevents": "~2.3.2",
|
|
104
|
-
"@rollup/rollup-darwin-arm64": "4.13.
|
|
105
|
-
"@rollup/rollup-android-arm64": "4.13.
|
|
106
|
-
"@rollup/rollup-win32-arm64-msvc": "4.13.
|
|
107
|
-
"@rollup/rollup-linux-arm64-gnu": "4.13.
|
|
108
|
-
"@rollup/rollup-linux-arm64-musl": "4.13.
|
|
109
|
-
"@rollup/rollup-android-arm-eabi": "4.13.
|
|
110
|
-
"@rollup/rollup-linux-arm-gnueabihf": "4.13.
|
|
111
|
-
"@rollup/rollup-win32-ia32-msvc": "4.13.
|
|
112
|
-
"@rollup/rollup-linux-riscv64-gnu": "4.13.
|
|
113
|
-
"@rollup/rollup-
|
|
114
|
-
"@rollup/rollup-
|
|
115
|
-
"@rollup/rollup-
|
|
116
|
-
"@rollup/rollup-linux-x64-
|
|
105
|
+
"@rollup/rollup-darwin-arm64": "4.13.1",
|
|
106
|
+
"@rollup/rollup-android-arm64": "4.13.1",
|
|
107
|
+
"@rollup/rollup-win32-arm64-msvc": "4.13.1",
|
|
108
|
+
"@rollup/rollup-linux-arm64-gnu": "4.13.1",
|
|
109
|
+
"@rollup/rollup-linux-arm64-musl": "4.13.1",
|
|
110
|
+
"@rollup/rollup-android-arm-eabi": "4.13.1",
|
|
111
|
+
"@rollup/rollup-linux-arm-gnueabihf": "4.13.1",
|
|
112
|
+
"@rollup/rollup-win32-ia32-msvc": "4.13.1",
|
|
113
|
+
"@rollup/rollup-linux-riscv64-gnu": "4.13.1",
|
|
114
|
+
"@rollup/rollup-linux-s390x-gnu": "4.13.1",
|
|
115
|
+
"@rollup/rollup-darwin-x64": "4.13.1",
|
|
116
|
+
"@rollup/rollup-win32-x64-msvc": "4.13.1",
|
|
117
|
+
"@rollup/rollup-linux-x64-gnu": "4.13.1",
|
|
118
|
+
"@rollup/rollup-linux-x64-musl": "4.13.1"
|
|
117
119
|
},
|
|
118
120
|
"dependencies": {
|
|
119
121
|
"@types/estree": "1.0.5"
|
|
120
122
|
},
|
|
121
123
|
"devDependenciesComments": {
|
|
122
124
|
"@types/node": "Version 18.19.0 breaks chokidar and vite types",
|
|
123
|
-
"vitepress": "Version 1.0.0-rc.40 breaks npm run dev",
|
|
124
125
|
"core-js": "We only update manually as every update requires a snapshot update"
|
|
125
126
|
},
|
|
126
127
|
"devDependencies": {
|
|
@@ -129,7 +130,7 @@
|
|
|
129
130
|
"@codemirror/language": "^6.10.1",
|
|
130
131
|
"@codemirror/search": "^6.5.6",
|
|
131
132
|
"@codemirror/state": "^6.4.1",
|
|
132
|
-
"@codemirror/view": "^6.
|
|
133
|
+
"@codemirror/view": "^6.26.0",
|
|
133
134
|
"@jridgewell/sourcemap-codec": "^1.4.15",
|
|
134
135
|
"@mermaid-js/mermaid-cli": "^10.8.0",
|
|
135
136
|
"@napi-rs/cli": "^2.18.0",
|
|
@@ -142,15 +143,15 @@
|
|
|
142
143
|
"@rollup/plugin-terser": "^0.4.4",
|
|
143
144
|
"@rollup/plugin-typescript": "^11.1.6",
|
|
144
145
|
"@rollup/pluginutils": "^5.1.0",
|
|
145
|
-
"@types/eslint": "^8.56.
|
|
146
|
+
"@types/eslint": "^8.56.6",
|
|
146
147
|
"@types/inquirer": "^9.0.7",
|
|
147
148
|
"@types/mocha": "^10.0.6",
|
|
148
149
|
"@types/node": "~18.18.14",
|
|
149
150
|
"@types/yargs-parser": "^21.0.3",
|
|
150
|
-
"@typescript-eslint/eslint-plugin": "^7.
|
|
151
|
-
"@typescript-eslint/parser": "^7.
|
|
151
|
+
"@typescript-eslint/eslint-plugin": "^7.3.1",
|
|
152
|
+
"@typescript-eslint/parser": "^7.3.1",
|
|
152
153
|
"@vue/eslint-config-prettier": "^9.0.0",
|
|
153
|
-
"@vue/eslint-config-typescript": "^
|
|
154
|
+
"@vue/eslint-config-typescript": "^13.0.0",
|
|
154
155
|
"acorn": "^8.11.3",
|
|
155
156
|
"acorn-import-assertions": "^1.9.0",
|
|
156
157
|
"buble": "^0.20.0",
|
|
@@ -167,13 +168,13 @@
|
|
|
167
168
|
"eslint-plugin-import": "^2.29.1",
|
|
168
169
|
"eslint-plugin-prettier": "^5.1.3",
|
|
169
170
|
"eslint-plugin-unicorn": "^51.0.1",
|
|
170
|
-
"eslint-plugin-vue": "^9.
|
|
171
|
+
"eslint-plugin-vue": "^9.23.0",
|
|
171
172
|
"fixturify": "^3.0.0",
|
|
172
173
|
"flru": "^1.0.2",
|
|
173
174
|
"fs-extra": "^11.2.0",
|
|
174
175
|
"github-api": "^3.4.0",
|
|
175
176
|
"husky": "^9.0.11",
|
|
176
|
-
"inquirer": "^9.2.
|
|
177
|
+
"inquirer": "^9.2.16",
|
|
177
178
|
"is-reference": "^3.0.2",
|
|
178
179
|
"lint-staged": "^15.2.2",
|
|
179
180
|
"locate-character": "^3.0.0",
|
|
@@ -185,8 +186,8 @@
|
|
|
185
186
|
"pretty-bytes": "^6.1.1",
|
|
186
187
|
"pretty-ms": "^9.0.0",
|
|
187
188
|
"requirejs": "^2.3.6",
|
|
188
|
-
"rollup": "^4.
|
|
189
|
-
"rollup-plugin-license": "^3.
|
|
189
|
+
"rollup": "^4.13.0",
|
|
190
|
+
"rollup-plugin-license": "^3.3.1",
|
|
190
191
|
"rollup-plugin-string": "^3.0.0",
|
|
191
192
|
"semver": "^7.6.0",
|
|
192
193
|
"shx": "^0.3.4",
|
|
@@ -194,18 +195,18 @@
|
|
|
194
195
|
"source-map": "^0.7.4",
|
|
195
196
|
"source-map-support": "^0.5.21",
|
|
196
197
|
"systemjs": "^6.14.3",
|
|
197
|
-
"terser": "^5.
|
|
198
|
+
"terser": "^5.29.2",
|
|
198
199
|
"tslib": "^2.6.2",
|
|
199
|
-
"typescript": "^5.
|
|
200
|
-
"vite": "^5.1.
|
|
201
|
-
"vitepress": "1.0.0-rc.
|
|
200
|
+
"typescript": "^5.4.2",
|
|
201
|
+
"vite": "^5.1.6",
|
|
202
|
+
"vitepress": "^1.0.0-rc.45",
|
|
202
203
|
"vue": "^3.4.21",
|
|
203
204
|
"wasm-pack": "^0.12.1",
|
|
204
205
|
"weak-napi": "^2.0.2",
|
|
205
206
|
"yargs-parser": "^21.1.1"
|
|
206
207
|
},
|
|
207
208
|
"overrides": {
|
|
208
|
-
"axios": "^1.6.
|
|
209
|
+
"axios": "^1.6.8",
|
|
209
210
|
"semver": "^7.6.0"
|
|
210
211
|
},
|
|
211
212
|
"files": [
|