✨ 🔧 Update npm + login page
This commit is contained in:
4
node_modules/rollup/dist/bin/rollup
generated
vendored
4
node_modules/rollup/dist/bin/rollup
generated
vendored
@@ -1,8 +1,8 @@
|
||||
#!/usr/bin/env node
|
||||
/*
|
||||
@license
|
||||
Rollup.js v4.9.5
|
||||
Fri, 12 Jan 2024 06:15:44 GMT - commit 7fa474cc5ed91c96a4ff80e286aa8534bc15834f
|
||||
Rollup.js v4.9.6
|
||||
Sun, 21 Jan 2024 05:51:51 GMT - commit ecb6b0a430098052781aa6ee04ec92ee70960321
|
||||
|
||||
https://github.com/rollup/rollup
|
||||
|
||||
|
||||
4
node_modules/rollup/dist/es/getLogFilter.js
generated
vendored
4
node_modules/rollup/dist/es/getLogFilter.js
generated
vendored
@@ -1,7 +1,7 @@
|
||||
/*
|
||||
@license
|
||||
Rollup.js v4.9.5
|
||||
Fri, 12 Jan 2024 06:15:44 GMT - commit 7fa474cc5ed91c96a4ff80e286aa8534bc15834f
|
||||
Rollup.js v4.9.6
|
||||
Sun, 21 Jan 2024 05:51:51 GMT - commit ecb6b0a430098052781aa6ee04ec92ee70960321
|
||||
|
||||
https://github.com/rollup/rollup
|
||||
|
||||
|
||||
4
node_modules/rollup/dist/es/parseAst.js
generated
vendored
4
node_modules/rollup/dist/es/parseAst.js
generated
vendored
@@ -1,7 +1,7 @@
|
||||
/*
|
||||
@license
|
||||
Rollup.js v4.9.5
|
||||
Fri, 12 Jan 2024 06:15:44 GMT - commit 7fa474cc5ed91c96a4ff80e286aa8534bc15834f
|
||||
Rollup.js v4.9.6
|
||||
Sun, 21 Jan 2024 05:51:51 GMT - commit ecb6b0a430098052781aa6ee04ec92ee70960321
|
||||
|
||||
https://github.com/rollup/rollup
|
||||
|
||||
|
||||
4
node_modules/rollup/dist/es/rollup.js
generated
vendored
4
node_modules/rollup/dist/es/rollup.js
generated
vendored
@@ -1,7 +1,7 @@
|
||||
/*
|
||||
@license
|
||||
Rollup.js v4.9.5
|
||||
Fri, 12 Jan 2024 06:15:44 GMT - commit 7fa474cc5ed91c96a4ff80e286aa8534bc15834f
|
||||
Rollup.js v4.9.6
|
||||
Sun, 21 Jan 2024 05:51:51 GMT - commit ecb6b0a430098052781aa6ee04ec92ee70960321
|
||||
|
||||
https://github.com/rollup/rollup
|
||||
|
||||
|
||||
38
node_modules/rollup/dist/es/shared/node-entry.js
generated
vendored
38
node_modules/rollup/dist/es/shared/node-entry.js
generated
vendored
@@ -1,7 +1,7 @@
|
||||
/*
|
||||
@license
|
||||
Rollup.js v4.9.5
|
||||
Fri, 12 Jan 2024 06:15:44 GMT - commit 7fa474cc5ed91c96a4ff80e286aa8534bc15834f
|
||||
Rollup.js v4.9.6
|
||||
Sun, 21 Jan 2024 05:51:51 GMT - commit ecb6b0a430098052781aa6ee04ec92ee70960321
|
||||
|
||||
https://github.com/rollup/rollup
|
||||
|
||||
@@ -16,7 +16,7 @@ import { xxhashBase64Url } from '../../native.js';
|
||||
import { lstat, realpath, readdir, readFile, mkdir, writeFile } from 'node:fs/promises';
|
||||
import * as tty from 'tty';
|
||||
|
||||
var version = "4.9.5";
|
||||
var version = "4.9.6";
|
||||
|
||||
const comma = ','.charCodeAt(0);
|
||||
const semicolon = ';'.charCodeAt(0);
|
||||
@@ -4822,8 +4822,15 @@ class Method extends ExpressionEntity {
|
||||
this.description = description;
|
||||
}
|
||||
deoptimizeArgumentsOnInteractionAtPath({ args, type }, path) {
|
||||
if (type === INTERACTION_CALLED && path.length === 0 && this.description.mutatesSelfAsArray) {
|
||||
args[0]?.deoptimizePath(UNKNOWN_INTEGER_PATH);
|
||||
if (type === INTERACTION_CALLED && path.length === 0) {
|
||||
if (this.description.mutatesSelfAsArray) {
|
||||
args[0]?.deoptimizePath(UNKNOWN_INTEGER_PATH);
|
||||
}
|
||||
if (this.description.mutatesArgs) {
|
||||
for (let index = 1; index < args.length; index++) {
|
||||
args[index].deoptimizePath(UNKNOWN_PATH);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
getReturnExpressionWhenCalledAtPath(path, { args }) {
|
||||
@@ -4863,6 +4870,7 @@ class Method extends ExpressionEntity {
|
||||
const METHOD_RETURNS_BOOLEAN = [
|
||||
new Method({
|
||||
callsArgs: null,
|
||||
mutatesArgs: false,
|
||||
mutatesSelfAsArray: false,
|
||||
returns: null,
|
||||
returnsPrimitive: UNKNOWN_LITERAL_BOOLEAN
|
||||
@@ -4871,6 +4879,7 @@ const METHOD_RETURNS_BOOLEAN = [
|
||||
const METHOD_RETURNS_STRING = [
|
||||
new Method({
|
||||
callsArgs: null,
|
||||
mutatesArgs: false,
|
||||
mutatesSelfAsArray: false,
|
||||
returns: null,
|
||||
returnsPrimitive: UNKNOWN_LITERAL_STRING
|
||||
@@ -4879,6 +4888,7 @@ const METHOD_RETURNS_STRING = [
|
||||
const METHOD_RETURNS_NUMBER = [
|
||||
new Method({
|
||||
callsArgs: null,
|
||||
mutatesArgs: false,
|
||||
mutatesSelfAsArray: false,
|
||||
returns: null,
|
||||
returnsPrimitive: UNKNOWN_LITERAL_NUMBER
|
||||
@@ -4887,6 +4897,7 @@ const METHOD_RETURNS_NUMBER = [
|
||||
const METHOD_RETURNS_UNKNOWN = [
|
||||
new Method({
|
||||
callsArgs: null,
|
||||
mutatesArgs: false,
|
||||
mutatesSelfAsArray: false,
|
||||
returns: null,
|
||||
returnsPrimitive: UNKNOWN_EXPRESSION
|
||||
@@ -5301,6 +5312,7 @@ const NEW_ARRAY_PROPERTIES = [
|
||||
const METHOD_CALLS_ARG_DEOPTS_SELF_RETURNS_BOOLEAN = [
|
||||
new Method({
|
||||
callsArgs: [0],
|
||||
mutatesArgs: false,
|
||||
mutatesSelfAsArray: 'deopt-only',
|
||||
returns: null,
|
||||
returnsPrimitive: UNKNOWN_LITERAL_BOOLEAN
|
||||
@@ -5309,6 +5321,7 @@ const METHOD_CALLS_ARG_DEOPTS_SELF_RETURNS_BOOLEAN = [
|
||||
const METHOD_CALLS_ARG_DEOPTS_SELF_RETURNS_NUMBER = [
|
||||
new Method({
|
||||
callsArgs: [0],
|
||||
mutatesArgs: false,
|
||||
mutatesSelfAsArray: 'deopt-only',
|
||||
returns: null,
|
||||
returnsPrimitive: UNKNOWN_LITERAL_NUMBER
|
||||
@@ -5317,6 +5330,7 @@ const METHOD_CALLS_ARG_DEOPTS_SELF_RETURNS_NUMBER = [
|
||||
const METHOD_MUTATES_SELF_RETURNS_NEW_ARRAY = [
|
||||
new Method({
|
||||
callsArgs: null,
|
||||
mutatesArgs: false,
|
||||
mutatesSelfAsArray: true,
|
||||
returns: () => new ObjectEntity(NEW_ARRAY_PROPERTIES, ARRAY_PROTOTYPE),
|
||||
returnsPrimitive: null
|
||||
@@ -5325,6 +5339,7 @@ const METHOD_MUTATES_SELF_RETURNS_NEW_ARRAY = [
|
||||
const METHOD_DEOPTS_SELF_RETURNS_NEW_ARRAY = [
|
||||
new Method({
|
||||
callsArgs: null,
|
||||
mutatesArgs: false,
|
||||
mutatesSelfAsArray: 'deopt-only',
|
||||
returns: () => new ObjectEntity(NEW_ARRAY_PROPERTIES, ARRAY_PROTOTYPE),
|
||||
returnsPrimitive: null
|
||||
@@ -5333,14 +5348,16 @@ const METHOD_DEOPTS_SELF_RETURNS_NEW_ARRAY = [
|
||||
const METHOD_CALLS_ARG_DEOPTS_SELF_RETURNS_NEW_ARRAY = [
|
||||
new Method({
|
||||
callsArgs: [0],
|
||||
mutatesArgs: false,
|
||||
mutatesSelfAsArray: 'deopt-only',
|
||||
returns: () => new ObjectEntity(NEW_ARRAY_PROPERTIES, ARRAY_PROTOTYPE),
|
||||
returnsPrimitive: null
|
||||
})
|
||||
];
|
||||
const METHOD_MUTATES_SELF_RETURNS_NUMBER = [
|
||||
const METHOD_MUTATES_SELF_AND_ARGS_RETURNS_NUMBER = [
|
||||
new Method({
|
||||
callsArgs: null,
|
||||
mutatesArgs: true,
|
||||
mutatesSelfAsArray: true,
|
||||
returns: null,
|
||||
returnsPrimitive: UNKNOWN_LITERAL_NUMBER
|
||||
@@ -5349,6 +5366,7 @@ const METHOD_MUTATES_SELF_RETURNS_NUMBER = [
|
||||
const METHOD_MUTATES_SELF_RETURNS_UNKNOWN = [
|
||||
new Method({
|
||||
callsArgs: null,
|
||||
mutatesArgs: false,
|
||||
mutatesSelfAsArray: true,
|
||||
returns: null,
|
||||
returnsPrimitive: UNKNOWN_EXPRESSION
|
||||
@@ -5357,6 +5375,7 @@ const METHOD_MUTATES_SELF_RETURNS_UNKNOWN = [
|
||||
const METHOD_DEOPTS_SELF_RETURNS_UNKNOWN = [
|
||||
new Method({
|
||||
callsArgs: null,
|
||||
mutatesArgs: false,
|
||||
mutatesSelfAsArray: 'deopt-only',
|
||||
returns: null,
|
||||
returnsPrimitive: UNKNOWN_EXPRESSION
|
||||
@@ -5365,6 +5384,7 @@ const METHOD_DEOPTS_SELF_RETURNS_UNKNOWN = [
|
||||
const METHOD_CALLS_ARG_DEOPTS_SELF_RETURNS_UNKNOWN = [
|
||||
new Method({
|
||||
callsArgs: [0],
|
||||
mutatesArgs: false,
|
||||
mutatesSelfAsArray: 'deopt-only',
|
||||
returns: null,
|
||||
returnsPrimitive: UNKNOWN_EXPRESSION
|
||||
@@ -5373,6 +5393,7 @@ const METHOD_CALLS_ARG_DEOPTS_SELF_RETURNS_UNKNOWN = [
|
||||
const METHOD_MUTATES_SELF_RETURNS_SELF = [
|
||||
new Method({
|
||||
callsArgs: null,
|
||||
mutatesArgs: false,
|
||||
mutatesSelfAsArray: true,
|
||||
returns: 'self',
|
||||
returnsPrimitive: null
|
||||
@@ -5381,6 +5402,7 @@ const METHOD_MUTATES_SELF_RETURNS_SELF = [
|
||||
const METHOD_CALLS_ARG_MUTATES_SELF_RETURNS_SELF = [
|
||||
new Method({
|
||||
callsArgs: [0],
|
||||
mutatesArgs: false,
|
||||
mutatesSelfAsArray: true,
|
||||
returns: 'self',
|
||||
returnsPrimitive: null
|
||||
@@ -5410,7 +5432,7 @@ const ARRAY_PROTOTYPE = new ObjectEntity({
|
||||
lastIndexOf: METHOD_RETURNS_NUMBER,
|
||||
map: METHOD_CALLS_ARG_DEOPTS_SELF_RETURNS_NEW_ARRAY,
|
||||
pop: METHOD_MUTATES_SELF_RETURNS_UNKNOWN,
|
||||
push: METHOD_MUTATES_SELF_RETURNS_NUMBER,
|
||||
push: METHOD_MUTATES_SELF_AND_ARGS_RETURNS_NUMBER,
|
||||
reduce: METHOD_CALLS_ARG_DEOPTS_SELF_RETURNS_UNKNOWN,
|
||||
reduceRight: METHOD_CALLS_ARG_DEOPTS_SELF_RETURNS_UNKNOWN,
|
||||
reverse: METHOD_MUTATES_SELF_RETURNS_SELF,
|
||||
@@ -5421,7 +5443,7 @@ const ARRAY_PROTOTYPE = new ObjectEntity({
|
||||
splice: METHOD_MUTATES_SELF_RETURNS_NEW_ARRAY,
|
||||
toLocaleString: METHOD_RETURNS_STRING,
|
||||
toString: METHOD_RETURNS_STRING,
|
||||
unshift: METHOD_MUTATES_SELF_RETURNS_NUMBER,
|
||||
unshift: METHOD_MUTATES_SELF_AND_ARGS_RETURNS_NUMBER,
|
||||
values: METHOD_DEOPTS_SELF_RETURNS_UNKNOWN
|
||||
}, OBJECT_PROTOTYPE, true);
|
||||
|
||||
|
||||
691
node_modules/rollup/dist/es/shared/parseAst.js
generated
vendored
691
node_modules/rollup/dist/es/shared/parseAst.js
generated
vendored
File diff suppressed because it is too large
Load Diff
4
node_modules/rollup/dist/es/shared/watch.js
generated
vendored
4
node_modules/rollup/dist/es/shared/watch.js
generated
vendored
@@ -1,7 +1,7 @@
|
||||
/*
|
||||
@license
|
||||
Rollup.js v4.9.5
|
||||
Fri, 12 Jan 2024 06:15:44 GMT - commit 7fa474cc5ed91c96a4ff80e286aa8534bc15834f
|
||||
Rollup.js v4.9.6
|
||||
Sun, 21 Jan 2024 05:51:51 GMT - commit ecb6b0a430098052781aa6ee04ec92ee70960321
|
||||
|
||||
https://github.com/rollup/rollup
|
||||
|
||||
|
||||
4
node_modules/rollup/dist/getLogFilter.js
generated
vendored
4
node_modules/rollup/dist/getLogFilter.js
generated
vendored
@@ -1,7 +1,7 @@
|
||||
/*
|
||||
@license
|
||||
Rollup.js v4.9.5
|
||||
Fri, 12 Jan 2024 06:15:44 GMT - commit 7fa474cc5ed91c96a4ff80e286aa8534bc15834f
|
||||
Rollup.js v4.9.6
|
||||
Sun, 21 Jan 2024 05:51:51 GMT - commit ecb6b0a430098052781aa6ee04ec92ee70960321
|
||||
|
||||
https://github.com/rollup/rollup
|
||||
|
||||
|
||||
4
node_modules/rollup/dist/loadConfigFile.js
generated
vendored
4
node_modules/rollup/dist/loadConfigFile.js
generated
vendored
@@ -1,7 +1,7 @@
|
||||
/*
|
||||
@license
|
||||
Rollup.js v4.9.5
|
||||
Fri, 12 Jan 2024 06:15:44 GMT - commit 7fa474cc5ed91c96a4ff80e286aa8534bc15834f
|
||||
Rollup.js v4.9.6
|
||||
Sun, 21 Jan 2024 05:51:51 GMT - commit ecb6b0a430098052781aa6ee04ec92ee70960321
|
||||
|
||||
https://github.com/rollup/rollup
|
||||
|
||||
|
||||
4
node_modules/rollup/dist/parseAst.js
generated
vendored
4
node_modules/rollup/dist/parseAst.js
generated
vendored
@@ -1,7 +1,7 @@
|
||||
/*
|
||||
@license
|
||||
Rollup.js v4.9.5
|
||||
Fri, 12 Jan 2024 06:15:44 GMT - commit 7fa474cc5ed91c96a4ff80e286aa8534bc15834f
|
||||
Rollup.js v4.9.6
|
||||
Sun, 21 Jan 2024 05:51:51 GMT - commit ecb6b0a430098052781aa6ee04ec92ee70960321
|
||||
|
||||
https://github.com/rollup/rollup
|
||||
|
||||
|
||||
4
node_modules/rollup/dist/rollup.js
generated
vendored
4
node_modules/rollup/dist/rollup.js
generated
vendored
@@ -1,7 +1,7 @@
|
||||
/*
|
||||
@license
|
||||
Rollup.js v4.9.5
|
||||
Fri, 12 Jan 2024 06:15:44 GMT - commit 7fa474cc5ed91c96a4ff80e286aa8534bc15834f
|
||||
Rollup.js v4.9.6
|
||||
Sun, 21 Jan 2024 05:51:51 GMT - commit ecb6b0a430098052781aa6ee04ec92ee70960321
|
||||
|
||||
https://github.com/rollup/rollup
|
||||
|
||||
|
||||
4
node_modules/rollup/dist/shared/fsevents-importer.js
generated
vendored
4
node_modules/rollup/dist/shared/fsevents-importer.js
generated
vendored
@@ -1,7 +1,7 @@
|
||||
/*
|
||||
@license
|
||||
Rollup.js v4.9.5
|
||||
Fri, 12 Jan 2024 06:15:44 GMT - commit 7fa474cc5ed91c96a4ff80e286aa8534bc15834f
|
||||
Rollup.js v4.9.6
|
||||
Sun, 21 Jan 2024 05:51:51 GMT - commit ecb6b0a430098052781aa6ee04ec92ee70960321
|
||||
|
||||
https://github.com/rollup/rollup
|
||||
|
||||
|
||||
4
node_modules/rollup/dist/shared/index.js
generated
vendored
4
node_modules/rollup/dist/shared/index.js
generated
vendored
@@ -1,7 +1,7 @@
|
||||
/*
|
||||
@license
|
||||
Rollup.js v4.9.5
|
||||
Fri, 12 Jan 2024 06:15:44 GMT - commit 7fa474cc5ed91c96a4ff80e286aa8534bc15834f
|
||||
Rollup.js v4.9.6
|
||||
Sun, 21 Jan 2024 05:51:51 GMT - commit ecb6b0a430098052781aa6ee04ec92ee70960321
|
||||
|
||||
https://github.com/rollup/rollup
|
||||
|
||||
|
||||
4
node_modules/rollup/dist/shared/loadConfigFile.js
generated
vendored
4
node_modules/rollup/dist/shared/loadConfigFile.js
generated
vendored
@@ -1,7 +1,7 @@
|
||||
/*
|
||||
@license
|
||||
Rollup.js v4.9.5
|
||||
Fri, 12 Jan 2024 06:15:44 GMT - commit 7fa474cc5ed91c96a4ff80e286aa8534bc15834f
|
||||
Rollup.js v4.9.6
|
||||
Sun, 21 Jan 2024 05:51:51 GMT - commit ecb6b0a430098052781aa6ee04ec92ee70960321
|
||||
|
||||
https://github.com/rollup/rollup
|
||||
|
||||
|
||||
691
node_modules/rollup/dist/shared/parseAst.js
generated
vendored
691
node_modules/rollup/dist/shared/parseAst.js
generated
vendored
File diff suppressed because it is too large
Load Diff
38
node_modules/rollup/dist/shared/rollup.js
generated
vendored
38
node_modules/rollup/dist/shared/rollup.js
generated
vendored
@@ -1,7 +1,7 @@
|
||||
/*
|
||||
@license
|
||||
Rollup.js v4.9.5
|
||||
Fri, 12 Jan 2024 06:15:44 GMT - commit 7fa474cc5ed91c96a4ff80e286aa8534bc15834f
|
||||
Rollup.js v4.9.6
|
||||
Sun, 21 Jan 2024 05:51:51 GMT - commit ecb6b0a430098052781aa6ee04ec92ee70960321
|
||||
|
||||
https://github.com/rollup/rollup
|
||||
|
||||
@@ -31,7 +31,7 @@ function _interopNamespaceDefault(e) {
|
||||
|
||||
const tty__namespace = /*#__PURE__*/_interopNamespaceDefault(tty);
|
||||
|
||||
var version = "4.9.5";
|
||||
var version = "4.9.6";
|
||||
|
||||
function ensureArray$1(items) {
|
||||
if (Array.isArray(items)) {
|
||||
@@ -6268,8 +6268,15 @@ class Method extends ExpressionEntity {
|
||||
this.description = description;
|
||||
}
|
||||
deoptimizeArgumentsOnInteractionAtPath({ args, type }, path) {
|
||||
if (type === INTERACTION_CALLED && path.length === 0 && this.description.mutatesSelfAsArray) {
|
||||
args[0]?.deoptimizePath(UNKNOWN_INTEGER_PATH);
|
||||
if (type === INTERACTION_CALLED && path.length === 0) {
|
||||
if (this.description.mutatesSelfAsArray) {
|
||||
args[0]?.deoptimizePath(UNKNOWN_INTEGER_PATH);
|
||||
}
|
||||
if (this.description.mutatesArgs) {
|
||||
for (let index = 1; index < args.length; index++) {
|
||||
args[index].deoptimizePath(UNKNOWN_PATH);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
getReturnExpressionWhenCalledAtPath(path, { args }) {
|
||||
@@ -6309,6 +6316,7 @@ class Method extends ExpressionEntity {
|
||||
const METHOD_RETURNS_BOOLEAN = [
|
||||
new Method({
|
||||
callsArgs: null,
|
||||
mutatesArgs: false,
|
||||
mutatesSelfAsArray: false,
|
||||
returns: null,
|
||||
returnsPrimitive: UNKNOWN_LITERAL_BOOLEAN
|
||||
@@ -6317,6 +6325,7 @@ const METHOD_RETURNS_BOOLEAN = [
|
||||
const METHOD_RETURNS_STRING = [
|
||||
new Method({
|
||||
callsArgs: null,
|
||||
mutatesArgs: false,
|
||||
mutatesSelfAsArray: false,
|
||||
returns: null,
|
||||
returnsPrimitive: UNKNOWN_LITERAL_STRING
|
||||
@@ -6325,6 +6334,7 @@ const METHOD_RETURNS_STRING = [
|
||||
const METHOD_RETURNS_NUMBER = [
|
||||
new Method({
|
||||
callsArgs: null,
|
||||
mutatesArgs: false,
|
||||
mutatesSelfAsArray: false,
|
||||
returns: null,
|
||||
returnsPrimitive: UNKNOWN_LITERAL_NUMBER
|
||||
@@ -6333,6 +6343,7 @@ const METHOD_RETURNS_NUMBER = [
|
||||
const METHOD_RETURNS_UNKNOWN = [
|
||||
new Method({
|
||||
callsArgs: null,
|
||||
mutatesArgs: false,
|
||||
mutatesSelfAsArray: false,
|
||||
returns: null,
|
||||
returnsPrimitive: UNKNOWN_EXPRESSION
|
||||
@@ -6747,6 +6758,7 @@ const NEW_ARRAY_PROPERTIES = [
|
||||
const METHOD_CALLS_ARG_DEOPTS_SELF_RETURNS_BOOLEAN = [
|
||||
new Method({
|
||||
callsArgs: [0],
|
||||
mutatesArgs: false,
|
||||
mutatesSelfAsArray: 'deopt-only',
|
||||
returns: null,
|
||||
returnsPrimitive: UNKNOWN_LITERAL_BOOLEAN
|
||||
@@ -6755,6 +6767,7 @@ const METHOD_CALLS_ARG_DEOPTS_SELF_RETURNS_BOOLEAN = [
|
||||
const METHOD_CALLS_ARG_DEOPTS_SELF_RETURNS_NUMBER = [
|
||||
new Method({
|
||||
callsArgs: [0],
|
||||
mutatesArgs: false,
|
||||
mutatesSelfAsArray: 'deopt-only',
|
||||
returns: null,
|
||||
returnsPrimitive: UNKNOWN_LITERAL_NUMBER
|
||||
@@ -6763,6 +6776,7 @@ const METHOD_CALLS_ARG_DEOPTS_SELF_RETURNS_NUMBER = [
|
||||
const METHOD_MUTATES_SELF_RETURNS_NEW_ARRAY = [
|
||||
new Method({
|
||||
callsArgs: null,
|
||||
mutatesArgs: false,
|
||||
mutatesSelfAsArray: true,
|
||||
returns: () => new ObjectEntity(NEW_ARRAY_PROPERTIES, ARRAY_PROTOTYPE),
|
||||
returnsPrimitive: null
|
||||
@@ -6771,6 +6785,7 @@ const METHOD_MUTATES_SELF_RETURNS_NEW_ARRAY = [
|
||||
const METHOD_DEOPTS_SELF_RETURNS_NEW_ARRAY = [
|
||||
new Method({
|
||||
callsArgs: null,
|
||||
mutatesArgs: false,
|
||||
mutatesSelfAsArray: 'deopt-only',
|
||||
returns: () => new ObjectEntity(NEW_ARRAY_PROPERTIES, ARRAY_PROTOTYPE),
|
||||
returnsPrimitive: null
|
||||
@@ -6779,14 +6794,16 @@ const METHOD_DEOPTS_SELF_RETURNS_NEW_ARRAY = [
|
||||
const METHOD_CALLS_ARG_DEOPTS_SELF_RETURNS_NEW_ARRAY = [
|
||||
new Method({
|
||||
callsArgs: [0],
|
||||
mutatesArgs: false,
|
||||
mutatesSelfAsArray: 'deopt-only',
|
||||
returns: () => new ObjectEntity(NEW_ARRAY_PROPERTIES, ARRAY_PROTOTYPE),
|
||||
returnsPrimitive: null
|
||||
})
|
||||
];
|
||||
const METHOD_MUTATES_SELF_RETURNS_NUMBER = [
|
||||
const METHOD_MUTATES_SELF_AND_ARGS_RETURNS_NUMBER = [
|
||||
new Method({
|
||||
callsArgs: null,
|
||||
mutatesArgs: true,
|
||||
mutatesSelfAsArray: true,
|
||||
returns: null,
|
||||
returnsPrimitive: UNKNOWN_LITERAL_NUMBER
|
||||
@@ -6795,6 +6812,7 @@ const METHOD_MUTATES_SELF_RETURNS_NUMBER = [
|
||||
const METHOD_MUTATES_SELF_RETURNS_UNKNOWN = [
|
||||
new Method({
|
||||
callsArgs: null,
|
||||
mutatesArgs: false,
|
||||
mutatesSelfAsArray: true,
|
||||
returns: null,
|
||||
returnsPrimitive: UNKNOWN_EXPRESSION
|
||||
@@ -6803,6 +6821,7 @@ const METHOD_MUTATES_SELF_RETURNS_UNKNOWN = [
|
||||
const METHOD_DEOPTS_SELF_RETURNS_UNKNOWN = [
|
||||
new Method({
|
||||
callsArgs: null,
|
||||
mutatesArgs: false,
|
||||
mutatesSelfAsArray: 'deopt-only',
|
||||
returns: null,
|
||||
returnsPrimitive: UNKNOWN_EXPRESSION
|
||||
@@ -6811,6 +6830,7 @@ const METHOD_DEOPTS_SELF_RETURNS_UNKNOWN = [
|
||||
const METHOD_CALLS_ARG_DEOPTS_SELF_RETURNS_UNKNOWN = [
|
||||
new Method({
|
||||
callsArgs: [0],
|
||||
mutatesArgs: false,
|
||||
mutatesSelfAsArray: 'deopt-only',
|
||||
returns: null,
|
||||
returnsPrimitive: UNKNOWN_EXPRESSION
|
||||
@@ -6819,6 +6839,7 @@ const METHOD_CALLS_ARG_DEOPTS_SELF_RETURNS_UNKNOWN = [
|
||||
const METHOD_MUTATES_SELF_RETURNS_SELF = [
|
||||
new Method({
|
||||
callsArgs: null,
|
||||
mutatesArgs: false,
|
||||
mutatesSelfAsArray: true,
|
||||
returns: 'self',
|
||||
returnsPrimitive: null
|
||||
@@ -6827,6 +6848,7 @@ const METHOD_MUTATES_SELF_RETURNS_SELF = [
|
||||
const METHOD_CALLS_ARG_MUTATES_SELF_RETURNS_SELF = [
|
||||
new Method({
|
||||
callsArgs: [0],
|
||||
mutatesArgs: false,
|
||||
mutatesSelfAsArray: true,
|
||||
returns: 'self',
|
||||
returnsPrimitive: null
|
||||
@@ -6856,7 +6878,7 @@ const ARRAY_PROTOTYPE = new ObjectEntity({
|
||||
lastIndexOf: METHOD_RETURNS_NUMBER,
|
||||
map: METHOD_CALLS_ARG_DEOPTS_SELF_RETURNS_NEW_ARRAY,
|
||||
pop: METHOD_MUTATES_SELF_RETURNS_UNKNOWN,
|
||||
push: METHOD_MUTATES_SELF_RETURNS_NUMBER,
|
||||
push: METHOD_MUTATES_SELF_AND_ARGS_RETURNS_NUMBER,
|
||||
reduce: METHOD_CALLS_ARG_DEOPTS_SELF_RETURNS_UNKNOWN,
|
||||
reduceRight: METHOD_CALLS_ARG_DEOPTS_SELF_RETURNS_UNKNOWN,
|
||||
reverse: METHOD_MUTATES_SELF_RETURNS_SELF,
|
||||
@@ -6867,7 +6889,7 @@ const ARRAY_PROTOTYPE = new ObjectEntity({
|
||||
splice: METHOD_MUTATES_SELF_RETURNS_NEW_ARRAY,
|
||||
toLocaleString: METHOD_RETURNS_STRING,
|
||||
toString: METHOD_RETURNS_STRING,
|
||||
unshift: METHOD_MUTATES_SELF_RETURNS_NUMBER,
|
||||
unshift: METHOD_MUTATES_SELF_AND_ARGS_RETURNS_NUMBER,
|
||||
values: METHOD_DEOPTS_SELF_RETURNS_UNKNOWN
|
||||
}, OBJECT_PROTOTYPE, true);
|
||||
|
||||
|
||||
4
node_modules/rollup/dist/shared/watch-cli.js
generated
vendored
4
node_modules/rollup/dist/shared/watch-cli.js
generated
vendored
@@ -1,7 +1,7 @@
|
||||
/*
|
||||
@license
|
||||
Rollup.js v4.9.5
|
||||
Fri, 12 Jan 2024 06:15:44 GMT - commit 7fa474cc5ed91c96a4ff80e286aa8534bc15834f
|
||||
Rollup.js v4.9.6
|
||||
Sun, 21 Jan 2024 05:51:51 GMT - commit ecb6b0a430098052781aa6ee04ec92ee70960321
|
||||
|
||||
https://github.com/rollup/rollup
|
||||
|
||||
|
||||
4
node_modules/rollup/dist/shared/watch.js
generated
vendored
4
node_modules/rollup/dist/shared/watch.js
generated
vendored
@@ -1,7 +1,7 @@
|
||||
/*
|
||||
@license
|
||||
Rollup.js v4.9.5
|
||||
Fri, 12 Jan 2024 06:15:44 GMT - commit 7fa474cc5ed91c96a4ff80e286aa8534bc15834f
|
||||
Rollup.js v4.9.6
|
||||
Sun, 21 Jan 2024 05:51:51 GMT - commit ecb6b0a430098052781aa6ee04ec92ee70960321
|
||||
|
||||
https://github.com/rollup/rollup
|
||||
|
||||
|
||||
50
node_modules/rollup/package.json
generated
vendored
50
node_modules/rollup/package.json
generated
vendored
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "rollup",
|
||||
"version": "4.9.5",
|
||||
"version": "4.9.6",
|
||||
"description": "Next-generation ES module bundler",
|
||||
"main": "dist/rollup.js",
|
||||
"module": "dist/es/rollup.js",
|
||||
@@ -33,7 +33,7 @@
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"build": "npm run build:wasm && concurrently -c green,blue \"npm run build:napi -- --release\" \"npm:build:js\" && npm run build:copy-native",
|
||||
"build": "concurrently -c green,blue \"npm run build:wasm\" \"npm:build:ast-converters\" && concurrently -c green,blue \"npm run build:napi -- --release\" \"npm:build:js\" && npm run build:copy-native",
|
||||
"build:quick": "concurrently -c green,blue 'npm:build:napi' 'npm:build:cjs' && npm run build:copy-native",
|
||||
"build:napi": "napi build --platform --dts native.d.ts --js false --cargo-cwd rust -p bindings_napi --cargo-name bindings_napi",
|
||||
"build:wasm": "wasm-pack build rust/bindings_wasm --out-dir ../../wasm --target web --no-pack && shx rm wasm/.gitignore",
|
||||
@@ -48,6 +48,7 @@
|
||||
"build:cjs": "rollup --config rollup.config.ts --configPlugin typescript --configTest --forceExit",
|
||||
"build:bootstrap": "shx mv dist dist-build && node dist-build/bin/rollup --config rollup.config.ts --configPlugin typescript --forceExit && shx rm -rf dist-build",
|
||||
"build:docs": "vitepress build docs",
|
||||
"build:ast-converters": "node scripts/generate-ast-converters.js",
|
||||
"preview:docs": "vitepress preview docs",
|
||||
"ci:artifacts": "napi artifacts",
|
||||
"ci:lint": "concurrently -c red,yellow,green,blue 'npm:lint:js:nofix' 'npm:lint:native-js' 'npm:lint:markdown:nofix' 'npm:lint:rust:nofix'",
|
||||
@@ -101,19 +102,19 @@
|
||||
"homepage": "https://rollupjs.org/",
|
||||
"optionalDependencies": {
|
||||
"fsevents": "~2.3.2",
|
||||
"@rollup/rollup-darwin-arm64": "4.9.5",
|
||||
"@rollup/rollup-android-arm64": "4.9.5",
|
||||
"@rollup/rollup-win32-arm64-msvc": "4.9.5",
|
||||
"@rollup/rollup-linux-arm64-gnu": "4.9.5",
|
||||
"@rollup/rollup-linux-arm64-musl": "4.9.5",
|
||||
"@rollup/rollup-android-arm-eabi": "4.9.5",
|
||||
"@rollup/rollup-linux-arm-gnueabihf": "4.9.5",
|
||||
"@rollup/rollup-win32-ia32-msvc": "4.9.5",
|
||||
"@rollup/rollup-linux-riscv64-gnu": "4.9.5",
|
||||
"@rollup/rollup-darwin-x64": "4.9.5",
|
||||
"@rollup/rollup-win32-x64-msvc": "4.9.5",
|
||||
"@rollup/rollup-linux-x64-gnu": "4.9.5",
|
||||
"@rollup/rollup-linux-x64-musl": "4.9.5"
|
||||
"@rollup/rollup-darwin-arm64": "4.9.6",
|
||||
"@rollup/rollup-android-arm64": "4.9.6",
|
||||
"@rollup/rollup-win32-arm64-msvc": "4.9.6",
|
||||
"@rollup/rollup-linux-arm64-gnu": "4.9.6",
|
||||
"@rollup/rollup-linux-arm64-musl": "4.9.6",
|
||||
"@rollup/rollup-android-arm-eabi": "4.9.6",
|
||||
"@rollup/rollup-linux-arm-gnueabihf": "4.9.6",
|
||||
"@rollup/rollup-win32-ia32-msvc": "4.9.6",
|
||||
"@rollup/rollup-linux-riscv64-gnu": "4.9.6",
|
||||
"@rollup/rollup-darwin-x64": "4.9.6",
|
||||
"@rollup/rollup-win32-x64-msvc": "4.9.6",
|
||||
"@rollup/rollup-linux-x64-gnu": "4.9.6",
|
||||
"@rollup/rollup-linux-x64-musl": "4.9.6"
|
||||
},
|
||||
"dependencies": {
|
||||
"@types/estree": "1.0.5"
|
||||
@@ -140,12 +141,13 @@
|
||||
"@rollup/plugin-terser": "^0.4.4",
|
||||
"@rollup/plugin-typescript": "11.1.5",
|
||||
"@rollup/pluginutils": "^5.1.0",
|
||||
"@types/eslint": "^8.56.2",
|
||||
"@types/inquirer": "^9.0.7",
|
||||
"@types/mocha": "^10.0.6",
|
||||
"@types/node": "18.0.0",
|
||||
"@types/node": "^18.11.19",
|
||||
"@types/yargs-parser": "^21.0.3",
|
||||
"@typescript-eslint/eslint-plugin": "^6.18.1",
|
||||
"@typescript-eslint/parser": "^6.18.1",
|
||||
"@typescript-eslint/eslint-plugin": "^6.19.0",
|
||||
"@typescript-eslint/parser": "^6.19.0",
|
||||
"@vue/eslint-config-prettier": "^9.0.0",
|
||||
"@vue/eslint-config-typescript": "^12.0.0",
|
||||
"acorn": "^8.11.3",
|
||||
@@ -162,9 +164,9 @@
|
||||
"eslint": "^8.56.0",
|
||||
"eslint-config-prettier": "^9.1.0",
|
||||
"eslint-plugin-import": "^2.29.1",
|
||||
"eslint-plugin-prettier": "^5.1.2",
|
||||
"eslint-plugin-prettier": "^5.1.3",
|
||||
"eslint-plugin-unicorn": "^50.0.1",
|
||||
"eslint-plugin-vue": "^9.19.2",
|
||||
"eslint-plugin-vue": "^9.20.1",
|
||||
"fixturify": "^3.0.0",
|
||||
"flru": "^1.0.2",
|
||||
"fs-extra": "^11.2.0",
|
||||
@@ -178,11 +180,11 @@
|
||||
"mocha": "^10.2.0",
|
||||
"nyc": "^15.1.0",
|
||||
"pinia": "^2.1.7",
|
||||
"prettier": "^3.1.1",
|
||||
"prettier": "^3.2.2",
|
||||
"pretty-bytes": "^6.1.1",
|
||||
"pretty-ms": "^8.0.0",
|
||||
"requirejs": "^2.3.6",
|
||||
"rollup": "^4.9.4",
|
||||
"rollup": "^4.9.5",
|
||||
"rollup-plugin-license": "^3.2.0",
|
||||
"rollup-plugin-string": "^3.0.0",
|
||||
"semver": "^7.5.4",
|
||||
@@ -195,8 +197,8 @@
|
||||
"tslib": "^2.6.2",
|
||||
"typescript": "^5.3.3",
|
||||
"vite": "^5.0.11",
|
||||
"vitepress": "^1.0.0-rc.36",
|
||||
"vue": "^3.4.6",
|
||||
"vitepress": "^1.0.0-rc.39",
|
||||
"vue": "^3.4.14",
|
||||
"wasm-pack": "^0.12.1",
|
||||
"weak-napi": "^2.0.2",
|
||||
"yargs-parser": "^21.1.1"
|
||||
|
||||
Reference in New Issue
Block a user