rollup 4.0.0-8 → 4.0.0-9

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 CHANGED
@@ -2,8 +2,8 @@
2
2
 
3
3
  /*
4
4
  @license
5
- Rollup.js v4.0.0-8
6
- Sun, 20 Aug 2023 11:21:28 GMT - commit 5bfa022de96252b5eaf0bdab90be6bcfefcccb57
5
+ Rollup.js v4.0.0-9
6
+ Sun, 20 Aug 2023 14:28:23 GMT - commit e4d55671a81334ddc59fdbcd81ceabdb77d96974
7
7
 
8
8
  https://github.com/rollup/rollup
9
9
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.0.0-8
4
- Sun, 20 Aug 2023 11:21:28 GMT - commit 5bfa022de96252b5eaf0bdab90be6bcfefcccb57
3
+ Rollup.js v4.0.0-9
4
+ Sun, 20 Aug 2023 14:28:23 GMT - commit e4d55671a81334ddc59fdbcd81ceabdb77d96974
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
package/dist/es/rollup.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.0.0-8
4
- Sun, 20 Aug 2023 11:21:28 GMT - commit 5bfa022de96252b5eaf0bdab90be6bcfefcccb57
3
+ Rollup.js v4.0.0-9
4
+ Sun, 20 Aug 2023 14:28:23 GMT - commit e4d55671a81334ddc59fdbcd81ceabdb77d96974
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.0.0-8
4
- Sun, 20 Aug 2023 11:21:28 GMT - commit 5bfa022de96252b5eaf0bdab90be6bcfefcccb57
3
+ Rollup.js v4.0.0-9
4
+ Sun, 20 Aug 2023 14:28:23 GMT - commit e4d55671a81334ddc59fdbcd81ceabdb77d96974
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -16,7 +16,7 @@ import native from './native.cjs';
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$1 = "4.0.0-8";
19
+ var version$1 = "4.0.0-9";
20
20
 
21
21
  const comma = ','.charCodeAt(0);
22
22
  const semicolon = ';'.charCodeAt(0);
@@ -26364,8 +26364,25 @@ class Queue {
26364
26364
  }
26365
26365
  }
26366
26366
 
26367
- function readString(astBuffer, start, length) {
26368
- return astBuffer.toString('utf8', start, start + length);
26367
+ function getReadStringFunction(astBuffer) {
26368
+ let bufferConstructor = null;
26369
+ try {
26370
+ bufferConstructor = Buffer;
26371
+ }
26372
+ catch {
26373
+ /* regardless of error */
26374
+ }
26375
+ if (bufferConstructor && astBuffer instanceof bufferConstructor) {
26376
+ return function readString(start, length) {
26377
+ return astBuffer.toString('utf8', start, start + length);
26378
+ };
26379
+ }
26380
+ else {
26381
+ const textDecoder = new TextDecoder();
26382
+ return function readString(start, length) {
26383
+ return textDecoder.decode(astBuffer.subarray(start, start + length));
26384
+ };
26385
+ }
26369
26386
  }
26370
26387
 
