This commit is contained in:
parent
f24bc45b25
commit
78b2ed7412
189
dist/index.js
vendored
189
dist/index.js
vendored
@ -1,7 +1,7 @@
|
|||||||
import require$$0 from 'os';
|
import require$$0 from 'os';
|
||||||
import require$$0$1 from 'crypto';
|
import require$$0$1 from 'crypto';
|
||||||
import require$$1 from 'fs';
|
import require$$1 from 'fs';
|
||||||
import require$$1$4, { resolve } from 'path';
|
import require$$1$4 from 'path';
|
||||||
import require$$2$1 from 'http';
|
import require$$2$1 from 'http';
|
||||||
import require$$3$1 from 'https';
|
import require$$3$1 from 'https';
|
||||||
import require$$0$4 from 'net';
|
import require$$0$4 from 'net';
|
||||||
@ -21,13 +21,12 @@ import require$$2$2 from 'perf_hooks';
|
|||||||
import require$$5 from 'util/types';
|
import require$$5 from 'util/types';
|
||||||
import require$$4$2 from 'async_hooks';
|
import require$$4$2 from 'async_hooks';
|
||||||
import require$$1$2 from 'console';
|
import require$$1$2 from 'console';
|
||||||
import require$$1$3, { fileURLToPath } from 'url';
|
import require$$1$3 from 'url';
|
||||||
import require$$3$2 from 'zlib';
|
import require$$3$2 from 'zlib';
|
||||||
import require$$6 from 'string_decoder';
|
import require$$6 from 'string_decoder';
|
||||||
import require$$0$9 from 'diagnostics_channel';
|
import require$$0$9 from 'diagnostics_channel';
|
||||||
import require$$2$3 from 'child_process';
|
import require$$2$3 from 'child_process';
|
||||||
import require$$6$1 from 'timers';
|
import require$$6$1 from 'timers';
|
||||||
import { readFile } from 'fs/promises';
|
|
||||||
import { spawnSync } from 'node:child_process';
|
import { spawnSync } from 'node:child_process';
|
||||||
|
|
||||||
var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
|
var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
|
||||||
@ -41,7 +40,11 @@ function getAugmentedNamespace(n) {
|
|||||||
var f = n.default;
|
var f = n.default;
|
||||||
if (typeof f == "function") {
|
if (typeof f == "function") {
|
||||||
var a = function a () {
|
var a = function a () {
|
||||||
if (this instanceof a) {
|
var isInstance = false;
|
||||||
|
try {
|
||||||
|
isInstance = this instanceof a;
|
||||||
|
} catch {}
|
||||||
|
if (isInstance) {
|
||||||
return Reflect.construct(f, arguments, this.constructor);
|
return Reflect.construct(f, arguments, this.constructor);
|
||||||
}
|
}
|
||||||
return f.apply(this, arguments);
|
return f.apply(this, arguments);
|
||||||
@ -34480,6 +34483,14 @@ function requireConventionalCommitsParser () {
|
|||||||
|
|
||||||
var conventionalCommitsParserExports = requireConventionalCommitsParser();
|
var conventionalCommitsParserExports = requireConventionalCommitsParser();
|
||||||
|
|
||||||
|
var parserOpts = {};
|
||||||
|
|
||||||
|
var hasRequiredParserOpts;
|
||||||
|
|
||||||
|
function requireParserOpts () {
|
||||||
|
if (hasRequiredParserOpts) return parserOpts;
|
||||||
|
hasRequiredParserOpts = 1;
|
||||||
|
|
||||||
function createParserOpts () {
|
function createParserOpts () {
|
||||||
return {
|
return {
|
||||||
headerPattern: /^(\w*)(?:\((.*)\))?: (.*)$/,
|
headerPattern: /^(\w*)(?:\((.*)\))?: (.*)$/,
|
||||||
@ -34489,11 +34500,17 @@ function createParserOpts () {
|
|||||||
'subject'
|
'subject'
|
||||||
],
|
],
|
||||||
noteKeywords: ['BREAKING CHANGE'],
|
noteKeywords: ['BREAKING CHANGE'],
|
||||||
revertPattern: /^(?:Revert|revert:)\s"?([\s\S]+?)"?\s*This reverts commit (\w{7,40})\b/i,
|
revertPattern: /^(?:Revert|revert:)\s"?([\s\S]+?)"?\s*This reverts commit (\w*)\./i,
|
||||||
revertCorrespondence: ['header', 'hash']
|
revertCorrespondence: ['header', 'hash']
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
parserOpts.createParserOpts = createParserOpts;
|
||||||
|
return parserOpts;
|
||||||
|
}
|
||||||
|
|
||||||
|
var writerOpts = {};
|
||||||
|
|
||||||
var arrayIfy;
|
var arrayIfy;
|
||||||
var hasRequiredArrayIfy;
|
var hasRequiredArrayIfy;
|
||||||
|
|
||||||
@ -34720,17 +34737,22 @@ function requireCompareFunc () {
|
|||||||
return compareFunc_1;
|
return compareFunc_1;
|
||||||
}
|
}
|
||||||
|
|
||||||
var compareFuncExports = requireCompareFunc();
|
var hasRequiredWriterOpts;
|
||||||
var compareFunc = /*@__PURE__*/getDefaultExportFromCjs(compareFuncExports);
|
|
||||||
|
|
||||||
const dirname = fileURLToPath(new URL('.', import.meta.url));
|
function requireWriterOpts () {
|
||||||
|
if (hasRequiredWriterOpts) return writerOpts;
|
||||||
|
hasRequiredWriterOpts = 1;
|
||||||
|
|
||||||
|
const compareFunc = requireCompareFunc();
|
||||||
|
const { readFile } = require$$1.promises;
|
||||||
|
const { resolve } = require$$1$4;
|
||||||
|
|
||||||
async function createWriterOpts () {
|
async function createWriterOpts () {
|
||||||
const [template, header, commit, footer] = await Promise.all([
|
const [template, header, commit, footer] = await Promise.all([
|
||||||
readFile(resolve(dirname, './templates/template.hbs'), 'utf-8'),
|
readFile(resolve(__dirname, './templates/template.hbs'), 'utf-8'),
|
||||||
readFile(resolve(dirname, './templates/header.hbs'), 'utf-8'),
|
readFile(resolve(__dirname, './templates/header.hbs'), 'utf-8'),
|
||||||
readFile(resolve(dirname, './templates/commit.hbs'), 'utf-8'),
|
readFile(resolve(__dirname, './templates/commit.hbs'), 'utf-8'),
|
||||||
readFile(resolve(dirname, './templates/footer.hbs'), 'utf-8')
|
readFile(resolve(__dirname, './templates/footer.hbs'), 'utf-8')
|
||||||
]);
|
]);
|
||||||
const writerOpts = getWriterOpts();
|
const writerOpts = getWriterOpts();
|
||||||
|
|
||||||
@ -34742,68 +34764,66 @@ async function createWriterOpts () {
|
|||||||
return writerOpts
|
return writerOpts
|
||||||
}
|
}
|
||||||
|
|
||||||
|
writerOpts.createWriterOpts = createWriterOpts;
|
||||||
|
|
||||||
function getWriterOpts () {
|
function getWriterOpts () {
|
||||||
return {
|
return {
|
||||||
transform: (commit, context) => {
|
transform: (commit, context) => {
|
||||||
let discard = true;
|
let discard = true;
|
||||||
const notes = commit.notes.map(note => {
|
const issues = [];
|
||||||
discard = false;
|
|
||||||
|
|
||||||
return {
|
commit.notes.forEach(note => {
|
||||||
...note,
|
note.title = 'BREAKING CHANGES';
|
||||||
title: 'BREAKING CHANGES'
|
discard = false;
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
|
||||||
let type = commit.type;
|
|
||||||
|
|
||||||
if (commit.type === 'feat') {
|
if (commit.type === 'feat') {
|
||||||
type = 'Features';
|
commit.type = 'Features';
|
||||||
} else if (commit.type === 'fix') {
|
} else if (commit.type === 'fix') {
|
||||||
type = 'Bug Fixes';
|
commit.type = 'Bug Fixes';
|
||||||
} else if (commit.type === 'perf') {
|
} else if (commit.type === 'perf') {
|
||||||
type = 'Performance Improvements';
|
commit.type = 'Performance Improvements';
|
||||||
} else if (commit.type === 'revert' || commit.revert) {
|
} else if (commit.type === 'revert' || commit.revert) {
|
||||||
type = 'Reverts';
|
commit.type = 'Reverts';
|
||||||
} else if (discard) {
|
} else if (discard) {
|
||||||
return
|
return
|
||||||
} else if (commit.type === 'docs') {
|
} else if (commit.type === 'docs') {
|
||||||
type = 'Documentation';
|
commit.type = 'Documentation';
|
||||||
} else if (commit.type === 'style') {
|
} else if (commit.type === 'style') {
|
||||||
type = 'Styles';
|
commit.type = 'Styles';
|
||||||
} else if (commit.type === 'refactor') {
|
} else if (commit.type === 'refactor') {
|
||||||
type = 'Code Refactoring';
|
commit.type = 'Code Refactoring';
|
||||||
} else if (commit.type === 'test') {
|
} else if (commit.type === 'test') {
|
||||||
type = 'Tests';
|
commit.type = 'Tests';
|
||||||
} else if (commit.type === 'build') {
|
} else if (commit.type === 'build') {
|
||||||
type = 'Build System';
|
commit.type = 'Build System';
|
||||||
} else if (commit.type === 'ci') {
|
} else if (commit.type === 'ci') {
|
||||||
type = 'Continuous Integration';
|
commit.type = 'Continuous Integration';
|
||||||
}
|
}
|
||||||
|
|
||||||
const scope = commit.scope === '*' ? '' : commit.scope;
|
if (commit.scope === '*') {
|
||||||
const shortHash = typeof commit.hash === 'string'
|
commit.scope = '';
|
||||||
? commit.hash.substring(0, 7)
|
}
|
||||||
: commit.shortHash;
|
|
||||||
|
|
||||||
const issues = [];
|
if (typeof commit.hash === 'string') {
|
||||||
let subject = commit.subject;
|
commit.shortHash = commit.hash.substring(0, 7);
|
||||||
|
}
|
||||||
|
|
||||||
if (typeof subject === 'string') {
|
if (typeof commit.subject === 'string') {
|
||||||
let url = context.repository
|
let url = context.repository
|
||||||
? `${context.host}/${context.owner}/${context.repository}`
|
? `${context.host}/${context.owner}/${context.repository}`
|
||||||
: context.repoUrl;
|
: context.repoUrl;
|
||||||
if (url) {
|
if (url) {
|
||||||
url = `${url}/issues/`;
|
url = `${url}/issues/`;
|
||||||
// Issue URLs.
|
// Issue URLs.
|
||||||
subject = subject.replace(/#([0-9]+)/g, (_, issue) => {
|
commit.subject = commit.subject.replace(/#([0-9]+)/g, (_, issue) => {
|
||||||
issues.push(issue);
|
issues.push(issue);
|
||||||
return `[#${issue}](${url}${issue})`
|
return `[#${issue}](${url}${issue})`
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
if (context.host) {
|
if (context.host) {
|
||||||
// User URLs.
|
// User URLs.
|
||||||
subject = subject.replace(/\B@([a-z0-9](?:-?[a-z0-9/]){0,38})/g, (_, username) => {
|
commit.subject = commit.subject.replace(/\B@([a-z0-9](?:-?[a-z0-9/]){0,38})/g, (_, username) => {
|
||||||
if (username.includes('/')) {
|
if (username.includes('/')) {
|
||||||
return `@${username}`
|
return `@${username}`
|
||||||
}
|
}
|
||||||
@ -34814,16 +34834,15 @@ function getWriterOpts () {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// remove references that already appear in the subject
|
// remove references that already appear in the subject
|
||||||
const references = commit.references.filter(reference => !issues.includes(reference.issue));
|
commit.references = commit.references.filter(reference => {
|
||||||
|
if (issues.indexOf(reference.issue) === -1) {
|
||||||
return {
|
return true
|
||||||
notes,
|
|
||||||
type,
|
|
||||||
scope,
|
|
||||||
shortHash,
|
|
||||||
subject,
|
|
||||||
references
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return false
|
||||||
|
});
|
||||||
|
|
||||||
|
return commit
|
||||||
},
|
},
|
||||||
groupBy: 'type',
|
groupBy: 'type',
|
||||||
commitGroupsSort: 'title',
|
commitGroupsSort: 'title',
|
||||||
@ -34832,8 +34851,41 @@ function getWriterOpts () {
|
|||||||
notesSort: compareFunc
|
notesSort: compareFunc
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
return writerOpts;
|
||||||
|
}
|
||||||
|
|
||||||
function whatBump (commits) {
|
var conventionalChangelog = {};
|
||||||
|
|
||||||
|
var hasRequiredConventionalChangelog;
|
||||||
|
|
||||||
|
function requireConventionalChangelog () {
|
||||||
|
if (hasRequiredConventionalChangelog) return conventionalChangelog;
|
||||||
|
hasRequiredConventionalChangelog = 1;
|
||||||
|
|
||||||
|
function createConventionalChangelogOpts (parserOpts, writerOpts) {
|
||||||
|
return {
|
||||||
|
parserOpts,
|
||||||
|
writerOpts
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
conventionalChangelog.createConventionalChangelogOpts = createConventionalChangelogOpts;
|
||||||
|
return conventionalChangelog;
|
||||||
|
}
|
||||||
|
|
||||||
|
var conventionalRecommendedBump = {};
|
||||||
|
|
||||||
|
var hasRequiredConventionalRecommendedBump;
|
||||||
|
|
||||||
|
function requireConventionalRecommendedBump () {
|
||||||
|
if (hasRequiredConventionalRecommendedBump) return conventionalRecommendedBump;
|
||||||
|
hasRequiredConventionalRecommendedBump = 1;
|
||||||
|
|
||||||
|
function createConventionalRecommendedBumpOpts (parserOpts) {
|
||||||
|
return {
|
||||||
|
parserOpts,
|
||||||
|
|
||||||
|
whatBump (commits) {
|
||||||
let level = 2;
|
let level = 2;
|
||||||
let breakings = 0;
|
let breakings = 0;
|
||||||
let features = 0;
|
let features = 0;
|
||||||
@ -34857,17 +34909,48 @@ function whatBump (commits) {
|
|||||||
: `There are ${breakings} BREAKING CHANGES and ${features} features`
|
: `There are ${breakings} BREAKING CHANGES and ${features} features`
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
conventionalRecommendedBump.createConventionalRecommendedBumpOpts = createConventionalRecommendedBumpOpts;
|
||||||
|
return conventionalRecommendedBump;
|
||||||
|
}
|
||||||
|
|
||||||
|
var conventionalChangelogAngular;
|
||||||
|
var hasRequiredConventionalChangelogAngular;
|
||||||
|
|
||||||
|
function requireConventionalChangelogAngular () {
|
||||||
|
if (hasRequiredConventionalChangelogAngular) return conventionalChangelogAngular;
|
||||||
|
hasRequiredConventionalChangelogAngular = 1;
|
||||||
|
|
||||||
|
const { createParserOpts } = requireParserOpts();
|
||||||
|
const { createWriterOpts } = requireWriterOpts();
|
||||||
|
const { createConventionalChangelogOpts } = requireConventionalChangelog();
|
||||||
|
const { createConventionalRecommendedBumpOpts } = requireConventionalRecommendedBump();
|
||||||
|
|
||||||
async function createPreset () {
|
async function createPreset () {
|
||||||
|
const parserOpts = createParserOpts();
|
||||||
|
const writerOpts = await createWriterOpts();
|
||||||
|
const recommendedBumpOpts = createConventionalRecommendedBumpOpts(parserOpts);
|
||||||
|
const conventionalChangelog = createConventionalChangelogOpts(parserOpts, writerOpts);
|
||||||
|
|
||||||
return {
|
return {
|
||||||
parser: createParserOpts(),
|
parserOpts,
|
||||||
writer: await createWriterOpts(),
|
writerOpts,
|
||||||
whatBump
|
recommendedBumpOpts,
|
||||||
|
conventionalChangelog
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
conventionalChangelogAngular = createPreset;
|
||||||
|
return conventionalChangelogAngular;
|
||||||
|
}
|
||||||
|
|
||||||
|
var conventionalChangelogAngularExports = requireConventionalChangelogAngular();
|
||||||
|
var defaultChangelogOpts = /*@__PURE__*/getDefaultExportFromCjs(conventionalChangelogAngularExports);
|
||||||
|
|
||||||
async function parse(message, parser = conventionalCommitsParserExports.sync, parserOpts) {
|
async function parse(message, parser = conventionalCommitsParserExports.sync, parserOpts) {
|
||||||
const preset = await createPreset();
|
const preset = await defaultChangelogOpts();
|
||||||
const defaultOpts = preset.parserOpts;
|
const defaultOpts = preset.parserOpts;
|
||||||
const opts = {
|
const opts = {
|
||||||
...defaultOpts,
|
...defaultOpts,
|
||||||
|
|||||||
2
dist/index.js.map
vendored
2
dist/index.js.map
vendored
File diff suppressed because one or more lines are too long
203
package-lock.json
generated
203
package-lock.json
generated
@ -130,7 +130,7 @@
|
|||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@commitlint/types": "^19.8.1",
|
"@commitlint/types": "^19.8.1",
|
||||||
"conventional-changelog-angular": "^8.0.0",
|
"conventional-changelog-angular": "^7.0.0",
|
||||||
"conventional-commits-parser": "^5.0.0"
|
"conventional-commits-parser": "^5.0.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
@ -349,9 +349,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@rollup/plugin-commonjs": {
|
"node_modules/@rollup/plugin-commonjs": {
|
||||||
"version": "28.0.3",
|
"version": "28.0.6",
|
||||||
"resolved": "https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-28.0.3.tgz",
|
"resolved": "https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-28.0.6.tgz",
|
||||||
"integrity": "sha512-pyltgilam1QPdn+Zd9gaCfOLcnjMEJ9gV+bTw6/r73INdvzf1ah9zLIJBm+kW7R6IUFIQ1YO+VqZtYxZNWFPEQ==",
|
"integrity": "sha512-XSQB1K7FUU5QP+3lOQmVCE3I0FcbbNvmNT4VJSj93iUjayaARrTQeoRdiYQoftAJBLrR9t2agwAd3ekaTgHNlw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
@ -401,9 +401,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@rollup/pluginutils": {
|
"node_modules/@rollup/pluginutils": {
|
||||||
"version": "5.1.4",
|
"version": "5.2.0",
|
||||||
"resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.1.4.tgz",
|
"resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.2.0.tgz",
|
||||||
"integrity": "sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==",
|
"integrity": "sha512-qWJ2ZTbmumwiLFomfzTyt5Kng4hwPi9rwCYN4SHb6eaRU1KNO4ccxINHr/VhH4GgPlt1XfSTLX2LBTme8ne4Zw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
@ -424,9 +424,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@rollup/rollup-android-arm-eabi": {
|
"node_modules/@rollup/rollup-android-arm-eabi": {
|
||||||
"version": "4.43.0",
|
"version": "4.44.0",
|
||||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.43.0.tgz",
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.44.0.tgz",
|
||||||
"integrity": "sha512-Krjy9awJl6rKbruhQDgivNbD1WuLb8xAclM4IR4cN5pHGAs2oIMMQJEiC3IC/9TZJ+QZkmZhlMO/6MBGxPidpw==",
|
"integrity": "sha512-xEiEE5oDW6tK4jXCAyliuntGR+amEMO7HLtdSshVuhFnKTYoeYMyXQK7pLouAJJj5KHdwdn87bfHAR2nSdNAUA==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"arm"
|
"arm"
|
||||||
],
|
],
|
||||||
@ -438,9 +438,9 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"node_modules/@rollup/rollup-android-arm64": {
|
"node_modules/@rollup/rollup-android-arm64": {
|
||||||
"version": "4.43.0",
|
"version": "4.44.0",
|
||||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.43.0.tgz",
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.44.0.tgz",
|
||||||
"integrity": "sha512-ss4YJwRt5I63454Rpj+mXCXicakdFmKnUNxr1dLK+5rv5FJgAxnN7s31a5VchRYxCFWdmnDWKd0wbAdTr0J5EA==",
|
"integrity": "sha512-uNSk/TgvMbskcHxXYHzqwiyBlJ/lGcv8DaUfcnNwict8ba9GTTNxfn3/FAoFZYgkaXXAdrAA+SLyKplyi349Jw==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"arm64"
|
"arm64"
|
||||||
],
|
],
|
||||||
@ -452,9 +452,9 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"node_modules/@rollup/rollup-darwin-arm64": {
|
"node_modules/@rollup/rollup-darwin-arm64": {
|
||||||
"version": "4.43.0",
|
"version": "4.44.0",
|
||||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.43.0.tgz",
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.44.0.tgz",
|
||||||
"integrity": "sha512-eKoL8ykZ7zz8MjgBenEF2OoTNFAPFz1/lyJ5UmmFSz5jW+7XbH1+MAgCVHy72aG59rbuQLcJeiMrP8qP5d/N0A==",
|
"integrity": "sha512-VGF3wy0Eq1gcEIkSCr8Ke03CWT+Pm2yveKLaDvq51pPpZza3JX/ClxXOCmTYYq3us5MvEuNRTaeyFThCKRQhOA==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"arm64"
|
"arm64"
|
||||||
],
|
],
|
||||||
@ -466,9 +466,9 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"node_modules/@rollup/rollup-darwin-x64": {
|
"node_modules/@rollup/rollup-darwin-x64": {
|
||||||
"version": "4.43.0",
|
"version": "4.44.0",
|
||||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.43.0.tgz",
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.44.0.tgz",
|
||||||
"integrity": "sha512-SYwXJgaBYW33Wi/q4ubN+ldWC4DzQY62S4Ll2dgfr/dbPoF50dlQwEaEHSKrQdSjC6oIe1WgzosoaNoHCdNuMg==",
|
"integrity": "sha512-fBkyrDhwquRvrTxSGH/qqt3/T0w5Rg0L7ZIDypvBPc1/gzjJle6acCpZ36blwuwcKD/u6oCE/sRWlUAcxLWQbQ==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"x64"
|
"x64"
|
||||||
],
|
],
|
||||||
@ -480,9 +480,9 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"node_modules/@rollup/rollup-freebsd-arm64": {
|
"node_modules/@rollup/rollup-freebsd-arm64": {
|
||||||
"version": "4.43.0",
|
"version": "4.44.0",
|
||||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.43.0.tgz",
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.44.0.tgz",
|
||||||
"integrity": "sha512-SV+U5sSo0yujrjzBF7/YidieK2iF6E7MdF6EbYxNz94lA+R0wKl3SiixGyG/9Klab6uNBIqsN7j4Y/Fya7wAjQ==",
|
"integrity": "sha512-u5AZzdQJYJXByB8giQ+r4VyfZP+walV+xHWdaFx/1VxsOn6eWJhK2Vl2eElvDJFKQBo/hcYIBg/jaKS8ZmKeNQ==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"arm64"
|
"arm64"
|
||||||
],
|
],
|
||||||
@ -494,9 +494,9 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"node_modules/@rollup/rollup-freebsd-x64": {
|
"node_modules/@rollup/rollup-freebsd-x64": {
|
||||||
"version": "4.43.0",
|
"version": "4.44.0",
|
||||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.43.0.tgz",
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.44.0.tgz",
|
||||||
"integrity": "sha512-J7uCsiV13L/VOeHJBo5SjasKiGxJ0g+nQTrBkAsmQBIdil3KhPnSE9GnRon4ejX1XDdsmK/l30IYLiAaQEO0Cg==",
|
"integrity": "sha512-qC0kS48c/s3EtdArkimctY7h3nHicQeEUdjJzYVJYR3ct3kWSafmn6jkNCA8InbUdge6PVx6keqjk5lVGJf99g==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"x64"
|
"x64"
|
||||||
],
|
],
|
||||||
@ -508,9 +508,9 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
|
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
|
||||||
"version": "4.43.0",
|
"version": "4.44.0",
|
||||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.43.0.tgz",
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.44.0.tgz",
|
||||||
"integrity": "sha512-gTJ/JnnjCMc15uwB10TTATBEhK9meBIY+gXP4s0sHD1zHOaIh4Dmy1X9wup18IiY9tTNk5gJc4yx9ctj/fjrIw==",
|
"integrity": "sha512-x+e/Z9H0RAWckn4V2OZZl6EmV0L2diuX3QB0uM1r6BvhUIv6xBPL5mrAX2E3e8N8rEHVPwFfz/ETUbV4oW9+lQ==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"arm"
|
"arm"
|
||||||
],
|
],
|
||||||
@ -522,9 +522,9 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
|
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
|
||||||
"version": "4.43.0",
|
"version": "4.44.0",
|
||||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.43.0.tgz",
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.44.0.tgz",
|
||||||
"integrity": "sha512-ZJ3gZynL1LDSIvRfz0qXtTNs56n5DI2Mq+WACWZ7yGHFUEirHBRt7fyIk0NsCKhmRhn7WAcjgSkSVVxKlPNFFw==",
|
"integrity": "sha512-1exwiBFf4PU/8HvI8s80icyCcnAIB86MCBdst51fwFmH5dyeoWVPVgmQPcKrMtBQ0W5pAs7jBCWuRXgEpRzSCg==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"arm"
|
"arm"
|
||||||
],
|
],
|
||||||
@ -536,9 +536,9 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"node_modules/@rollup/rollup-linux-arm64-gnu": {
|
"node_modules/@rollup/rollup-linux-arm64-gnu": {
|
||||||
"version": "4.43.0",
|
"version": "4.44.0",
|
||||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.43.0.tgz",
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.44.0.tgz",
|
||||||
"integrity": "sha512-8FnkipasmOOSSlfucGYEu58U8cxEdhziKjPD2FIa0ONVMxvl/hmONtX/7y4vGjdUhjcTHlKlDhw3H9t98fPvyA==",
|
"integrity": "sha512-ZTR2mxBHb4tK4wGf9b8SYg0Y6KQPjGpR4UWwTFdnmjB4qRtoATZ5dWn3KsDwGa5Z2ZBOE7K52L36J9LueKBdOQ==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"arm64"
|
"arm64"
|
||||||
],
|
],
|
||||||
@ -550,9 +550,9 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"node_modules/@rollup/rollup-linux-arm64-musl": {
|
"node_modules/@rollup/rollup-linux-arm64-musl": {
|
||||||
"version": "4.43.0",
|
"version": "4.44.0",
|
||||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.43.0.tgz",
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.44.0.tgz",
|
||||||
"integrity": "sha512-KPPyAdlcIZ6S9C3S2cndXDkV0Bb1OSMsX0Eelr2Bay4EsF9yi9u9uzc9RniK3mcUGCLhWY9oLr6er80P5DE6XA==",
|
"integrity": "sha512-GFWfAhVhWGd4r6UxmnKRTBwP1qmModHtd5gkraeW2G490BpFOZkFtem8yuX2NyafIP/mGpRJgTJ2PwohQkUY/Q==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"arm64"
|
"arm64"
|
||||||
],
|
],
|
||||||
@ -564,9 +564,9 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"node_modules/@rollup/rollup-linux-loongarch64-gnu": {
|
"node_modules/@rollup/rollup-linux-loongarch64-gnu": {
|
||||||
"version": "4.43.0",
|
"version": "4.44.0",
|
||||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.43.0.tgz",
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.44.0.tgz",
|
||||||
"integrity": "sha512-HPGDIH0/ZzAZjvtlXj6g+KDQ9ZMHfSP553za7o2Odegb/BEfwJcR0Sw0RLNpQ9nC6Gy8s+3mSS9xjZ0n3rhcYg==",
|
"integrity": "sha512-xw+FTGcov/ejdusVOqKgMGW3c4+AgqrfvzWEVXcNP6zq2ue+lsYUgJ+5Rtn/OTJf7e2CbgTFvzLW2j0YAtj0Gg==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"loong64"
|
"loong64"
|
||||||
],
|
],
|
||||||
@ -578,9 +578,9 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"node_modules/@rollup/rollup-linux-powerpc64le-gnu": {
|
"node_modules/@rollup/rollup-linux-powerpc64le-gnu": {
|
||||||
"version": "4.43.0",
|
"version": "4.44.0",
|
||||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.43.0.tgz",
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.44.0.tgz",
|
||||||
"integrity": "sha512-gEmwbOws4U4GLAJDhhtSPWPXUzDfMRedT3hFMyRAvM9Mrnj+dJIFIeL7otsv2WF3D7GrV0GIewW0y28dOYWkmw==",
|
"integrity": "sha512-bKGibTr9IdF0zr21kMvkZT4K6NV+jjRnBoVMt2uNMG0BYWm3qOVmYnXKzx7UhwrviKnmK46IKMByMgvpdQlyJQ==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"ppc64"
|
"ppc64"
|
||||||
],
|
],
|
||||||
@ -592,9 +592,9 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
|
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
|
||||||
"version": "4.43.0",
|
"version": "4.44.0",
|
||||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.43.0.tgz",
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.44.0.tgz",
|
||||||
"integrity": "sha512-XXKvo2e+wFtXZF/9xoWohHg+MuRnvO29TI5Hqe9xwN5uN8NKUYy7tXUG3EZAlfchufNCTHNGjEx7uN78KsBo0g==",
|
"integrity": "sha512-vV3cL48U5kDaKZtXrti12YRa7TyxgKAIDoYdqSIOMOFBXqFj2XbChHAtXquEn2+n78ciFgr4KIqEbydEGPxXgA==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"riscv64"
|
"riscv64"
|
||||||
],
|
],
|
||||||
@ -606,9 +606,9 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"node_modules/@rollup/rollup-linux-riscv64-musl": {
|
"node_modules/@rollup/rollup-linux-riscv64-musl": {
|
||||||
"version": "4.43.0",
|
"version": "4.44.0",
|
||||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.43.0.tgz",
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.44.0.tgz",
|
||||||
"integrity": "sha512-ruf3hPWhjw6uDFsOAzmbNIvlXFXlBQ4nk57Sec8E8rUxs/AI4HD6xmiiasOOx/3QxS2f5eQMKTAwk7KHwpzr/Q==",
|
"integrity": "sha512-TDKO8KlHJuvTEdfw5YYFBjhFts2TR0VpZsnLLSYmB7AaohJhM8ctDSdDnUGq77hUh4m/djRafw+9zQpkOanE2Q==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"riscv64"
|
"riscv64"
|
||||||
],
|
],
|
||||||
@ -620,9 +620,9 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"node_modules/@rollup/rollup-linux-s390x-gnu": {
|
"node_modules/@rollup/rollup-linux-s390x-gnu": {
|
||||||
"version": "4.43.0",
|
"version": "4.44.0",
|
||||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.43.0.tgz",
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.44.0.tgz",
|
||||||
"integrity": "sha512-QmNIAqDiEMEvFV15rsSnjoSmO0+eJLoKRD9EAa9rrYNwO/XRCtOGM3A5A0X+wmG+XRrw9Fxdsw+LnyYiZWWcVw==",
|
"integrity": "sha512-8541GEyktXaw4lvnGp9m84KENcxInhAt6vPWJ9RodsB/iGjHoMB2Pp5MVBCiKIRxrxzJhGCxmNzdu+oDQ7kwRA==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"s390x"
|
"s390x"
|
||||||
],
|
],
|
||||||
@ -634,9 +634,9 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"node_modules/@rollup/rollup-linux-x64-gnu": {
|
"node_modules/@rollup/rollup-linux-x64-gnu": {
|
||||||
"version": "4.43.0",
|
"version": "4.44.0",
|
||||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.43.0.tgz",
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.44.0.tgz",
|
||||||
"integrity": "sha512-jAHr/S0iiBtFyzjhOkAics/2SrXE092qyqEg96e90L3t9Op8OTzS6+IX0Fy5wCt2+KqeHAkti+eitV0wvblEoQ==",
|
"integrity": "sha512-iUVJc3c0o8l9Sa/qlDL2Z9UP92UZZW1+EmQ4xfjTc1akr0iUFZNfxrXJ/R1T90h/ILm9iXEY6+iPrmYB3pXKjw==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"x64"
|
"x64"
|
||||||
],
|
],
|
||||||
@ -648,9 +648,9 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"node_modules/@rollup/rollup-linux-x64-musl": {
|
"node_modules/@rollup/rollup-linux-x64-musl": {
|
||||||
"version": "4.43.0",
|
"version": "4.44.0",
|
||||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.43.0.tgz",
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.44.0.tgz",
|
||||||
"integrity": "sha512-3yATWgdeXyuHtBhrLt98w+5fKurdqvs8B53LaoKD7P7H7FKOONLsBVMNl9ghPQZQuYcceV5CDyPfyfGpMWD9mQ==",
|
"integrity": "sha512-PQUobbhLTQT5yz/SPg116VJBgz+XOtXt8D1ck+sfJJhuEsMj2jSej5yTdp8CvWBSceu+WW+ibVL6dm0ptG5fcA==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"x64"
|
"x64"
|
||||||
],
|
],
|
||||||
@ -662,9 +662,9 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"node_modules/@rollup/rollup-win32-arm64-msvc": {
|
"node_modules/@rollup/rollup-win32-arm64-msvc": {
|
||||||
"version": "4.43.0",
|
"version": "4.44.0",
|
||||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.43.0.tgz",
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.44.0.tgz",
|
||||||
"integrity": "sha512-wVzXp2qDSCOpcBCT5WRWLmpJRIzv23valvcTwMHEobkjippNf+C3ys/+wf07poPkeNix0paTNemB2XrHr2TnGw==",
|
"integrity": "sha512-M0CpcHf8TWn+4oTxJfh7LQuTuaYeXGbk0eageVjQCKzYLsajWS/lFC94qlRqOlyC2KvRT90ZrfXULYmukeIy7w==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"arm64"
|
"arm64"
|
||||||
],
|
],
|
||||||
@ -676,9 +676,9 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"node_modules/@rollup/rollup-win32-ia32-msvc": {
|
"node_modules/@rollup/rollup-win32-ia32-msvc": {
|
||||||
"version": "4.43.0",
|
"version": "4.44.0",
|
||||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.43.0.tgz",
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.44.0.tgz",
|
||||||
"integrity": "sha512-fYCTEyzf8d+7diCw8b+asvWDCLMjsCEA8alvtAutqJOJp/wL5hs1rWSqJ1vkjgW0L2NB4bsYJrpKkiIPRR9dvw==",
|
"integrity": "sha512-3XJ0NQtMAXTWFW8FqZKcw3gOQwBtVWP/u8TpHP3CRPXD7Pd6s8lLdH3sHWh8vqKCyyiI8xW5ltJScQmBU9j7WA==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"ia32"
|
"ia32"
|
||||||
],
|
],
|
||||||
@ -690,9 +690,9 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"node_modules/@rollup/rollup-win32-x64-msvc": {
|
"node_modules/@rollup/rollup-win32-x64-msvc": {
|
||||||
"version": "4.43.0",
|
"version": "4.44.0",
|
||||||
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.43.0.tgz",
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.44.0.tgz",
|
||||||
"integrity": "sha512-SnGhLiE5rlK0ofq8kzuDkM0g7FN1s5VYY+YSMTibP7CqShxCQvqtNxTARS4xX4PFJfHjG0ZQYX9iGzI3FQh5Aw==",
|
"integrity": "sha512-Q2Mgwt+D8hd5FIPUuPDsvPR7Bguza6yTkJxspDGkZj7tBRn2y4KSWYuIXpftFSjBra76TbKerCV7rgFPQrn+wQ==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"x64"
|
"x64"
|
||||||
],
|
],
|
||||||
@ -720,9 +720,9 @@
|
|||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
"node_modules/@types/node": {
|
"node_modules/@types/node": {
|
||||||
"version": "24.0.1",
|
"version": "24.0.3",
|
||||||
"resolved": "https://registry.npmjs.org/@types/node/-/node-24.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/@types/node/-/node-24.0.3.tgz",
|
||||||
"integrity": "sha512-MX4Zioh39chHlDJbKmEgydJDS3tspMP/lnQC67G3SWsTnb9NeYVWOjkxpOSy4oMfPs4StcWHwBrvUb4ybfnuaw==",
|
"integrity": "sha512-R4I/kzCYAdRLzfiCabn9hxWfbuHS573x+r0dJMkkzThEa7pbrcDWK+9zu3e7aBOouf+rQAciqPFMnxwr0aWgKg==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"undici-types": "~7.8.0"
|
"undici-types": "~7.8.0"
|
||||||
@ -777,15 +777,15 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/conventional-changelog-angular": {
|
"node_modules/conventional-changelog-angular": {
|
||||||
"version": "8.0.0",
|
"version": "7.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-8.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-7.0.0.tgz",
|
||||||
"integrity": "sha512-CLf+zr6St0wIxos4bmaKHRXWAcsCXrJU6F4VdNDrGRK3B8LDLKoX3zuMV5GhtbGkVR/LohZ6MT6im43vZLSjmA==",
|
"integrity": "sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"compare-func": "^2.0.0"
|
"compare-func": "^2.0.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=18"
|
"node": ">=16"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/conventional-commits-parser": {
|
"node_modules/conventional-commits-parser": {
|
||||||
@ -1076,13 +1076,13 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/rollup": {
|
"node_modules/rollup": {
|
||||||
"version": "4.43.0",
|
"version": "4.44.0",
|
||||||
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.43.0.tgz",
|
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.44.0.tgz",
|
||||||
"integrity": "sha512-wdN2Kd3Twh8MAEOEJZsuxuLKCsBEo4PVNLK6tQWAn10VhsVewQLzcucMgLolRlhFybGxfclbPeEYBaP6RvUFGg==",
|
"integrity": "sha512-qHcdEzLCiktQIfwBq420pn2dP+30uzqYxv9ETm91wdt2R9AFcWfjNAmje4NWlnCIQ5RMTzVf0ZyisOKqHR6RwA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@types/estree": "1.0.7"
|
"@types/estree": "1.0.8"
|
||||||
},
|
},
|
||||||
"bin": {
|
"bin": {
|
||||||
"rollup": "dist/bin/rollup"
|
"rollup": "dist/bin/rollup"
|
||||||
@ -1092,36 +1092,29 @@
|
|||||||
"npm": ">=8.0.0"
|
"npm": ">=8.0.0"
|
||||||
},
|
},
|
||||||
"optionalDependencies": {
|
"optionalDependencies": {
|
||||||
"@rollup/rollup-android-arm-eabi": "4.43.0",
|
"@rollup/rollup-android-arm-eabi": "4.44.0",
|
||||||
"@rollup/rollup-android-arm64": "4.43.0",
|
"@rollup/rollup-android-arm64": "4.44.0",
|
||||||
"@rollup/rollup-darwin-arm64": "4.43.0",
|
"@rollup/rollup-darwin-arm64": "4.44.0",
|
||||||
"@rollup/rollup-darwin-x64": "4.43.0",
|
"@rollup/rollup-darwin-x64": "4.44.0",
|
||||||
"@rollup/rollup-freebsd-arm64": "4.43.0",
|
"@rollup/rollup-freebsd-arm64": "4.44.0",
|
||||||
"@rollup/rollup-freebsd-x64": "4.43.0",
|
"@rollup/rollup-freebsd-x64": "4.44.0",
|
||||||
"@rollup/rollup-linux-arm-gnueabihf": "4.43.0",
|
"@rollup/rollup-linux-arm-gnueabihf": "4.44.0",
|
||||||
"@rollup/rollup-linux-arm-musleabihf": "4.43.0",
|
"@rollup/rollup-linux-arm-musleabihf": "4.44.0",
|
||||||
"@rollup/rollup-linux-arm64-gnu": "4.43.0",
|
"@rollup/rollup-linux-arm64-gnu": "4.44.0",
|
||||||
"@rollup/rollup-linux-arm64-musl": "4.43.0",
|
"@rollup/rollup-linux-arm64-musl": "4.44.0",
|
||||||
"@rollup/rollup-linux-loongarch64-gnu": "4.43.0",
|
"@rollup/rollup-linux-loongarch64-gnu": "4.44.0",
|
||||||
"@rollup/rollup-linux-powerpc64le-gnu": "4.43.0",
|
"@rollup/rollup-linux-powerpc64le-gnu": "4.44.0",
|
||||||
"@rollup/rollup-linux-riscv64-gnu": "4.43.0",
|
"@rollup/rollup-linux-riscv64-gnu": "4.44.0",
|
||||||
"@rollup/rollup-linux-riscv64-musl": "4.43.0",
|
"@rollup/rollup-linux-riscv64-musl": "4.44.0",
|
||||||
"@rollup/rollup-linux-s390x-gnu": "4.43.0",
|
"@rollup/rollup-linux-s390x-gnu": "4.44.0",
|
||||||
"@rollup/rollup-linux-x64-gnu": "4.43.0",
|
"@rollup/rollup-linux-x64-gnu": "4.44.0",
|
||||||
"@rollup/rollup-linux-x64-musl": "4.43.0",
|
"@rollup/rollup-linux-x64-musl": "4.44.0",
|
||||||
"@rollup/rollup-win32-arm64-msvc": "4.43.0",
|
"@rollup/rollup-win32-arm64-msvc": "4.44.0",
|
||||||
"@rollup/rollup-win32-ia32-msvc": "4.43.0",
|
"@rollup/rollup-win32-ia32-msvc": "4.44.0",
|
||||||
"@rollup/rollup-win32-x64-msvc": "4.43.0",
|
"@rollup/rollup-win32-x64-msvc": "4.44.0",
|
||||||
"fsevents": "~2.3.2"
|
"fsevents": "~2.3.2"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/rollup/node_modules/@types/estree": {
|
|
||||||
"version": "1.0.7",
|
|
||||||
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.7.tgz",
|
|
||||||
"integrity": "sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==",
|
|
||||||
"dev": true,
|
|
||||||
"license": "MIT"
|
|
||||||
},
|
|
||||||
"node_modules/semver": {
|
"node_modules/semver": {
|
||||||
"version": "7.7.2",
|
"version": "7.7.2",
|
||||||
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz",
|
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user