rollup 4.14.0 → 4.14.2

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.
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.14.0
4
- Wed, 03 Apr 2024 05:22:15 GMT - commit 5abe71bd5bae3423b4e2ee80207c871efde20253
3
+ Rollup.js v4.14.2
4
+ Fri, 12 Apr 2024 06:23:07 GMT - commit 7275328b41b29605142bfdf55d68cb54e895a20c
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.14.0
4
- Wed, 03 Apr 2024 05:22:15 GMT - commit 5abe71bd5bae3423b4e2ee80207c871efde20253
3
+ Rollup.js v4.14.2
4
+ Fri, 12 Apr 2024 06:23:07 GMT - commit 7275328b41b29605142bfdf55d68cb54e895a20c
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -11,7 +11,7 @@
11
11
 
12
12
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
13
13
 
14
- const node_path = require('node:path');
14
+ const path = require('node:path');
15
15
  const process = require('node:process');
16
16
  const rollup = require('./rollup.js');
17
17
  const node_os = require('node:os');
@@ -205,7 +205,7 @@ class Task {
205
205
  this.outputs = this.options.output;
206
206
  this.outputFiles = this.outputs.map(output => {
207
207
  if (output.file || output.dir)
208
- return node_path.resolve(output.file || output.dir);
208
+ return path.resolve(output.file || output.dir);
209
209
  return undefined;
210
210
  });
211
211
  const watchOptions = this.options.watch || {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rollup",
3
- "version": "4.14.0",
3
+ "version": "4.14.2",
4
4
  "description": "Next-generation ES module bundler",
5
5
  "main": "dist/rollup.js",
6
6
  "module": "dist/es/rollup.js",
@@ -103,21 +103,21 @@
103
103
  "homepage": "https://rollupjs.org/",
104
104
  "optionalDependencies": {
105
105
  "fsevents": "~2.3.2",
106
- "@rollup/rollup-darwin-arm64": "4.14.0",
107
- "@rollup/rollup-android-arm64": "4.14.0",
108
- "@rollup/rollup-win32-arm64-msvc": "4.14.0",
109
- "@rollup/rollup-linux-arm64-gnu": "4.14.0",
110
- "@rollup/rollup-linux-arm64-musl": "4.14.0",
111
- "@rollup/rollup-android-arm-eabi": "4.14.0",
112
- "@rollup/rollup-linux-arm-gnueabihf": "4.14.0",
113
- "@rollup/rollup-win32-ia32-msvc": "4.14.0",
114
- "@rollup/rollup-linux-riscv64-gnu": "4.14.0",
115
- "@rollup/rollup-linux-powerpc64le-gnu": "4.14.0",
116
- "@rollup/rollup-linux-s390x-gnu": "4.14.0",
117
- "@rollup/rollup-darwin-x64": "4.14.0",
118
- "@rollup/rollup-win32-x64-msvc": "4.14.0",
119
- "@rollup/rollup-linux-x64-gnu": "4.14.0",
120
- "@rollup/rollup-linux-x64-musl": "4.14.0"
106
+ "@rollup/rollup-darwin-arm64": "4.14.2",
107
+ "@rollup/rollup-android-arm64": "4.14.2",
108
+ "@rollup/rollup-win32-arm64-msvc": "4.14.2",
109
+ "@rollup/rollup-linux-arm64-gnu": "4.14.2",
110
+ "@rollup/rollup-linux-arm64-musl": "4.14.2",
111
+ "@rollup/rollup-android-arm-eabi": "4.14.2",
112
+ "@rollup/rollup-linux-arm-gnueabihf": "4.14.2",
113
+ "@rollup/rollup-win32-ia32-msvc": "4.14.2",
114
+ "@rollup/rollup-linux-riscv64-gnu": "4.14.2",
115
+ "@rollup/rollup-linux-powerpc64le-gnu": "4.14.2",
116
+ "@rollup/rollup-linux-s390x-gnu": "4.14.2",
117
+ "@rollup/rollup-darwin-x64": "4.14.2",
118
+ "@rollup/rollup-win32-x64-msvc": "4.14.2",
119
+ "@rollup/rollup-linux-x64-gnu": "4.14.2",
120
+ "@rollup/rollup-linux-x64-musl": "4.14.2"
121
121
  },
122
122
  "dependencies": {
123
123
  "@types/estree": "1.0.5"
@@ -132,7 +132,7 @@
132
132
  "@codemirror/language": "^6.10.1",
133
133
  "@codemirror/search": "^6.5.6",
134
134
  "@codemirror/state": "^6.4.1",
135
- "@codemirror/view": "^6.26.0",
135
+ "@codemirror/view": "^6.26.1",
136
136
  "@jridgewell/sourcemap-codec": "^1.4.15",
137
137
  "@mermaid-js/mermaid-cli": "^10.8.0",
138
138
  "@napi-rs/cli": "^2.18.0",
@@ -145,14 +145,14 @@
145
145
  "@rollup/plugin-terser": "^0.4.4",
146
146
  "@rollup/plugin-typescript": "^11.1.6",
147
147
  "@rollup/pluginutils": "^5.1.0",
148
- "@shikijs/vitepress-twoslash": "^1.2.1",
149
- "@types/eslint": "^8.56.6",
148
+ "@shikijs/vitepress-twoslash": "^1.2.4",
149
+ "@types/eslint": "^8.56.7",
150
150
  "@types/inquirer": "^9.0.7",
151
151
  "@types/mocha": "^10.0.6",
152
152
  "@types/node": "~18.18.14",
153
153
  "@types/yargs-parser": "^21.0.3",
154
- "@typescript-eslint/eslint-plugin": "^7.4.0",
155
- "@typescript-eslint/parser": "^7.4.0",
154
+ "@typescript-eslint/eslint-plugin": "^7.6.0",
155
+ "@typescript-eslint/parser": "^7.6.0",
156
156
  "@vue/eslint-config-prettier": "^9.0.0",
157
157
  "@vue/eslint-config-typescript": "^13.0.0",
158
158
  "acorn": "^8.11.3",
@@ -170,26 +170,26 @@
170
170
  "eslint-config-prettier": "^9.1.0",
171
171
  "eslint-plugin-import": "^2.29.1",
172
172
  "eslint-plugin-prettier": "^5.1.3",
173
- "eslint-plugin-unicorn": "^51.0.1",
174
- "eslint-plugin-vue": "^9.24.0",
173
+ "eslint-plugin-unicorn": "^52.0.0",
174
+ "eslint-plugin-vue": "^9.24.1",
175
175
  "fixturify": "^3.0.0",
176
176
  "flru": "^1.0.2",
177
177
  "fs-extra": "^11.2.0",
178
178
  "github-api": "^3.4.0",
179
179
  "husky": "^9.0.11",
180
- "inquirer": "^9.2.16",
180
+ "inquirer": "^9.2.17",
181
181
  "is-reference": "^3.0.2",
182
182
  "lint-staged": "^15.2.2",
183
183
  "locate-character": "^3.0.0",
184
- "magic-string": "^0.30.8",
185
- "mocha": "^10.3.0",
184
+ "magic-string": "^0.30.9",
185
+ "mocha": "^10.4.0",
186
186
  "nyc": "^15.1.0",
187
187
  "pinia": "^2.1.7",
188
188
  "prettier": "^3.2.5",
189
189
  "pretty-bytes": "^6.1.1",
190
190
  "pretty-ms": "^9.0.0",
191
191
  "requirejs": "^2.3.6",
192
- "rollup": "^4.13.0",
192
+ "rollup": "^4.14.1",
193
193
  "rollup-plugin-license": "^3.3.1",
194
194
  "rollup-plugin-string": "^3.0.0",
195
195
  "semver": "^7.6.0",
@@ -198,11 +198,11 @@
198
198
  "source-map": "^0.7.4",
199
199
  "source-map-support": "^0.5.21",
200
200
  "systemjs": "^6.14.3",
201
- "terser": "^5.29.2",
201
+ "terser": "^5.30.3",
202
202
  "tslib": "^2.6.2",
203
- "typescript": "^5.4.3",
204
- "vite": "^5.2.6",
205
- "vitepress": "^1.0.1",
203
+ "typescript": "^5.4.4",
204
+ "vite": "^5.2.8",
205
+ "vitepress": "^1.0.2",
206
206
  "vue": "^3.4.21",
207
207
  "wasm-pack": "^0.12.1",
208
208
  "weak-napi": "^2.0.2",