🔧 Update npm + login page

This commit is contained in:
TiclemFR
2024-01-25 14:00:48 +01:00
parent 468c2cd0e6
commit 336f2bae93
128 changed files with 3078 additions and 2368 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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

File diff suppressed because it is too large Load Diff

View File

@@ -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);

View File

@@ -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

View File

@@ -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