26371
26388
  function normalizeEntryModules(entryModules) {
@@ -26469,7 +26486,8 @@ class Graph {
26469
26486
  // try {
26470
26487
  // console.time('swc');
26471
26488
  const astBuffer = native.parse(code);
26472
- const ast = convertProgram(astBuffer.buffer, (start, length) => readString(astBuffer, start, length));
26489
+ const readString = getReadStringFunction(astBuffer);
26490
+ const ast = convertProgram(astBuffer.buffer, (start, length) => readString(start, length));
26473
26491
  // console.timeEnd('swc');
26474
26492
  // console.log('swc', JSON.stringify(ast, null, 2));
26475
26493
  // assert.deepStrictEqual(
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.0.0-8
4
- Sun, 20 Aug 2023 11:21:28 GMT - commit 5bfa022de96252b5eaf0bdab90be6bcfefcccb57
3
+ Rollup.js v4.0.0-9
4
+ Sun, 20 Aug 2023 14:28:23 GMT - commit e4d55671a81334ddc59fdbcd81ceabdb77d96974
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.0.0-8
4
- Sun, 20 Aug 2023 11:21:28 GMT - commit 5bfa022de96252b5eaf0bdab90be6bcfefcccb57
3
+ Rollup.js v4.0.0-9
4
+ Sun, 20 Aug 2023 14:28:23 GMT - commit e4d55671a81334ddc59fdbcd81ceabdb77d96974
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.0.0-8
4
- Sun, 20 Aug 2023 11:21:28 GMT - commit 5bfa022de96252b5eaf0bdab90be6bcfefcccb57
3
+ Rollup.js v4.0.0-9
4
+ Sun, 20 Aug 2023 14:28:23 GMT - commit e4d55671a81334ddc59fdbcd81ceabdb77d96974
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
package/dist/rollup.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.0.0-8
4
- Sun, 20 Aug 2023 11:21:28 GMT - commit 5bfa022de96252b5eaf0bdab90be6bcfefcccb57
3
+ Rollup.js v4.0.0-9
4
+ Sun, 20 Aug 2023 14:28:23 GMT - commit e4d55671a81334ddc59fdbcd81ceabdb77d96974
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.0.0-8
4
- Sun, 20 Aug 2023 11:21:28 GMT - commit 5bfa022de96252b5eaf0bdab90be6bcfefcccb57
3
+ Rollup.js v4.0.0-9
4
+ Sun, 20 Aug 2023 14:28:23 GMT - commit e4d55671a81334ddc59fdbcd81ceabdb77d96974
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.0.0-8
4
- Sun, 20 Aug 2023 11:21:28 GMT - commit 5bfa022de96252b5eaf0bdab90be6bcfefcccb57
3
+ Rollup.js v4.0.0-9
4
+ Sun, 20 Aug 2023 14:28:23 GMT - commit e4d55671a81334ddc59fdbcd81ceabdb77d96974
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.0.0-8
4
- Sun, 20 Aug 2023 11:21:28 GMT - commit 5bfa022de96252b5eaf0bdab90be6bcfefcccb57
3
+ Rollup.js v4.0.0-9
4
+ Sun, 20 Aug 2023 14:28:23 GMT - commit e4d55671a81334ddc59fdbcd81ceabdb77d96974
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.0.0-8
4
- Sun, 20 Aug 2023 11:21:28 GMT - commit 5bfa022de96252b5eaf0bdab90be6bcfefcccb57
3
+ Rollup.js v4.0.0-9
4
+ Sun, 20 Aug 2023 14:28:23 GMT - commit e4d55671a81334ddc59fdbcd81ceabdb77d96974
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 = "4.0.0-8";
34
+ var version$1 = "4.0.0-9";
35
35
 
36
36
  function ensureArray$1(items) {
37
37
  if (Array.isArray(items)) {
@@ -26854,8 +26854,25 @@ class Queue {
26854
26854
  }
26855
26855
  }
26856
26856
 
26857
- function readString(astBuffer, start, length) {
26858
- return astBuffer.toString('utf8', start, start + length);
26857
+ function getReadStringFunction(astBuffer) {
26858
+ let bufferConstructor = null;
26859
+ try {
26860
+ bufferConstructor = Buffer;
26861
+ }
26862
+ catch {
26863
+ /* regardless of error */
26864
+ }
26865
+ if (bufferConstructor && astBuffer instanceof bufferConstructor) {
26866
+ return function readString(start, length) {
26867
+ return astBuffer.toString('utf8', start, start + length);
26868
+ };
26869
+ }
26870
+ else {
26871
+ const textDecoder = new TextDecoder();
26872
+ return function readString(start, length) {
26873
+ return textDecoder.decode(astBuffer.subarray(start, start + length));
26874
+ };
26875
+ }
26859
26876
  }
26860
26877
 
26861
26878
  function normalizeEntryModules(entryModules) {
@@ -26959,7 +26976,8 @@ class Graph {
26959
26976
  // try {
26960
26977
  // console.time('swc');
26961
26978
  const astBuffer = native.parse(code);
26962
- const ast = convertProgram(astBuffer.buffer, (start, length) => readString(astBuffer, start, length));
26979
+ const readString = getReadStringFunction(astBuffer);
26980
+ const ast = convertProgram(astBuffer.buffer, (start, length) => readString(start, length));
26963
26981
  // console.timeEnd('swc');
26964
26982
  // console.log('swc', JSON.stringify(ast, null, 2));
26965
26983
  // assert.deepStrictEqual(
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.0.0-8
4
- Sun, 20 Aug 2023 11:21:28 GMT - commit 5bfa022de96252b5eaf0bdab90be6bcfefcccb57
3
+ Rollup.js v4.0.0-9
4
+ Sun, 20 Aug 2023 14:28:23 GMT - commit e4d55671a81334ddc59fdbcd81ceabdb77d96974
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.0.0-8
4
- Sun, 20 Aug 2023 11:21:28 GMT - commit 5bfa022de96252b5eaf0bdab90be6bcfefcccb57
3
+ Rollup.js v4.0.0-9
4
+ Sun, 20 Aug 2023 14:28:23 GMT - commit e4d55671a81334ddc59fdbcd81ceabdb77d96974
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v4.0.0-8
4
- Sun, 20 Aug 2023 11:21:28 GMT - commit 5bfa022de96252b5eaf0bdab90be6bcfefcccb57
3
+ Rollup.js v4.0.0-9
4
+ Sun, 20 Aug 2023 14:28:23 GMT - commit e4d55671a81334ddc59fdbcd81ceabdb77d96974
5
5
 
6
6
  https://github.com/rollup/rollup
7
7
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rollup",
3
- "version": "4.0.0-8",
3
+ "version": "4.0.0-9",
4
4
  "description": "Next-generation ES module bundler",
5
5
  "main": "dist/rollup.js",
6
6
  "module": "dist/es/rollup.js",
@@ -96,17 +96,17 @@
96
96
  "homepage": "https://rollupjs.org/",
97
97
  "optionalDependencies": {
98
98
  "fsevents": "~2.3.2",
99
- "@rollup/rollup-darwin-arm64": "4.0.0-8",
100
- "@rollup/rollup-android-arm64": "4.0.0-8",
101
- "@rollup/rollup-win32-arm64-msvc": "4.0.0-8",
102
- "@rollup/rollup-linux-arm64-gnu": "4.0.0-8",
103
- "@rollup/rollup-android-arm-eabi": "4.0.0-8",
104
- "@rollup/rollup-linux-arm-gnueabihf": "4.0.0-8",
105
- "@rollup/rollup-win32-ia32-msvc": "4.0.0-8",
106
- "@rollup/rollup-darwin-x64": "4.0.0-8",
107
- "@rollup/rollup-win32-x64-msvc": "4.0.0-8",
108
- "@rollup/rollup-linux-x64-gnu": "4.0.0-8",
109
- "@rollup/rollup-linux-x64-musl": "4.0.0-8"
99
+ "@rollup/rollup-darwin-arm64": "4.0.0-9",
100
+ "@rollup/rollup-android-arm64": "4.0.0-9",
101
+ "@rollup/rollup-win32-arm64-msvc": "4.0.0-9",
102
+ "@rollup/rollup-linux-arm64-gnu": "4.0.0-9",
103
+ "@rollup/rollup-android-arm-eabi": "4.0.0-9",
104
+ "@rollup/rollup-linux-arm-gnueabihf": "4.0.0-9",
105
+ "@rollup/rollup-win32-ia32-msvc": "4.0.0-9",
106
+ "@rollup/rollup-darwin-x64": "4.0.0-9",
107
+ "@rollup/rollup-win32-x64-msvc": "4.0.0-9",
108
+ "@rollup/rollup-linux-x64-gnu": "4.0.0-9",
109
+ "@rollup/rollup-linux-x64-musl": "4.0.0-9"
110
110
  },
111
111
  "devDependencies": {
112
112
  "@codemirror/commands": "^6.2.4",