diff --git a/apps/chat/src/main.single-spa.ts b/apps/chat/src/main.single-spa.ts
index fd7e6b6f..2138a475 100644
--- a/apps/chat/src/main.single-spa.ts
+++ b/apps/chat/src/main.single-spa.ts
@@ -1,7 +1,10 @@
-import { NgZone } from '@angular/core';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { NavigationStart, Router } from '@angular/router';
-import { singleSpaAngular, getSingleSpaExtraProviders, enableProdMode } from 'single-spa-angular';
+import {
+ singleSpaAngular,
+ getSingleSpaExtraProviders,
+ enableProdMode,
+} from '@single-spa-community/angular';
import { AppModule } from './app/app.module';
import { environment } from './environments/environment';
@@ -16,6 +19,7 @@ const lifecycles = singleSpaAngular({
singleSpaPropsSubject.next(singleSpaProps);
const ngModuleRef = await platformBrowserDynamic(getSingleSpaExtraProviders()).bootstrapModule(
AppModule,
+ { ngZone: 'noop' },
);
ngModuleRef.onDestroy(() => {
// This is used only for testing purposes.
@@ -24,7 +28,7 @@ const lifecycles = singleSpaAngular({
return ngModuleRef;
},
template: '',
- NgZone,
+ NgZone: 'noop',
Router,
NavigationStart,
});
diff --git a/apps/elements/src/main.single-spa.ts b/apps/elements/src/main.single-spa.ts
index 19b262a7..69b895af 100644
--- a/apps/elements/src/main.single-spa.ts
+++ b/apps/elements/src/main.single-spa.ts
@@ -1,6 +1,6 @@
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
-import { singleSpaAngularElements } from 'single-spa-angular/elements';
-import { enableProdMode, getSingleSpaExtraProviders } from 'single-spa-angular';
+import { singleSpaAngularElements } from '@single-spa-community/angular/elements';
+import { enableProdMode, getSingleSpaExtraProviders } from '@single-spa-community/angular';
import { AppModule } from './app/app.module';
import { environment } from './environments/environment';
@@ -19,9 +19,7 @@ const lifecycles = singleSpaAngularElements({
const ngModuleRef = await platformBrowserDynamic(getSingleSpaExtraProviders()).bootstrapModule(
AppModule,
- {
- ngZone: 'noop',
- },
+ { ngZone: 'noop' },
);
ngModuleRef.onDestroy(() => unmountableStyles.unuse());
diff --git a/apps/navbar/src/main.single-spa.ts b/apps/navbar/src/main.single-spa.ts
index fd217ee0..bb1cd39c 100644
--- a/apps/navbar/src/main.single-spa.ts
+++ b/apps/navbar/src/main.single-spa.ts
@@ -1,7 +1,10 @@
-import { NgZone } from '@angular/core';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { NavigationStart, Router } from '@angular/router';
-import { singleSpaAngular, getSingleSpaExtraProviders, enableProdMode } from 'single-spa-angular';
+import {
+ singleSpaAngular,
+ getSingleSpaExtraProviders,
+ enableProdMode,
+} from '@single-spa-community/angular';
import { AppModule } from './app/app.module';
import { environment } from './environments/environment';
@@ -12,9 +15,11 @@ if (environment.production) {
const lifecycles = singleSpaAngular({
bootstrapFunction: () =>
- platformBrowserDynamic(getSingleSpaExtraProviders()).bootstrapModule(AppModule),
+ platformBrowserDynamic(getSingleSpaExtraProviders()).bootstrapModule(AppModule, {
+ ngZone: 'noop',
+ }),
template: '',
- NgZone,
+ NgZone: 'noop',
Router,
NavigationStart,
});
diff --git a/apps/noop-zone/src/main.single-spa.ts b/apps/noop-zone/src/main.single-spa.ts
index a50148d2..971bafa2 100644
--- a/apps/noop-zone/src/main.single-spa.ts
+++ b/apps/noop-zone/src/main.single-spa.ts
@@ -1,7 +1,11 @@
import { ApplicationRef } from '@angular/core';
import { NavigationStart, Router } from '@angular/router';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
-import { singleSpaAngular, enableProdMode, getSingleSpaExtraProviders } from 'single-spa-angular';
+import {
+ singleSpaAngular,
+ enableProdMode,
+ getSingleSpaExtraProviders,
+} from '@single-spa-community/angular';
import { AppModule } from './app/app.module';
import { environment } from './environments/environment';
diff --git a/apps/parcel/src/app/app.module.ts b/apps/parcel/src/app/app.module.ts
index b898cc83..0132f710 100644
--- a/apps/parcel/src/app/app.module.ts
+++ b/apps/parcel/src/app/app.module.ts
@@ -1,6 +1,6 @@
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
-import { ParcelModule } from 'single-spa-angular/parcel';
+import { ParcelModule } from '@single-spa-community/angular/parcel';
import { AppComponent } from './app.component';
diff --git a/apps/parcel/src/main.single-spa.ts b/apps/parcel/src/main.single-spa.ts
index bd45ed8c..b06587e8 100644
--- a/apps/parcel/src/main.single-spa.ts
+++ b/apps/parcel/src/main.single-spa.ts
@@ -1,6 +1,5 @@
-import { NgZone } from '@angular/core';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
-import { singleSpaAngular, enableProdMode } from 'single-spa-angular';
+import { singleSpaAngular, enableProdMode } from '@single-spa-community/angular';
import { AppModule } from './app/app.module';
import { environment } from './environments/environment';
@@ -10,9 +9,9 @@ if (environment.production) {
}
const lifecycles = singleSpaAngular({
- bootstrapFunction: () => platformBrowserDynamic().bootstrapModule(AppModule),
+ bootstrapFunction: () => platformBrowserDynamic().bootstrapModule(AppModule, { ngZone: 'noop' }),
template: '',
- NgZone,
+ NgZone: 'noop',
});
export const bootstrap = lifecycles.bootstrap;
diff --git a/apps/root-config/src/index.ejs b/apps/root-config/src/index.ejs
index f202ea69..70fe8ecf 100644
--- a/apps/root-config/src/index.ejs
+++ b/apps/root-config/src/index.ejs
@@ -53,10 +53,10 @@
"@angular/elements": "https://cdn.jsdelivr.net/npm/@esm-bundle/angular/system/es2022/angular-elements.js",
- "single-spa-angular/internals": "http://localhost:4600/es2022/single-spa-angular-internals.js",
- "single-spa-angular": "http://localhost:4600/es2022/single-spa-angular.js",
- "single-spa-angular/elements": "http://localhost:4600/es2022/single-spa-angular-elements.js",
- "single-spa-angular/parcel": "http://localhost:4600/es2022/single-spa-angular-parcel.js"
+ "@single-spa-community/angular/internals": "http://localhost:4600/es2022/single-spa-community-angular-internals.js",
+ "@single-spa-community/angular": "http://localhost:4600/es2022/single-spa-community-angular.js",
+ "@single-spa-community/angular/elements": "http://localhost:4600/es2022/single-spa-community-angular-elements.js",
+ "@single-spa-community/angular/parcel": "http://localhost:4600/es2022/single-spa-community-angular-parcel.js"
}
}
@@ -85,10 +85,10 @@
"@angular/elements": "https://cdn.jsdelivr.net/npm/@esm-bundle/angular/system/es2022/angular-elements.min.js",
- "single-spa-angular/internals": "http://localhost:4600/es2022/single-spa-angular-internals.min.js",
- "single-spa-angular": "http://localhost:4600/es2022/single-spa-angular.min.js",
- "single-spa-angular/elements": "http://localhost:4600/es2022/single-spa-angular-elements.min.js",
- "single-spa-angular/parcel": "http://localhost:4600/es2022/single-spa-angular-parcel.min.js"
+ "@single-spa-community/angular/internals": "http://localhost:4600/es2022/single-spa-community-angular-internals.min.js",
+ "@single-spa-community/angular": "http://localhost:4600/es2022/single-spa-community-angular.min.js",
+ "@single-spa-community/angular/elements": "http://localhost:4600/es2022/single-spa-community-angular-elements.min.js",
+ "@single-spa-community/angular/parcel": "http://localhost:4600/es2022/single-spa-community-angular-parcel.min.js"
}
}
diff --git a/apps/root-config/src/main.js b/apps/root-config/src/main.js
index 913c6981..15ac2d0f 100644
--- a/apps/root-config/src/main.js
+++ b/apps/root-config/src/main.js
@@ -1,47 +1,45 @@
-import('zone.js').then(() => {
- System.import('single-spa').then(({ registerApplication, start }) => {
- registerApplication({
- name: 'navbar',
- app: () => System.import('navbar'),
- activeWhen: () => true,
- });
-
- registerApplication({
- name: 'shop',
- app: () => System.import('shop'),
- activeWhen: location => location.pathname.startsWith('/shop'),
- });
+System.import('single-spa').then(({ registerApplication, start }) => {
+ registerApplication({
+ name: 'navbar',
+ app: () => System.import('navbar'),
+ activeWhen: () => true,
+ });
- registerApplication({
- name: 'chat',
- app: () => System.import('chat'),
- activeWhen: location => location.pathname.startsWith('/chat'),
- });
+ registerApplication({
+ name: 'shop',
+ app: () => System.import('shop'),
+ activeWhen: location => location.pathname.startsWith('/shop'),
+ });
- registerApplication({
- name: 'noop-zone',
- app: () => System.import('noop-zone'),
- activeWhen: location => location.pathname.startsWith('/noop-zone'),
- });
+ registerApplication({
+ name: 'chat',
+ app: () => System.import('chat'),
+ activeWhen: location => location.pathname.startsWith('/chat'),
+ });
- registerApplication({
- name: 'elements',
- app: () => System.import('elements'),
- activeWhen: location => location.pathname.startsWith('/elements'),
- });
+ registerApplication({
+ name: 'noop-zone',
+ app: () => System.import('noop-zone'),
+ activeWhen: location => location.pathname.startsWith('/noop-zone'),
+ });
- registerApplication({
- name: 'parcel',
- app: () => System.import('parcel'),
- activeWhen: location => location.pathname.startsWith('/parcel'),
- });
+ registerApplication({
+ name: 'elements',
+ app: () => System.import('elements'),
+ activeWhen: location => location.pathname.startsWith('/elements'),
+ });
- registerApplication({
- name: 'standalone',
- app: () => System.import('standalone'),
- activeWhen: location => location.pathname.startsWith('/standalone'),
- });
+ registerApplication({
+ name: 'parcel',
+ app: () => System.import('parcel'),
+ activeWhen: location => location.pathname.startsWith('/parcel'),
+ });
- start();
+ registerApplication({
+ name: 'standalone',
+ app: () => System.import('standalone'),
+ activeWhen: location => location.pathname.startsWith('/standalone'),
});
+
+ start();
});
diff --git a/apps/shop/src/main.single-spa.ts b/apps/shop/src/main.single-spa.ts
index 432e60a1..35bcb744 100644
--- a/apps/shop/src/main.single-spa.ts
+++ b/apps/shop/src/main.single-spa.ts
@@ -1,7 +1,10 @@
-import { NgZone } from '@angular/core';
import { NavigationStart, Router } from '@angular/router';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
-import { singleSpaAngular, getSingleSpaExtraProviders, enableProdMode } from 'single-spa-angular';
+import {
+ singleSpaAngular,
+ getSingleSpaExtraProviders,
+ enableProdMode,
+} from '@single-spa-community/angular';
import { loadMontserrat } from './fonts';
import { AppModule } from './app/app.module';
@@ -14,12 +17,14 @@ if (environment.production) {
const lifecycles = singleSpaAngular({
bootstrapFunction: () =>
loadMontserrat().then(() =>
- platformBrowserDynamic(getSingleSpaExtraProviders()).bootstrapModule(AppModule),
+ platformBrowserDynamic(getSingleSpaExtraProviders()).bootstrapModule(AppModule, {
+ ngZone: 'noop',
+ }),
),
template: '',
Router,
NavigationStart,
- NgZone,
+ NgZone: 'noop',
});
export const bootstrap = lifecycles.bootstrap;
diff --git a/apps/standalone/src/main.single-spa.ts b/apps/standalone/src/main.single-spa.ts
index aa4ee016..791948ba 100644
--- a/apps/standalone/src/main.single-spa.ts
+++ b/apps/standalone/src/main.single-spa.ts
@@ -1,7 +1,6 @@
-import { NgZone } from '@angular/core';
import { NavigationStart, Router } from '@angular/router';
import { bootstrapApplication } from '@angular/platform-browser';
-import { singleSpaAngular, enableProdMode } from 'single-spa-angular';
+import { singleSpaAngular, enableProdMode } from '@single-spa-community/angular';
import { appConfig } from './app/app.config';
import { environment } from './environments/environment';
@@ -16,7 +15,7 @@ const lifecycles = singleSpaAngular({
template: '',
Router,
NavigationStart,
- NgZone,
+ NgZone: 'noop',
});
export const bootstrap = lifecycles.bootstrap;
diff --git a/libs/single-spa-community-angular/src/extra-providers.ts b/libs/single-spa-community-angular/src/extra-providers.ts
index 1dbf3c1d..6da0d810 100644
--- a/libs/single-spa-community-angular/src/extra-providers.ts
+++ b/libs/single-spa-community-angular/src/extra-providers.ts
@@ -1,57 +1,116 @@
-import { Injectable, StaticProvider, Inject } from '@angular/core';
+import { inject, PlatformRef, type StaticProvider } from '@angular/core';
import {
BrowserPlatformLocation,
PlatformLocation,
- LocationChangeEvent,
- LocationChangeListener,
- DOCUMENT,
+ type LocationChangeEvent,
+ type LocationChangeListener,
} from '@angular/common';
+import { Observable, Subject } from 'rxjs';
+import { switchMap } from 'rxjs/operators';
declare const Zone: any;
-@Injectable()
+function runOutsideAngular(fn: () => T): T {
+ return typeof Zone !== 'undefined' && typeof Zone?.root?.run === 'function'
+ ? Zone.root.run(fn)
+ : fn();
+}
+
export class SingleSpaPlatformLocation extends BrowserPlatformLocation {
- // This is a simple marker that helps us to ignore PopStateEvents
- // that was not dispatched by the browser.
+ // When `pushState` or `replaceState` is called, single-spa will dispatch a synthetic
+ // `popstate` event to notify other apps of the URL change. We use this flag to
+ // distinguish those synthetic events from genuine browser back/forward navigation,
+ // so we can skip processing them and avoid triggering redundant Angular router updates.
private skipNextPopState = false;
private readonly source = 'Window.addEventListener:popstate';
+ // A Subject that buffers [listener, event] pairs for processing.
+ // Using a Subject here allows us to apply RxJS operators (switchMap + timer)
+ // to debounce and defer popstate handling, which is critical for fast navigation.
+ private readonly onPopState$ = new Subject<[LocationChangeListener, LocationChangeEvent]>();
+
+ constructor() {
+ super();
+
+ const platform = inject(PlatformRef);
+
+ // Clean up the Subject when the Angular platform is destroyed (e.g., app unmount in single-spa)
+ // to prevent memory leaks and dangling subscriptions.
+ platform.onDestroy(() => this.onPopState$.complete());
+
+ this.onPopState$
+ .pipe(
+ // `switchMap` cancels any pending timer from a previous popstate event when a new one
+ // arrives. This is the key to avoiding infinite loops and race conditions during fast
+ // navigation: if the user navigates rapidly (e.g., hitting back/forward quickly),
+ // only the most recent popstate event will be processed. Earlier ones are discarded.
+ switchMap(
+ state =>
+ // setTimeout defers execution to the next macrotask.
+ // This gives single-spa time to finish its own synchronous URL/state updates before
+ // Angular's router reacts. Without this delay, Angular and single-spa could both
+ // attempt to modify history state simultaneously, causing conflicts or infinite
+ // navigation loops.
+ new Observable<[LocationChangeListener, LocationChangeEvent]>(subscriber =>
+ runOutsideAngular(() => {
+ const timeoutId = setTimeout(() => {
+ subscriber.next(state);
+ });
+ return () => clearTimeout(timeoutId);
+ }),
+ ),
+ ),
+ )
+ .subscribe(([fn, event]) => {
+ // single-spa adds a `singleSpa` property to popstate events it dispatches itself
+ // (introduced in single-spa v5.4). This lets us distinguish synthetic events
+ // (triggered programmatically by single-spa) from genuine browser navigation events
+ // (triggered by the user pressing back/forward).
+ const popStateEventWasDispatchedBySingleSpa = !!(event as unknown as { singleSpa: boolean })
+ .singleSpa;
+
+ if (this.skipNextPopState && popStateEventWasDispatchedBySingleSpa) {
+ // This popstate event was dispatched by single-spa in response to our own
+ // `pushState`/`replaceState` call. Skip it to prevent Angular from processing
+ // a navigation it already initiated, and reset the flag for the next event.
+ this.skipNextPopState = false;
+ } else {
+ // This is either a genuine browser navigation event, or a single-spa event
+ // that we did not initiate ourselves. Let Angular's router handle it normally.
+ fn(event);
+ }
+ });
+ }
+
pushState(state: any, title: string, url: string): void {
+ // Set the flag before calling the native pushState. single-spa listens to pushState
+ // and will synchronously dispatch a synthetic popstate event in response. By setting
+ // this flag first, we ensure that synthetic event gets ignored when it arrives.
this.skipNextPopState = true;
super.pushState(state, title, url);
}
replaceState(state: any, title: string, url: string): void {
+ // Same reasoning as pushState above — set the flag before the native call
+ // so the resulting synthetic popstate event from single-spa is skipped.
this.skipNextPopState = true;
super.replaceState(state, title, url);
}
onPopState(fn: LocationChangeListener): VoidFunction {
- // `Zone.current` will reference the zone that serves as an execution context
- // to some specific application, especially when `onPopState` is called.
- const zone = Zone.current;
-
- // Wrap any event listener into zone that is specific to some application.
- // The main issue is `back/forward` buttons of browsers, because they invoke
- // `history.back|forward` which dispatch `popstate` event. Since `single-spa`
- // overrides `history.replaceState` Angular's zone cannot intercept this event.
- // Only the root zone is able to intercept all events.
- // See https://github.com/single-spa/single-spa-angular/issues/94 for more details
- fn = zone.wrap(fn, this.source);
+ // Wrap the listener in the current Zone.js zone so that Angular's change detection
+ // is triggered correctly when the listener runs. This is necessary because popstate
+ // events from browser back/forward navigation are dispatched in the root zone, outside
+ // of Angular's zone. single-spa overrides `history.replaceState`, which prevents
+ // Angular's zone from intercepting these events automatically.
+ // See https://github.com/single-spa/single-spa-angular/issues/94 for full context.
+ fn = typeof Zone !== 'undefined' && Zone?.current ? Zone.current.wrap(fn, this.source) : fn;
const onPopStateListener = (event: LocationChangeEvent) => {
- // The `LocationChangeEvent` doesn't have the `singleSpa` property, since it's added
- // by `single-spa` starting from `5.4` version. We need this check because we want
- // to skip "unnatural" PopStateEvents, the one caused by `single-spa`.
- const popStateEventWasDispatchedBySingleSpa = !!(event as unknown as { singleSpa: boolean })
- .singleSpa;
-
- if (this.skipNextPopState && popStateEventWasDispatchedBySingleSpa) {
- this.skipNextPopState = false;
- } else {
- fn(event);
- }
+ // Instead of calling `fn` directly, push the event into the Subject so it can be
+ // debounced and deferred via the switchMap + timer pipeline in the constructor.
+ this.onPopState$.next([fn, event]);
};
return super.onPopState(onPopStateListener);
@@ -59,18 +118,39 @@ export class SingleSpaPlatformLocation extends BrowserPlatformLocation {
}
/**
- * The `PlatformLocation` class is an "injectee" of the `PathLocationStrategy`,
- * which creates `Subject` internally for listening on `popstate` events. We want
- * to provide this class in the most top injector that's used during bootstrapping.
+ * The `PlatformLocation` class is injected into `PathLocationStrategy`,
+ * which creates a `Subject` internally for listening to `popstate` events. We provide
+ * this custom class in the root injector used during application bootstrapping.
+ *
+ * THIS IS REQUIRED FOR ALL APPLICATIONS (BOTH ZONE AND ZONELESS). Pass the result of
+ * this function to `platformBrowser()` when bootstrapping your application:
+ *
+ * @example
+ * const lifecycles = singleSpaAngular({
+ * bootstrapFunction: async () => {
+ * const platformRef = platformBrowser(getSingleSpaExtraProviders());
+ * return bootstrapApplication(AppComponent, appConfig, { platformRef });
+ * },
+ * template: '',
+ * NgZone: 'noop',
+ * Router,
+ * NavigationStart,
+ * });
*/
export function getSingleSpaExtraProviders(): StaticProvider[] {
return [
{
provide: SingleSpaPlatformLocation,
- deps: [[new Inject(DOCUMENT)]],
+ // Using `useClass` would necessitate decorating `SingleSpaPlatformLocation`
+ // with `@Injectable`. Using `useFactory` avoids that requirement while still
+ // allowing Angular's DI to manage the instance.
+ useFactory: () => new SingleSpaPlatformLocation(),
},
{
provide: PlatformLocation,
+ // Alias `PlatformLocation` to our custom implementation so that Angular's
+ // `PathLocationStrategy` (and anything else that injects `PlatformLocation`)
+ // uses `SingleSpaPlatformLocation` transparently.
useExisting: SingleSpaPlatformLocation,
},
];
diff --git a/package.json b/package.json
index 2b877639..5892ec83 100644
--- a/package.json
+++ b/package.json
@@ -88,7 +88,7 @@
"devDependencies": {
"@angular-builders/custom-webpack": "19.0.0",
"@angular/animations": "19.2.9",
- "@angular/cli": "~18.2.0",
+ "@angular/cli": "19.2.9",
"@angular/common": "19.2.9",
"@angular/compiler": "19.2.9",
"@angular/compiler-cli": "19.2.9",
diff --git a/schematics/ng-add/_files/src/main.single-spa.ts.template b/schematics/ng-add/_files/src/main.single-spa.ts.template
index 1fd695fb..af7066c8 100644
--- a/schematics/ng-add/_files/src/main.single-spa.ts.template
+++ b/schematics/ng-add/_files/src/main.single-spa.ts.template
@@ -3,8 +3,8 @@
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';<% if (routing) { %>
import { Router, NavigationStart } from '@angular/router';<% } %>
-<% if (routing) { %>import { singleSpaAngular, getSingleSpaExtraProviders } from 'single-spa-angular';
-<% } else { %>import { singleSpaAngular } from 'single-spa-angular';<% } %>
+<% if (routing) { %>import { singleSpaAngular, getSingleSpaExtraProviders } from '@single-spa-community/angular';
+<% } else { %>import { singleSpaAngular } from '@single-spa-community/angular';<% } %>
import { AppModule } from './app/app.module';
import { environment } from './environments/environment';
diff --git a/system/rollup.config.js b/system/rollup.config.js
index a6d5f6a7..07583f37 100644
--- a/system/rollup.config.js
+++ b/system/rollup.config.js
@@ -26,23 +26,23 @@ const packages = ['2022']
.map(ecma => [
{
ecma,
- angularPackage: 'single-spa-angular/internals',
- filename: 'single-spa-angular-internals',
+ angularPackage: '@single-spa-community/angular/internals',
+ filename: 'single-spa-community-angular-internals',
},
{
ecma,
- angularPackage: 'single-spa-angular',
- filename: 'single-spa-angular',
+ angularPackage: '@single-spa-community/angular',
+ filename: 'single-spa-community-angular',
},
{
ecma,
- angularPackage: 'single-spa-angular/elements',
- filename: 'single-spa-angular-elements',
+ angularPackage: '@single-spa-community/angular/elements',
+ filename: 'single-spa-community-angular-elements',
},
{
ecma,
- angularPackage: 'single-spa-angular/parcel',
- filename: 'single-spa-angular-parcel',
+ angularPackage: '@single-spa-community/angular/parcel',
+ filename: 'single-spa-community-angular-parcel',
},
])
.flat();
@@ -97,7 +97,7 @@ function createConfig({ ecma, prod, format, filename }) {
'rxjs/operators',
'@angular/core',
'@angular/common',
- 'single-spa-angular/internals',
+ '@single-spa-community/angular/internals',
],
};
}
diff --git a/yarn.lock b/yarn.lock
index d6a8039e..df66d028 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -36,14 +36,6 @@
lodash "^4.17.15"
webpack-merge "^6.0.0"
-"@angular-devkit/architect@0.1802.3":
- version "0.1802.3"
- resolved "https://registry.yarnpkg.com/@angular-devkit/architect/-/architect-0.1802.3.tgz#1938f2ad994b2c9693273fab0be4461351590fe0"
- integrity sha512-WQ2AmkUKy1bqrDlNfozW8+VT2Tv/Fdmu4GIXps3ytZANyAKiIvTzmmql2cRCXXraa9FNMjLWNvz+qolDxWVdYQ==
- dependencies:
- "@angular-devkit/core" "18.2.3"
- rxjs "7.8.1"
-
"@angular-devkit/architect@0.1902.19", "@angular-devkit/architect@>=0.1900.0 < 0.2000.0":
version "0.1902.19"
resolved "https://registry.yarnpkg.com/@angular-devkit/architect/-/architect-0.1902.19.tgz#de932b62fcb3f31fad542988ebd766114b03f48d"
@@ -52,6 +44,14 @@
"@angular-devkit/core" "19.2.19"
rxjs "7.8.1"
+"@angular-devkit/architect@0.1902.9":
+ version "0.1902.9"
+ resolved "https://registry.yarnpkg.com/@angular-devkit/architect/-/architect-0.1902.9.tgz#880b949dfd1740ea59f41ff91eb38b387d0222cc"
+ integrity sha512-SLUc7EaFMjhCnimqxTcv32wESJBLQ3E6c/1sAndPojyCoGiX24ASu2pxrTXrYNS9DqiJT8tReAnqmh7dmf3xwQ==
+ dependencies:
+ "@angular-devkit/core" "19.2.9"
+ rxjs "7.8.1"
+
"@angular-devkit/build-angular@^19.0.0":
version "19.2.19"
resolved "https://registry.yarnpkg.com/@angular-devkit/build-angular/-/build-angular-19.2.19.tgz#2e785c0a1cdf06b74ea2ff2b46149d3868e4d9f9"
@@ -147,6 +147,18 @@
rxjs "7.8.1"
source-map "0.7.4"
+"@angular-devkit/core@19.2.9":
+ version "19.2.9"
+ resolved "https://registry.yarnpkg.com/@angular-devkit/core/-/core-19.2.9.tgz#2320dc3d35d2101530150873f1139bcf6ec03b3d"
+ integrity sha512-vbTomKnN7H4jaif0hWAECFU2WvRbhfkYWHdlk/JtJM53iIJVL3mKWBRZ0QXITjmgfdIo3c9RcX+wFI7gGqGd6g==
+ dependencies:
+ ajv "8.17.1"
+ ajv-formats "3.0.1"
+ jsonc-parser "3.3.1"
+ picomatch "4.0.2"
+ rxjs "7.8.1"
+ source-map "0.7.4"
+
"@angular-devkit/schematics@18.2.3":
version "18.2.3"
resolved "https://registry.yarnpkg.com/@angular-devkit/schematics/-/schematics-18.2.3.tgz#686f4ac6ae8740c5ef01bf967b8620dd34fe2036"
@@ -158,6 +170,17 @@
ora "5.4.1"
rxjs "7.8.1"
+"@angular-devkit/schematics@19.2.9":
+ version "19.2.9"
+ resolved "https://registry.yarnpkg.com/@angular-devkit/schematics/-/schematics-19.2.9.tgz#d7f5a99d7d0655d9f1ac1071ac96b3daf54cd59a"
+ integrity sha512-B8FQ4hFsP4Ffh895F9GVvyhgDoZztWnAyYKiM1pyvLSQikzaUZqi9NZnD12HgMALmwm2z36zTzoSNsYFBTHgaw==
+ dependencies:
+ "@angular-devkit/core" "19.2.9"
+ jsonc-parser "3.3.1"
+ magic-string "0.30.17"
+ ora "5.4.1"
+ rxjs "7.8.1"
+
"@angular/animations@19.2.9":
version "19.2.9"
resolved "https://registry.yarnpkg.com/@angular/animations/-/animations-19.2.9.tgz#a71894bba9a4dbae88e9669c38fb5976aa620be1"
@@ -199,26 +222,26 @@
optionalDependencies:
lmdb "3.2.6"
-"@angular/cli@~18.2.0":
- version "18.2.3"
- resolved "https://registry.yarnpkg.com/@angular/cli/-/cli-18.2.3.tgz#56bdb1a52a1a612bf6e0e27e95e1f5a5d91a223d"
- integrity sha512-40258vuliH6+p8QSByZe5EcIXSj0iR3PNF6yuusClR/ByToHOnmuPw7WC+AYr0ooozmqlim/EjQe4/037OUB3w==
- dependencies:
- "@angular-devkit/architect" "0.1802.3"
- "@angular-devkit/core" "18.2.3"
- "@angular-devkit/schematics" "18.2.3"
- "@inquirer/prompts" "5.3.8"
- "@listr2/prompt-adapter-inquirer" "2.0.15"
- "@schematics/angular" "18.2.3"
+"@angular/cli@19.2.9":
+ version "19.2.9"
+ resolved "https://registry.yarnpkg.com/@angular/cli/-/cli-19.2.9.tgz#81ac85e2692595c537a358b073916b7826cc24e5"
+ integrity sha512-m3yaqrtodzO+tDspAqD6h7Ft8HzP4xbTmqPoSHaAN6Wupf/m/q94AMBmuEk74URS3q7v6PhayOuNOzBY2q4bIw==
+ dependencies:
+ "@angular-devkit/architect" "0.1902.9"
+ "@angular-devkit/core" "19.2.9"
+ "@angular-devkit/schematics" "19.2.9"
+ "@inquirer/prompts" "7.3.2"
+ "@listr2/prompt-adapter-inquirer" "2.0.18"
+ "@schematics/angular" "19.2.9"
"@yarnpkg/lockfile" "1.1.0"
- ini "4.1.3"
+ ini "5.0.0"
jsonc-parser "3.3.1"
- listr2 "8.2.4"
- npm-package-arg "11.0.3"
- npm-pick-manifest "9.1.0"
- pacote "18.0.6"
- resolve "1.22.8"
- semver "7.6.3"
+ listr2 "8.2.5"
+ npm-package-arg "12.0.2"
+ npm-pick-manifest "10.0.0"
+ pacote "20.0.0"
+ resolve "1.22.10"
+ semver "7.7.1"
symbol-observable "4.0.0"
yargs "17.7.2"
@@ -2917,16 +2940,16 @@
resolved "https://registry.yarnpkg.com/@inquirer/ansi/-/ansi-1.0.2.tgz#674a4c4d81ad460695cb2a1fc69d78cd187f337e"
integrity sha512-S8qNSZiYzFd0wAcyG5AXCvUHC5Sr7xpZ9wZ2py9XR88jUz8wooStVx5M6dRzczbBWjic9NP7+rY0Xi7qqK/aMQ==
-"@inquirer/checkbox@^2.4.7":
- version "2.5.0"
- resolved "https://registry.yarnpkg.com/@inquirer/checkbox/-/checkbox-2.5.0.tgz#41c5c9dd332c0a8fa159be23982ce080d0b199d4"
- integrity sha512-sMgdETOfi2dUHT8r7TT1BTKOwNvdDGFDXYWtQ2J69SvlYNntk9I/gJe7r5yvMwwsuKnYbuRs3pNhx4tgNck5aA==
+"@inquirer/checkbox@^4.1.2":
+ version "4.3.2"
+ resolved "https://registry.yarnpkg.com/@inquirer/checkbox/-/checkbox-4.3.2.tgz#e1483e6519d6ffef97281a54d2a5baa0d81b3f3b"
+ integrity sha512-VXukHf0RR1doGe6Sm4F0Em7SWYLTHSsbGfJdS9Ja2bX5/D5uwVOEjr07cncLROdBvmnvCATYEWlHqYmXv2IlQA==
dependencies:
- "@inquirer/core" "^9.1.0"
- "@inquirer/figures" "^1.0.5"
- "@inquirer/type" "^1.5.3"
- ansi-escapes "^4.3.2"
- yoctocolors-cjs "^2.1.2"
+ "@inquirer/ansi" "^1.0.2"
+ "@inquirer/core" "^10.3.2"
+ "@inquirer/figures" "^1.0.15"
+ "@inquirer/type" "^3.0.10"
+ yoctocolors-cjs "^2.1.3"
"@inquirer/confirm@5.1.6":
version "5.1.6"
@@ -2936,15 +2959,15 @@
"@inquirer/core" "^10.1.7"
"@inquirer/type" "^3.0.4"
-"@inquirer/confirm@^3.1.22":
- version "3.2.0"
- resolved "https://registry.yarnpkg.com/@inquirer/confirm/-/confirm-3.2.0.tgz#6af1284670ea7c7d95e3f1253684cfbd7228ad6a"
- integrity sha512-oOIwPs0Dvq5220Z8lGL/6LHRTEr9TgLHmiI99Rj1PJ1p1czTys+olrgBqZk4E2qC0YTzeHprxSQmoHioVdJ7Lw==
+"@inquirer/confirm@^5.1.6":
+ version "5.1.21"
+ resolved "https://registry.yarnpkg.com/@inquirer/confirm/-/confirm-5.1.21.tgz#610c4acd7797d94890a6e2dde2c98eb1e891dd12"
+ integrity sha512-KR8edRkIsUayMXV+o3Gv+q4jlhENF9nMYUZs9PA2HzrXeHI8M5uDag70U7RJn9yyiMZSbtF5/UexBtAVtZGSbQ==
dependencies:
- "@inquirer/core" "^9.1.0"
- "@inquirer/type" "^1.5.3"
+ "@inquirer/core" "^10.3.2"
+ "@inquirer/type" "^3.0.10"
-"@inquirer/core@^10.1.7":
+"@inquirer/core@^10.1.7", "@inquirer/core@^10.3.2":
version "10.3.2"
resolved "https://registry.yarnpkg.com/@inquirer/core/-/core-10.3.2.tgz#535979ff3ff4fe1e7cc4f83e2320504c743b7e20"
integrity sha512-43RTuEbfP8MbKzedNqBrlhhNKVwoK//vUFNW3Q3vZ88BLcrs4kYpGg+B2mm5p2K/HfygoCxuKwJJiv8PbGmE0A==
@@ -2958,128 +2981,112 @@
wrap-ansi "^6.2.0"
yoctocolors-cjs "^2.1.3"
-"@inquirer/core@^9.1.0":
- version "9.1.0"
- resolved "https://registry.yarnpkg.com/@inquirer/core/-/core-9.1.0.tgz#158b82dc44564a1abd0ce14723d50c3efa0634a2"
- integrity sha512-RZVfH//2ytTjmaBIzeKT1zefcQZzuruwkpTwwbe/i2jTl4o9M+iML5ChULzz6iw1Ok8iUBBsRCjY2IEbD8Ft4w==
- dependencies:
- "@inquirer/figures" "^1.0.5"
- "@inquirer/type" "^1.5.3"
- "@types/mute-stream" "^0.0.4"
- "@types/node" "^22.5.2"
- "@types/wrap-ansi" "^3.0.0"
- ansi-escapes "^4.3.2"
- cli-spinners "^2.9.2"
- cli-width "^4.1.0"
- mute-stream "^1.0.0"
- signal-exit "^4.1.0"
- strip-ansi "^6.0.1"
- wrap-ansi "^6.2.0"
- yoctocolors-cjs "^2.1.2"
+"@inquirer/editor@^4.2.7":
+ version "4.2.23"
+ resolved "https://registry.yarnpkg.com/@inquirer/editor/-/editor-4.2.23.tgz#fe046a3bfdae931262de98c1052437d794322e0b"
+ integrity sha512-aLSROkEwirotxZ1pBaP8tugXRFCxW94gwrQLxXfrZsKkfjOYC1aRvAZuhpJOb5cu4IBTJdsCigUlf2iCOu4ZDQ==
+ dependencies:
+ "@inquirer/core" "^10.3.2"
+ "@inquirer/external-editor" "^1.0.3"
+ "@inquirer/type" "^3.0.10"
-"@inquirer/editor@^2.1.22":
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/@inquirer/editor/-/editor-2.2.0.tgz#a41eb7b151bd9a6bc3c0b69219d02d82547bc387"
- integrity sha512-9KHOpJ+dIL5SZli8lJ6xdaYLPPzB8xB9GZItg39MBybzhxA16vxmszmQFrRwbOA918WA2rvu8xhDEg/p6LXKbw==
+"@inquirer/expand@^4.0.9":
+ version "4.0.23"
+ resolved "https://registry.yarnpkg.com/@inquirer/expand/-/expand-4.0.23.tgz#a38b5f32226d75717c370bdfed792313b92bdc05"
+ integrity sha512-nRzdOyFYnpeYTTR2qFwEVmIWypzdAx/sIkCMeTNTcflFOovfqUk+HcFhQQVBftAh9gmGrpFj6QcGEqrDMDOiew==
dependencies:
- "@inquirer/core" "^9.1.0"
- "@inquirer/type" "^1.5.3"
- external-editor "^3.1.0"
+ "@inquirer/core" "^10.3.2"
+ "@inquirer/type" "^3.0.10"
+ yoctocolors-cjs "^2.1.3"
-"@inquirer/expand@^2.1.22":
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/@inquirer/expand/-/expand-2.3.0.tgz#afc44aee303315a85563e9d0275e658f0ee0e701"
- integrity sha512-qnJsUcOGCSG1e5DTOErmv2BPQqrtT6uzqn1vI/aYGiPKq+FgslGZmtdnXbhuI7IlT7OByDoEEqdnhUnVR2hhLw==
+"@inquirer/external-editor@^1.0.3":
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/@inquirer/external-editor/-/external-editor-1.0.3.tgz#c23988291ee676290fdab3fd306e64010a6d13b8"
+ integrity sha512-RWbSrDiYmO4LbejWY7ttpxczuwQyZLBUyygsA9Nsv95hpzUWwnNTVQmAq3xuh7vNwCp07UTmE5i11XAEExx4RA==
dependencies:
- "@inquirer/core" "^9.1.0"
- "@inquirer/type" "^1.5.3"
- yoctocolors-cjs "^2.1.2"
+ chardet "^2.1.1"
+ iconv-lite "^0.7.0"
"@inquirer/figures@^1.0.15":
version "1.0.15"
resolved "https://registry.yarnpkg.com/@inquirer/figures/-/figures-1.0.15.tgz#dbb49ed80df11df74268023b496ac5d9acd22b3a"
integrity sha512-t2IEY+unGHOzAaVM5Xx6DEWKeXlDDcNPeDyUpsRc6CUhBfU3VQOEl+Vssh7VNp1dR8MdUJBWhuObjXCsVpjN5g==
-"@inquirer/figures@^1.0.5":
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/@inquirer/figures/-/figures-1.0.5.tgz#57f9a996d64d3e3345d2a3ca04d36912e94f8790"
- integrity sha512-79hP/VWdZ2UVc9bFGJnoQ/lQMpL74mGgzSYX1xUqCVk7/v73vJCMw1VuyWN1jGkZ9B3z7THAbySqGbCNefcjfA==
-
-"@inquirer/input@^2.2.9":
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/@inquirer/input/-/input-2.3.0.tgz#9b99022f53780fecc842908f3f319b52a5a16865"
- integrity sha512-XfnpCStx2xgh1LIRqPXrTNEEByqQWoxsWYzNRSEUxJ5c6EQlhMogJ3vHKu8aXuTacebtaZzMAHwEL0kAflKOBw==
+"@inquirer/input@^4.1.6":
+ version "4.3.1"
+ resolved "https://registry.yarnpkg.com/@inquirer/input/-/input-4.3.1.tgz#778683b4c4c4d95d05d4b05c4a854964b73565b4"
+ integrity sha512-kN0pAM4yPrLjJ1XJBjDxyfDduXOuQHrBB8aLDMueuwUGn+vNpF7Gq7TvyVxx8u4SHlFFj4trmj+a2cbpG4Jn1g==
dependencies:
- "@inquirer/core" "^9.1.0"
- "@inquirer/type" "^1.5.3"
+ "@inquirer/core" "^10.3.2"
+ "@inquirer/type" "^3.0.10"
-"@inquirer/number@^1.0.10":
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/@inquirer/number/-/number-1.1.0.tgz#4dac004021ea67c89552a261564f103a494cac96"
- integrity sha512-ilUnia/GZUtfSZy3YEErXLJ2Sljo/mf9fiKc08n18DdwdmDbOzRcTv65H1jjDvlsAuvdFXf4Sa/aL7iw/NanVA==
+"@inquirer/number@^3.0.9":
+ version "3.0.23"
+ resolved "https://registry.yarnpkg.com/@inquirer/number/-/number-3.0.23.tgz#3fdec2540d642093fd7526818fd8d4bdc7335094"
+ integrity sha512-5Smv0OK7K0KUzUfYUXDXQc9jrf8OHo4ktlEayFlelCjwMXz0299Y8OrI+lj7i4gCBY15UObk76q0QtxjzFcFcg==
dependencies:
- "@inquirer/core" "^9.1.0"
- "@inquirer/type" "^1.5.3"
+ "@inquirer/core" "^10.3.2"
+ "@inquirer/type" "^3.0.10"
-"@inquirer/password@^2.1.22":
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/@inquirer/password/-/password-2.2.0.tgz#0b6f26336c259c8a9e5f5a3f2e1a761564f764ba"
- integrity sha512-5otqIpgsPYIshqhgtEwSspBQE40etouR8VIxzpJkv9i0dVHIpyhiivbkH9/dGiMLdyamT54YRdGJLfl8TFnLHg==
- dependencies:
- "@inquirer/core" "^9.1.0"
- "@inquirer/type" "^1.5.3"
- ansi-escapes "^4.3.2"
-
-"@inquirer/prompts@5.3.8":
- version "5.3.8"
- resolved "https://registry.yarnpkg.com/@inquirer/prompts/-/prompts-5.3.8.tgz#f394050d95076c2f1b046be324f06f619b257c3e"
- integrity sha512-b2BudQY/Si4Y2a0PdZZL6BeJtl8llgeZa7U2j47aaJSCeAl1e4UI7y8a9bSkO3o/ZbZrgT5muy/34JbsjfIWxA==
- dependencies:
- "@inquirer/checkbox" "^2.4.7"
- "@inquirer/confirm" "^3.1.22"
- "@inquirer/editor" "^2.1.22"
- "@inquirer/expand" "^2.1.22"
- "@inquirer/input" "^2.2.9"
- "@inquirer/number" "^1.0.10"
- "@inquirer/password" "^2.1.22"
- "@inquirer/rawlist" "^2.2.4"
- "@inquirer/search" "^1.0.7"
- "@inquirer/select" "^2.4.7"
-
-"@inquirer/rawlist@^2.2.4":
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/@inquirer/rawlist/-/rawlist-2.3.0.tgz#6b2c0da39c1cd855af5608b2d627681cdac7277d"
- integrity sha512-zzfNuINhFF7OLAtGHfhwOW2TlYJyli7lOUoJUXw/uyklcwalV6WRXBXtFIicN8rTRK1XTiPWB4UY+YuW8dsnLQ==
+"@inquirer/password@^4.0.9":
+ version "4.0.23"
+ resolved "https://registry.yarnpkg.com/@inquirer/password/-/password-4.0.23.tgz#b9f5187c8c92fd7aa9eceb9d8f2ead0d7e7b000d"
+ integrity sha512-zREJHjhT5vJBMZX/IUbyI9zVtVfOLiTO66MrF/3GFZYZ7T4YILW5MSkEYHceSii/KtRk+4i3RE7E1CUXA2jHcA==
dependencies:
- "@inquirer/core" "^9.1.0"
- "@inquirer/type" "^1.5.3"
- yoctocolors-cjs "^2.1.2"
+ "@inquirer/ansi" "^1.0.2"
+ "@inquirer/core" "^10.3.2"
+ "@inquirer/type" "^3.0.10"
-"@inquirer/search@^1.0.7":
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/@inquirer/search/-/search-1.1.0.tgz#665928cac2326b9501ddafbb8606ce4823b3106b"
- integrity sha512-h+/5LSj51dx7hp5xOn4QFnUaKeARwUCLs6mIhtkJ0JYPBLmEYjdHSYh7I6GrLg9LwpJ3xeX0FZgAG1q0QdCpVQ==
+"@inquirer/prompts@7.3.2":
+ version "7.3.2"
+ resolved "https://registry.yarnpkg.com/@inquirer/prompts/-/prompts-7.3.2.tgz#ad0879eb3bc783c19b78c420e5eeb18a09fc9b47"
+ integrity sha512-G1ytyOoHh5BphmEBxSwALin3n1KGNYB6yImbICcRQdzXfOGbuJ9Jske/Of5Sebk339NSGGNfUshnzK8YWkTPsQ==
+ dependencies:
+ "@inquirer/checkbox" "^4.1.2"
+ "@inquirer/confirm" "^5.1.6"
+ "@inquirer/editor" "^4.2.7"
+ "@inquirer/expand" "^4.0.9"
+ "@inquirer/input" "^4.1.6"
+ "@inquirer/number" "^3.0.9"
+ "@inquirer/password" "^4.0.9"
+ "@inquirer/rawlist" "^4.0.9"
+ "@inquirer/search" "^3.0.9"
+ "@inquirer/select" "^4.0.9"
+
+"@inquirer/rawlist@^4.0.9":
+ version "4.1.11"
+ resolved "https://registry.yarnpkg.com/@inquirer/rawlist/-/rawlist-4.1.11.tgz#313c8c3ffccb7d41e990c606465726b4a898a033"
+ integrity sha512-+LLQB8XGr3I5LZN/GuAHo+GpDJegQwuPARLChlMICNdwW7OwV2izlCSCxN6cqpL0sMXmbKbFcItJgdQq5EBXTw==
+ dependencies:
+ "@inquirer/core" "^10.3.2"
+ "@inquirer/type" "^3.0.10"
+ yoctocolors-cjs "^2.1.3"
+
+"@inquirer/search@^3.0.9":
+ version "3.2.2"
+ resolved "https://registry.yarnpkg.com/@inquirer/search/-/search-3.2.2.tgz#4cc6fd574dcd434e4399badc37c742c3fd534ac8"
+ integrity sha512-p2bvRfENXCZdWF/U2BXvnSI9h+tuA8iNqtUKb9UWbmLYCRQxd8WkvwWvYn+3NgYaNwdUkHytJMGG4MMLucI1kA==
dependencies:
- "@inquirer/core" "^9.1.0"
- "@inquirer/figures" "^1.0.5"
- "@inquirer/type" "^1.5.3"
- yoctocolors-cjs "^2.1.2"
+ "@inquirer/core" "^10.3.2"
+ "@inquirer/figures" "^1.0.15"
+ "@inquirer/type" "^3.0.10"
+ yoctocolors-cjs "^2.1.3"
-"@inquirer/select@^2.4.7":
- version "2.5.0"
- resolved "https://registry.yarnpkg.com/@inquirer/select/-/select-2.5.0.tgz#345c6908ecfaeef3d84ddd2f9feb2f487c558efb"
- integrity sha512-YmDobTItPP3WcEI86GvPo+T2sRHkxxOq/kXmsBjHS5BVXUgvgZ5AfJjkvQvZr03T81NnI3KrrRuMzeuYUQRFOA==
+"@inquirer/select@^4.0.9":
+ version "4.4.2"
+ resolved "https://registry.yarnpkg.com/@inquirer/select/-/select-4.4.2.tgz#2ac8fca960913f18f1d1b35323ed8fcd27d89323"
+ integrity sha512-l4xMuJo55MAe+N7Qr4rX90vypFwCajSakx59qe/tMaC1aEHWLyw68wF4o0A4SLAY4E0nd+Vt+EyskeDIqu1M6w==
dependencies:
- "@inquirer/core" "^9.1.0"
- "@inquirer/figures" "^1.0.5"
- "@inquirer/type" "^1.5.3"
- ansi-escapes "^4.3.2"
- yoctocolors-cjs "^2.1.2"
+ "@inquirer/ansi" "^1.0.2"
+ "@inquirer/core" "^10.3.2"
+ "@inquirer/figures" "^1.0.15"
+ "@inquirer/type" "^3.0.10"
+ yoctocolors-cjs "^2.1.3"
-"@inquirer/type@^1.5.1", "@inquirer/type@^1.5.3":
- version "1.5.3"
- resolved "https://registry.yarnpkg.com/@inquirer/type/-/type-1.5.3.tgz#220ae9f3d5ae17dd3b2ce5ffd6b48c4a30c73181"
- integrity sha512-xUQ14WQGR/HK5ei+2CvgcwoH9fQ4PgPGmVFSN0pc1+fVyDL3MREhyAY7nxEErSu6CkllBM3D7e3e+kOvtu+eIg==
+"@inquirer/type@^1.5.5":
+ version "1.5.5"
+ resolved "https://registry.yarnpkg.com/@inquirer/type/-/type-1.5.5.tgz#303ea04ce7ad2e585b921b662b3be36ef7b4f09b"
+ integrity sha512-MzICLu4yS7V8AA61sANROZ9vT1H3ooca5dSmI1FjZkzq7o/koMsRfQSzRtFo+F3Ao4Sf1C0bpLKejpKB/+j6MA==
dependencies:
mute-stream "^1.0.0"
@@ -3100,6 +3107,13 @@
wrap-ansi "^8.1.0"
wrap-ansi-cjs "npm:wrap-ansi@^7.0.0"
+"@isaacs/fs-minipass@^4.0.0":
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz#2d59ae3ab4b38fb4270bfa23d30f8e2e86c7fe32"
+ integrity sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==
+ dependencies:
+ minipass "^7.0.4"
+
"@istanbuljs/load-nyc-config@^1.0.0":
version "1.1.0"
resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced"
@@ -3397,12 +3411,12 @@
resolved "https://registry.yarnpkg.com/@leichtgewicht/ip-codec/-/ip-codec-2.0.5.tgz#4fc56c15c580b9adb7dc3c333a134e540b44bfb1"
integrity sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==
-"@listr2/prompt-adapter-inquirer@2.0.15":
- version "2.0.15"
- resolved "https://registry.yarnpkg.com/@listr2/prompt-adapter-inquirer/-/prompt-adapter-inquirer-2.0.15.tgz#45f13178b13327a28a220057a34a886cab18218e"
- integrity sha512-MZrGem/Ujjd4cPTLYDfCZK2iKKeiO/8OX13S6jqxldLs0Prf2aGqVlJ77nMBqMv7fzqgXEgjrNHLXcKR8l9lOg==
+"@listr2/prompt-adapter-inquirer@2.0.18":
+ version "2.0.18"
+ resolved "https://registry.yarnpkg.com/@listr2/prompt-adapter-inquirer/-/prompt-adapter-inquirer-2.0.18.tgz#f1bff90f201269914023b17cb383c8febd6287f2"
+ integrity sha512-0hz44rAcrphyXcA8IS7EJ2SCoaBZD2u5goE8S/e+q/DL+dOGpqpcLidVOFeLG3VgML62SXmfRLAhWt0zL1oW4Q==
dependencies:
- "@inquirer/type" "^1.5.1"
+ "@inquirer/type" "^1.5.5"
"@lmdb/lmdb-darwin-arm64@3.2.6":
version "3.2.6"
@@ -3719,10 +3733,10 @@
"@nodelib/fs.scandir" "2.1.5"
fastq "^1.6.0"
-"@npmcli/agent@^2.0.0":
- version "2.2.2"
- resolved "https://registry.yarnpkg.com/@npmcli/agent/-/agent-2.2.2.tgz#967604918e62f620a648c7975461c9c9e74fc5d5"
- integrity sha512-OrcNPXdpSl9UX7qPVRWbmWMCSXrcDa2M9DvrbOTj7ao1S4PlqVFYv9/yLKMkrJKZ/V5A/kDBC690or307i26Og==
+"@npmcli/agent@^3.0.0":
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/@npmcli/agent/-/agent-3.0.0.tgz#1685b1fbd4a1b7bb4f930cbb68ce801edfe7aa44"
+ integrity sha512-S79NdEgDQd/NGCay6TCoVzXSj74skRZIKJcpJjC5lOq34SZzyI6MqtiiWoiVWoVrTcGjNeC4ipbh1VIHlpfF5Q==
dependencies:
agent-base "^7.1.0"
http-proxy-agent "^7.0.0"
@@ -3737,70 +3751,76 @@
dependencies:
semver "^7.3.5"
-"@npmcli/git@^5.0.0":
- version "5.0.8"
- resolved "https://registry.yarnpkg.com/@npmcli/git/-/git-5.0.8.tgz#8ba3ff8724192d9ccb2735a2aa5380a992c5d3d1"
- integrity sha512-liASfw5cqhjNW9UFd+ruwwdEf/lbOAQjLL2XY2dFW/bkJheXDYZgOyul/4gVvEV4BWkTXjYGmDqMw9uegdbJNQ==
+"@npmcli/fs@^4.0.0":
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-4.0.0.tgz#a1eb1aeddefd2a4a347eca0fab30bc62c0e1c0f2"
+ integrity sha512-/xGlezI6xfGO9NwuJlnwz/K14qD1kCSAGtacBHnGzeAIuJGazcp45KP5NuyARXoKb7cwulAGWVsbeSxdG/cb0Q==
dependencies:
- "@npmcli/promise-spawn" "^7.0.0"
- ini "^4.1.3"
+ semver "^7.3.5"
+
+"@npmcli/git@^6.0.0":
+ version "6.0.3"
+ resolved "https://registry.yarnpkg.com/@npmcli/git/-/git-6.0.3.tgz#966cbb228514372877de5244db285b199836f3aa"
+ integrity sha512-GUYESQlxZRAdhs3UhbB6pVRNUELQOHXwK9ruDkwmCv2aZ5y0SApQzUJCg02p3A7Ue2J5hxvlk1YI53c00NmRyQ==
+ dependencies:
+ "@npmcli/promise-spawn" "^8.0.0"
+ ini "^5.0.0"
lru-cache "^10.0.1"
- npm-pick-manifest "^9.0.0"
- proc-log "^4.0.0"
- promise-inflight "^1.0.1"
+ npm-pick-manifest "^10.0.0"
+ proc-log "^5.0.0"
promise-retry "^2.0.1"
semver "^7.3.5"
- which "^4.0.0"
+ which "^5.0.0"
-"@npmcli/installed-package-contents@^2.0.1":
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/@npmcli/installed-package-contents/-/installed-package-contents-2.1.0.tgz#63048e5f6e40947a3a88dcbcb4fd9b76fdd37c17"
- integrity sha512-c8UuGLeZpm69BryRykLuKRyKFZYJsZSCT4aVY5ds4omyZqJ172ApzgfKJ5eV/r3HgLdUYgFVe54KSFVjKoe27w==
+"@npmcli/installed-package-contents@^3.0.0":
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/@npmcli/installed-package-contents/-/installed-package-contents-3.0.0.tgz#2c1170ff4f70f68af125e2842e1853a93223e4d1"
+ integrity sha512-fkxoPuFGvxyrH+OQzyTkX2LUEamrF4jZSmxjAtPPHHGO0dqsQ8tTKjnIS8SAnPHdk2I03BDtSMR5K/4loKg79Q==
dependencies:
- npm-bundled "^3.0.0"
- npm-normalize-package-bin "^3.0.0"
+ npm-bundled "^4.0.0"
+ npm-normalize-package-bin "^4.0.0"
-"@npmcli/node-gyp@^3.0.0":
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/@npmcli/node-gyp/-/node-gyp-3.0.0.tgz#101b2d0490ef1aa20ed460e4c0813f0db560545a"
- integrity sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==
+"@npmcli/node-gyp@^4.0.0":
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/@npmcli/node-gyp/-/node-gyp-4.0.0.tgz#01f900bae62f0f27f9a5a127b40d443ddfb9d4c6"
+ integrity sha512-+t5DZ6mO/QFh78PByMq1fGSAub/agLJZDRfJRMeOSNCt8s9YVlTjmGpIPwPhvXTGUIJk+WszlT0rQa1W33yzNA==
-"@npmcli/package-json@^5.0.0", "@npmcli/package-json@^5.1.0":
- version "5.2.0"
- resolved "https://registry.yarnpkg.com/@npmcli/package-json/-/package-json-5.2.0.tgz#a1429d3111c10044c7efbfb0fce9f2c501f4cfad"
- integrity sha512-qe/kiqqkW0AGtvBjL8TJKZk/eBBSpnJkUWvHdQ9jM2lKHXRYYJuyNpJPlJw3c8QjC2ow6NZYiLExhUaeJelbxQ==
+"@npmcli/package-json@^6.0.0":
+ version "6.2.0"
+ resolved "https://registry.yarnpkg.com/@npmcli/package-json/-/package-json-6.2.0.tgz#7c7e61e466eefdf729cb87a34c3adc15d76e2f97"
+ integrity sha512-rCNLSB/JzNvot0SEyXqWZ7tX2B5dD2a1br2Dp0vSYVo5jh8Z0EZ7lS9TsZ1UtziddB1UfNUaMCc538/HztnJGA==
dependencies:
- "@npmcli/git" "^5.0.0"
+ "@npmcli/git" "^6.0.0"
glob "^10.2.2"
- hosted-git-info "^7.0.0"
- json-parse-even-better-errors "^3.0.0"
- normalize-package-data "^6.0.0"
- proc-log "^4.0.0"
+ hosted-git-info "^8.0.0"
+ json-parse-even-better-errors "^4.0.0"
+ proc-log "^5.0.0"
semver "^7.5.3"
+ validate-npm-package-license "^3.0.4"
-"@npmcli/promise-spawn@^7.0.0":
- version "7.0.2"
- resolved "https://registry.yarnpkg.com/@npmcli/promise-spawn/-/promise-spawn-7.0.2.tgz#1d53d34ffeb5d151bfa8ec661bcccda8bbdfd532"
- integrity sha512-xhfYPXoV5Dy4UkY0D+v2KkwvnDfiA/8Mt3sWCGI/hM03NsYIH8ZaG6QzS9x7pje5vHZBZJ2v6VRFVTWACnqcmQ==
+"@npmcli/promise-spawn@^8.0.0":
+ version "8.0.3"
+ resolved "https://registry.yarnpkg.com/@npmcli/promise-spawn/-/promise-spawn-8.0.3.tgz#08c5e4c1cab7ff848e442e4b19bbf0ee699d133f"
+ integrity sha512-Yb00SWaL4F8w+K8YGhQ55+xE4RUNdMHV43WZGsiTM92gS+lC0mGsn7I4hLug7pbao035S6bj3Y3w0cUNGLfmkg==
dependencies:
- which "^4.0.0"
+ which "^5.0.0"
-"@npmcli/redact@^2.0.0":
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/@npmcli/redact/-/redact-2.0.1.tgz#95432fd566e63b35c04494621767a4312c316762"
- integrity sha512-YgsR5jCQZhVmTJvjduTOIHph0L73pK8xwMVaDY0PatySqVM9AZj93jpoXYSJqfHFxFkN9dmqTw6OiqExsS3LPw==
+"@npmcli/redact@^3.0.0":
+ version "3.2.2"
+ resolved "https://registry.yarnpkg.com/@npmcli/redact/-/redact-3.2.2.tgz#4a6745e0ae269120ad223780ce374d6c59ae34cd"
+ integrity sha512-7VmYAmk4csGv08QzrDKScdzn11jHPFGyqJW39FyPgPuAp3zIaUmuCo1yxw9aGs+NEJuTGQ9Gwqpt93vtJubucg==
-"@npmcli/run-script@^8.0.0":
- version "8.1.0"
- resolved "https://registry.yarnpkg.com/@npmcli/run-script/-/run-script-8.1.0.tgz#a563e5e29b1ca4e648a6b1bbbfe7220b4bfe39fc"
- integrity sha512-y7efHHwghQfk28G2z3tlZ67pLG0XdfYbcVG26r7YIXALRsrVQcTq4/tdenSmdOrEsNahIYA/eh8aEVROWGFUDg==
+"@npmcli/run-script@^9.0.0":
+ version "9.1.0"
+ resolved "https://registry.yarnpkg.com/@npmcli/run-script/-/run-script-9.1.0.tgz#6168c2be4703fe5ed31acb08a2151cb620ed30a4"
+ integrity sha512-aoNSbxtkePXUlbZB+anS1LqsJdctG5n3UVhfU47+CDdwMi6uNTBMF9gPcQRnqghQd2FGzcwwIFBruFMxjhBewg==
dependencies:
- "@npmcli/node-gyp" "^3.0.0"
- "@npmcli/package-json" "^5.0.0"
- "@npmcli/promise-spawn" "^7.0.0"
- node-gyp "^10.0.0"
- proc-log "^4.0.0"
- which "^4.0.0"
+ "@npmcli/node-gyp" "^4.0.0"
+ "@npmcli/package-json" "^6.0.0"
+ "@npmcli/promise-spawn" "^8.0.0"
+ node-gyp "^11.0.0"
+ proc-log "^5.0.0"
+ which "^5.0.0"
"@nrwl/angular@19.6.5":
version "19.6.5"
@@ -4594,6 +4614,15 @@
"@angular-devkit/schematics" "18.2.3"
jsonc-parser "3.3.1"
+"@schematics/angular@19.2.9":
+ version "19.2.9"
+ resolved "https://registry.yarnpkg.com/@schematics/angular/-/angular-19.2.9.tgz#9e0bcba2ea836b4d7e54be32147f2c8a847bfff5"
+ integrity sha512-V5c8qycipodwbDX3lY0sbQaG2OKkO2HdjxL0K70TzcpEwnD4uVMs73PRaLtREASzpnSo6CKewQCsgPSgyzJCKw==
+ dependencies:
+ "@angular-devkit/core" "19.2.9"
+ "@angular-devkit/schematics" "19.2.9"
+ jsonc-parser "3.3.1"
+
"@sideway/address@^4.1.5":
version "4.1.5"
resolved "https://registry.yarnpkg.com/@sideway/address/-/address-4.1.5.tgz#4bc149a0076623ced99ca8208ba780d65a99b9d5"
@@ -4611,51 +4640,51 @@
resolved "https://registry.yarnpkg.com/@sideway/pinpoint/-/pinpoint-2.0.0.tgz#cff8ffadc372ad29fd3f78277aeb29e632cc70df"
integrity sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==
-"@sigstore/bundle@^2.3.2":
- version "2.3.2"
- resolved "https://registry.yarnpkg.com/@sigstore/bundle/-/bundle-2.3.2.tgz#ad4dbb95d665405fd4a7a02c8a073dbd01e4e95e"
- integrity sha512-wueKWDk70QixNLB363yHc2D2ItTgYiMTdPwK8D9dKQMR3ZQ0c35IxP5xnwQ8cNLoCgCRcHf14kE+CLIvNX1zmA==
+"@sigstore/bundle@^3.1.0":
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/@sigstore/bundle/-/bundle-3.1.0.tgz#74f8f3787148400ddd364be8a9a9212174c66646"
+ integrity sha512-Mm1E3/CmDDCz3nDhFKTuYdB47EdRFRQMOE/EAbiG1MJW77/w1b3P7Qx7JSrVJs8PfwOLOVcKQCHErIwCTyPbag==
dependencies:
- "@sigstore/protobuf-specs" "^0.3.2"
+ "@sigstore/protobuf-specs" "^0.4.0"
-"@sigstore/core@^1.0.0", "@sigstore/core@^1.1.0":
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/@sigstore/core/-/core-1.1.0.tgz#5583d8f7ffe599fa0a89f2bf289301a5af262380"
- integrity sha512-JzBqdVIyqm2FRQCulY6nbQzMpJJpSiJ8XXWMhtOX9eKgaXXpfNOF53lzQEjIydlStnd/eFtuC1dW4VYdD93oRg==
+"@sigstore/core@^2.0.0":
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/@sigstore/core/-/core-2.0.0.tgz#f888a8e4c8fdaa27848514a281920b6fd8eca955"
+ integrity sha512-nYxaSb/MtlSI+JWcwTHQxyNmWeWrUXJJ/G4liLrGG7+tS4vAz6LF3xRXqLH6wPIVUoZQel2Fs4ddLx4NCpiIYg==
-"@sigstore/protobuf-specs@^0.3.2":
- version "0.3.2"
- resolved "https://registry.yarnpkg.com/@sigstore/protobuf-specs/-/protobuf-specs-0.3.2.tgz#5becf88e494a920f548d0163e2978f81b44b7d6f"
- integrity sha512-c6B0ehIWxMI8wiS/bj6rHMPqeFvngFV7cDU/MY+B16P9Z3Mp9k8L93eYZ7BYzSickzuqAQqAq0V956b3Ju6mLw==
+"@sigstore/protobuf-specs@^0.4.0", "@sigstore/protobuf-specs@^0.4.1":
+ version "0.4.3"
+ resolved "https://registry.yarnpkg.com/@sigstore/protobuf-specs/-/protobuf-specs-0.4.3.tgz#5d974eb16c0a1d44a3f0af6e3e7219b35ac57953"
+ integrity sha512-fk2zjD9117RL9BjqEwF7fwv7Q/P9yGsMV4MUJZ/DocaQJ6+3pKr+syBq1owU5Q5qGw5CUbXzm+4yJ2JVRDQeSA==
-"@sigstore/sign@^2.3.2":
- version "2.3.2"
- resolved "https://registry.yarnpkg.com/@sigstore/sign/-/sign-2.3.2.tgz#d3d01e56d03af96fd5c3a9b9897516b1233fc1c4"
- integrity sha512-5Vz5dPVuunIIvC5vBb0APwo7qKA4G9yM48kPWJT+OEERs40md5GoUR1yedwpekWZ4m0Hhw44m6zU+ObsON+iDA==
- dependencies:
- "@sigstore/bundle" "^2.3.2"
- "@sigstore/core" "^1.0.0"
- "@sigstore/protobuf-specs" "^0.3.2"
- make-fetch-happen "^13.0.1"
- proc-log "^4.2.0"
+"@sigstore/sign@^3.1.0":
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/@sigstore/sign/-/sign-3.1.0.tgz#5d098d4d2b59a279e9ac9b51c794104cda0c649e"
+ integrity sha512-knzjmaOHOov1Ur7N/z4B1oPqZ0QX5geUfhrVaqVlu+hl0EAoL4o+l0MSULINcD5GCWe3Z0+YJO8ues6vFlW0Yw==
+ dependencies:
+ "@sigstore/bundle" "^3.1.0"
+ "@sigstore/core" "^2.0.0"
+ "@sigstore/protobuf-specs" "^0.4.0"
+ make-fetch-happen "^14.0.2"
+ proc-log "^5.0.0"
promise-retry "^2.0.1"
-"@sigstore/tuf@^2.3.4":
- version "2.3.4"
- resolved "https://registry.yarnpkg.com/@sigstore/tuf/-/tuf-2.3.4.tgz#da1d2a20144f3b87c0172920cbc8dcc7851ca27c"
- integrity sha512-44vtsveTPUpqhm9NCrbU8CWLe3Vck2HO1PNLw7RIajbB7xhtn5RBPm1VNSCMwqGYHhDsBJG8gDF0q4lgydsJvw==
+"@sigstore/tuf@^3.1.0":
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/@sigstore/tuf/-/tuf-3.1.1.tgz#b01b261288f646e0da57737782893e7d2695c52e"
+ integrity sha512-eFFvlcBIoGwVkkwmTi/vEQFSva3xs5Ot3WmBcjgjVdiaoelBLQaQ/ZBfhlG0MnG0cmTYScPpk7eDdGDWUcFUmg==
dependencies:
- "@sigstore/protobuf-specs" "^0.3.2"
- tuf-js "^2.2.1"
+ "@sigstore/protobuf-specs" "^0.4.1"
+ tuf-js "^3.0.1"
-"@sigstore/verify@^1.2.1":
- version "1.2.1"
- resolved "https://registry.yarnpkg.com/@sigstore/verify/-/verify-1.2.1.tgz#c7e60241b432890dcb8bd8322427f6062ef819e1"
- integrity sha512-8iKx79/F73DKbGfRf7+t4dqrc0bRr0thdPrxAtCKWRm/F0tG71i6O1rvlnScncJLLBZHn3h8M3c1BSUAb9yu8g==
+"@sigstore/verify@^2.1.0":
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/@sigstore/verify/-/verify-2.1.1.tgz#f67730012cd474f595044c3717f32ac2a1e9d2bc"
+ integrity sha512-hVJD77oT67aowHxwT4+M6PGOp+E2LtLdTK3+FC0lBO9T7sYwItDMXZ7Z07IDCvR1M717a4axbIWckrW67KMP/w==
dependencies:
- "@sigstore/bundle" "^2.3.2"
- "@sigstore/core" "^1.1.0"
- "@sigstore/protobuf-specs" "^0.3.2"
+ "@sigstore/bundle" "^3.1.0"
+ "@sigstore/core" "^2.0.0"
+ "@sigstore/protobuf-specs" "^0.4.1"
"@sinclair/typebox@^0.27.8":
version "0.27.8"
@@ -4716,13 +4745,13 @@
resolved "https://registry.yarnpkg.com/@tufjs/canonical-json/-/canonical-json-2.0.0.tgz#a52f61a3d7374833fca945b2549bc30a2dd40d0a"
integrity sha512-yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA==
-"@tufjs/models@2.0.1":
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/@tufjs/models/-/models-2.0.1.tgz#e429714e753b6c2469af3212e7f320a6973c2812"
- integrity sha512-92F7/SFyufn4DXsha9+QfKnN03JGqtMFMXgSHbZOo8JG59WkTni7UzAouNQDf7AuP9OAMxVOPQcqG3sB7w+kkg==
+"@tufjs/models@3.0.1":
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/@tufjs/models/-/models-3.0.1.tgz#5aebb782ebb9e06f071ae7831c1f35b462b0319c"
+ integrity sha512-UUYHISyhCU3ZgN8yaear3cGATHb3SMuKHsQ/nVbHXcmnBf+LzQ/cQfhNG+rfaSHgqGKNEm2cOCLVLELStUQ1JA==
dependencies:
"@tufjs/canonical-json" "2.0.0"
- minimatch "^9.0.4"
+ minimatch "^9.0.5"
"@tybys/wasm-util@^0.9.0":
version "0.9.0"
@@ -4938,13 +4967,6 @@
resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.5.tgz#ec10755e871497bcd83efe927e43ec46e8c0747e"
integrity sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==
-"@types/mute-stream@^0.0.4":
- version "0.0.4"
- resolved "https://registry.yarnpkg.com/@types/mute-stream/-/mute-stream-0.0.4.tgz#77208e56a08767af6c5e1237be8888e2f255c478"
- integrity sha512-CPM9nzrCPPJHQNA9keH9CVkVI+WR5kMa+7XEs5jcGQ0VoAGnLv242w8lIVgwAEfmE4oufJRaTc9PNLQl0ioAow==
- dependencies:
- "@types/node" "*"
-
"@types/node-forge@^1.3.0":
version "1.3.11"
resolved "https://registry.yarnpkg.com/@types/node-forge/-/node-forge-1.3.11.tgz#0972ea538ddb0f4d9c2fa0ec5db5724773a604da"
@@ -4952,7 +4974,7 @@
dependencies:
"@types/node" "*"
-"@types/node@*", "@types/node@^22.5.2":
+"@types/node@*":
version "22.5.4"
resolved "https://registry.yarnpkg.com/@types/node/-/node-22.5.4.tgz#83f7d1f65bc2ed223bdbf57c7884f1d5a4fa84e8"
integrity sha512-FDuKUJQm/ju9fT/SeX/6+gBzoPzlVCzfzmGkwKvRHQVxi4BntVbyIwf6a4Xn62mrvndLiml6z/UBXIdEVjQLXg==
@@ -5100,11 +5122,6 @@
resolved "https://registry.yarnpkg.com/@types/tough-cookie/-/tough-cookie-4.0.5.tgz#cb6e2a691b70cb177c6e3ae9c1d2e8b2ea8cd304"
integrity sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==
-"@types/wrap-ansi@^3.0.0":
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/@types/wrap-ansi/-/wrap-ansi-3.0.0.tgz#18b97a972f94f60a679fd5c796d96421b9abb9fd"
- integrity sha512-ltIpx+kM7g/MLRZfkbL7EsCEjfzCcScLpkg37eXEtx5kmrAKBkTJwd1GIAjDSL8wTpM6Hzn5YO4pSb91BEwu1g==
-
"@types/ws@^8.5.10":
version "8.5.12"
resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.5.12.tgz#619475fe98f35ccca2a2f6c137702d85ec247b7e"
@@ -5588,10 +5605,10 @@ abab@^2.0.6:
resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.6.tgz#41b80f2c871d19686216b82309231cfd3cb3d291"
integrity sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==
-abbrev@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-2.0.0.tgz#cf59829b8b4f03f89dda2771cb7f3653828c89bf"
- integrity sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==
+abbrev@^3.0.0:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-3.0.1.tgz#8ac8b3b5024d31464fe2a5feeea9f4536bf44025"
+ integrity sha512-AO2ac6pjRB3SJmGJo+v5/aK6Omggp6fsLrs6wN9bd35ulu4cCwaAU9+7ZhXjeqHVkaHThLuzH0nZr0YpCDhygg==
accepts@^1.3.5, accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.8:
version "1.3.8"
@@ -5749,7 +5766,7 @@ ansi-colors@4.1.3, ansi-colors@^4.1.1, ansi-colors@^4.1.3:
resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.3.tgz#37611340eb2243e70cc604cad35d63270d48781b"
integrity sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==
-ansi-escapes@^4.2.1, ansi-escapes@^4.3.0, ansi-escapes@^4.3.2:
+ansi-escapes@^4.2.1, ansi-escapes@^4.3.0:
version "4.3.2"
resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e"
integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==
@@ -6479,6 +6496,24 @@ cacache@^18.0.0:
tar "^6.1.11"
unique-filename "^3.0.0"
+cacache@^19.0.0, cacache@^19.0.1:
+ version "19.0.1"
+ resolved "https://registry.yarnpkg.com/cacache/-/cacache-19.0.1.tgz#3370cc28a758434c85c2585008bd5bdcff17d6cd"
+ integrity sha512-hdsUxulXCi5STId78vRVYEtDAjq99ICAUktLTeTYsLoTE6Z8dS0c8pWNCxwdrk9YfJeobDZc2Y186hD/5ZQgFQ==
+ dependencies:
+ "@npmcli/fs" "^4.0.0"
+ fs-minipass "^3.0.0"
+ glob "^10.2.2"
+ lru-cache "^10.0.1"
+ minipass "^7.0.3"
+ minipass-collect "^2.0.1"
+ minipass-flush "^1.0.5"
+ minipass-pipeline "^1.2.4"
+ p-map "^7.0.2"
+ ssri "^12.0.0"
+ tar "^7.4.3"
+ unique-filename "^4.0.0"
+
cache-base@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2"
@@ -6643,10 +6678,10 @@ char-regex@^1.0.2:
resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf"
integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==
-chardet@^0.7.0:
- version "0.7.0"
- resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e"
- integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==
+chardet@^2.1.1:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/chardet/-/chardet-2.1.1.tgz#5c75593704a642f71ee53717df234031e65373c8"
+ integrity sha512-PsezH1rqdV9VvyNhxxOW32/d75r01NY7TQCmOqomRo15ZSOKbpTFVsfjghxo6JloQUCGnH4k1LGu0R4yCLlWQQ==
check-more-types@2.24.0, check-more-types@^2.24.0:
version "2.24.0"
@@ -6696,6 +6731,11 @@ chownr@^2.0.0:
resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece"
integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==
+chownr@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/chownr/-/chownr-3.0.0.tgz#9855e64ecd240a9cc4267ce8a4aa5d24a1da15e4"
+ integrity sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==
+
chrome-trace-event@^1.0.2:
version "1.0.4"
resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz#05bffd7ff928465093314708c93bdfa9bd1f0f5b"
@@ -6757,7 +6797,7 @@ cli-spinners@2.6.1:
resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.6.1.tgz#adc954ebe281c37a6319bfa401e6dd2488ffb70d"
integrity sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==
-cli-spinners@^2.5.0, cli-spinners@^2.9.2:
+cli-spinners@^2.5.0:
version "2.9.2"
resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.9.2.tgz#1773a8f4b9c4d6ac31563df53b3fc1d79462fe41"
integrity sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==
@@ -7579,7 +7619,7 @@ debug@^3.1.0, debug@^3.2.7:
dependencies:
ms "^2.1.1"
-debug@^4.4.3:
+debug@^4.4.1, debug@^4.4.3:
version "4.4.3"
resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.3.tgz#c6ae432d9bd9662582fce08709b038c58e9e3d6a"
integrity sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==
@@ -8614,15 +8654,6 @@ extend@~3.0.2:
resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa"
integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==
-external-editor@^3.1.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495"
- integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==
- dependencies:
- chardet "^0.7.0"
- iconv-lite "^0.4.24"
- tmp "^0.0.33"
-
extglob@^0.3.1:
version "0.3.2"
resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1"
@@ -9272,7 +9303,7 @@ glob2base@^0.0.12:
dependencies:
find-index "^0.1.1"
-glob@^10.2.2, glob@^10.3.10:
+glob@^10.2.2:
version "10.4.5"
resolved "https://registry.yarnpkg.com/glob/-/glob-10.4.5.tgz#f4d9f0b90ffdbab09c9d77f5f29b4262517b0956"
integrity sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==
@@ -9518,6 +9549,13 @@ hosted-git-info@^7.0.0:
dependencies:
lru-cache "^10.0.1"
+hosted-git-info@^8.0.0:
+ version "8.1.0"
+ resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-8.1.0.tgz#153cd84c03c6721481e16a5709eb74b1a0ab2ed0"
+ integrity sha512-Rw/B2DNQaPBICNXEm8balFz9a6WpZrkCGpcWFpy7nCj+NyhSdqXipmfvtmWt9xGfp0wZnBxB+iVpLmQMYt47Tw==
+ dependencies:
+ lru-cache "^10.0.1"
+
hpack.js@^2.1.6:
version "2.1.6"
resolved "https://registry.yarnpkg.com/hpack.js/-/hpack.js-2.1.6.tgz#87774c0949e513f42e84575b3c45681fade2a0b2"
@@ -9799,7 +9837,7 @@ hyperdyperid@^1.2.0:
resolved "https://registry.yarnpkg.com/hyperdyperid/-/hyperdyperid-1.2.0.tgz#59668d323ada92228d2a869d3e474d5a33b69e6b"
integrity sha512-Y93lCzHYgGWdrJ66yIktxiaGULYc6oGiABxhcO5AufBeOyoIdZF7bIfLaOrbM0iGIOXQQgxxRrFEnb+Y6w1n4A==
-iconv-lite@0.4.24, iconv-lite@^0.4.24, iconv-lite@~0.4.24:
+iconv-lite@0.4.24, iconv-lite@~0.4.24:
version "0.4.24"
resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==
@@ -9813,6 +9851,13 @@ iconv-lite@0.6.3, iconv-lite@^0.6.2, iconv-lite@^0.6.3:
dependencies:
safer-buffer ">= 2.1.2 < 3.0.0"
+iconv-lite@^0.7.0:
+ version "0.7.2"
+ resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.7.2.tgz#d0bdeac3f12b4835b7359c2ad89c422a4d1cc72e"
+ integrity sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==
+ dependencies:
+ safer-buffer ">= 2.1.2 < 3.0.0"
+
icss-utils@^5.0.0, icss-utils@^5.1.0:
version "5.1.0"
resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-5.1.0.tgz#c6be6858abd013d768e98366ae47e25d5887b1ae"
@@ -9823,10 +9868,10 @@ ieee754@^1.1.13:
resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352"
integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==
-ignore-walk@^6.0.4:
- version "6.0.5"
- resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-6.0.5.tgz#ef8d61eab7da169078723d1f82833b36e200b0dd"
- integrity sha512-VuuG0wCnjhnylG1ABXT3dAuIpTNDs/G8jlpmwXY03fXoXy/8ZK8/T+hMzt8L4WnrLCJgdybqgPagnF/f97cg3A==
+ignore-walk@^7.0.0:
+ version "7.0.0"
+ resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-7.0.0.tgz#8350e475cf4375969c12eb49618b3fd9cca6704f"
+ integrity sha512-T4gbf83A4NH95zvhVYZc+qWocBBGlpzUXLPGurJggw/WIOwicfXJChLDP/iBZnN5WqROSu5Bm3hhle4z8a8YGQ==
dependencies:
minimatch "^9.0.0"
@@ -9899,10 +9944,10 @@ ini@2.0.0:
resolved "https://registry.yarnpkg.com/ini/-/ini-2.0.0.tgz#e5fd556ecdd5726be978fa1001862eacb0a94bc5"
integrity sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==
-ini@4.1.3, ini@^4.1.3:
- version "4.1.3"
- resolved "https://registry.yarnpkg.com/ini/-/ini-4.1.3.tgz#4c359675a6071a46985eb39b14e4a2c0ec98a795"
- integrity sha512-X7rqawQBvfdjS10YU1y1YVreA3SsLrW9dX2CewP2EbBJM4ypVNLDkO5y04gejPwKIY9lR+7r9gn3rFPt/kmWFg==
+ini@5.0.0, ini@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/ini/-/ini-5.0.0.tgz#a7a4615339843d9a8ccc2d85c9d81cf93ffbc638"
+ integrity sha512-+N0ngpO3e7cRUWOJAS7qw0IZIVc6XPrW4MlFBdD066F2L4k1L6ker3hLqSq7iXxU5tgS4WGkIUElWn5vogAEnw==
ini@^1.3.4, ini@~1.3.0:
version "1.3.8"
@@ -9991,7 +10036,7 @@ is-core-module@^2.13.0, is-core-module@^2.5.0:
dependencies:
hasown "^2.0.2"
-is-core-module@^2.16.1:
+is-core-module@^2.16.0, is-core-module@^2.16.1:
version "2.16.1"
resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.16.1.tgz#2a98801a849f43e2add644fbb6bc6229b19a4ef4"
integrity sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==
@@ -10133,11 +10178,6 @@ is-interactive@^1.0.0:
resolved "https://registry.yarnpkg.com/is-interactive/-/is-interactive-1.0.0.tgz#cea6e6ae5c870a7b0a0004070b7b587e0252912e"
integrity sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==
-is-lambda@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/is-lambda/-/is-lambda-1.0.1.tgz#3d9877899e6a53efc0160504cde15f82e6f061d5"
- integrity sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==
-
is-module@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591"
@@ -10896,10 +10936,10 @@ json-parse-even-better-errors@^2.3.0, json-parse-even-better-errors@^2.3.1:
resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d"
integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==
-json-parse-even-better-errors@^3.0.0:
- version "3.0.2"
- resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.2.tgz#b43d35e89c0f3be6b5fbbe9dc6c82467b30c28da"
- integrity sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==
+json-parse-even-better-errors@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-4.0.0.tgz#d3f67bd5925e81d3e31aa466acc821c8375cec43"
+ integrity sha512-lR4MXjGNgkJc7tkQ97kb2nuEMnNCyU//XYVH0MKTGcXEiSudQ5MKGKen3C5QubYy0vmq+JGitUg92uuywGEwIA==
json-schema-traverse@^0.4.1:
version "0.4.1"
@@ -11196,18 +11236,6 @@ lint-staged@^16.2.7:
string-argv "^0.3.2"
yaml "^2.8.1"
-listr2@8.2.4:
- version "8.2.4"
- resolved "https://registry.yarnpkg.com/listr2/-/listr2-8.2.4.tgz#486b51cbdb41889108cb7e2c90eeb44519f5a77f"
- integrity sha512-opevsywziHd3zHCVQGAj8zu+Z3yHNkkoYhWIGnq54RrCVwLz0MozotJEDnKsIBLvkfLGN6BLOyAeRrYI0pKA4g==
- dependencies:
- cli-truncate "^4.0.0"
- colorette "^2.0.20"
- eventemitter3 "^5.0.1"
- log-update "^6.1.0"
- rfdc "^1.4.1"
- wrap-ansi "^9.0.0"
-
listr2@8.2.5:
version "8.2.5"
resolved "https://registry.yarnpkg.com/listr2/-/listr2-8.2.5.tgz#5c9db996e1afeb05db0448196d3d5f64fec2593d"
@@ -11511,23 +11539,22 @@ make-error@1.x, make-error@^1.1.1, make-error@^1.3.6:
resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2"
integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==
-make-fetch-happen@^13.0.0, make-fetch-happen@^13.0.1:
- version "13.0.1"
- resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-13.0.1.tgz#273ba2f78f45e1f3a6dca91cede87d9fa4821e36"
- integrity sha512-cKTUFc/rbKUd/9meOvgrpJ2WrNzymt6jfRDdwg5UCnVzv9dTpEj9JS5m3wtziXVCjluIXyL8pcaukYqezIzZQA==
+make-fetch-happen@^14.0.0, make-fetch-happen@^14.0.2, make-fetch-happen@^14.0.3:
+ version "14.0.3"
+ resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-14.0.3.tgz#d74c3ecb0028f08ab604011e0bc6baed483fcdcd"
+ integrity sha512-QMjGbFTP0blj97EeidG5hk/QhKQ3T4ICckQGLgz38QF7Vgbk6e6FTARN8KhKxyBbWn8R0HU+bnw8aSoFPD4qtQ==
dependencies:
- "@npmcli/agent" "^2.0.0"
- cacache "^18.0.0"
+ "@npmcli/agent" "^3.0.0"
+ cacache "^19.0.1"
http-cache-semantics "^4.1.1"
- is-lambda "^1.0.1"
minipass "^7.0.2"
- minipass-fetch "^3.0.0"
+ minipass-fetch "^4.0.0"
minipass-flush "^1.0.5"
minipass-pipeline "^1.2.4"
- negotiator "^0.6.3"
- proc-log "^4.2.0"
+ negotiator "^1.0.0"
+ proc-log "^5.0.0"
promise-retry "^2.0.1"
- ssri "^10.0.0"
+ ssri "^12.0.0"
makeerror@1.0.12:
version "1.0.12"
@@ -11788,7 +11815,7 @@ minimatch@^5.0.1:
dependencies:
brace-expansion "^2.0.1"
-minimatch@^9.0.0, minimatch@^9.0.4:
+minimatch@^9.0.0, minimatch@^9.0.4, minimatch@^9.0.5:
version "9.0.5"
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.5.tgz#d74f9dd6b57d83d8e98cfb82133b03978bc929e5"
integrity sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==
@@ -11823,14 +11850,14 @@ minipass-collect@^2.0.1:
dependencies:
minipass "^7.0.3"
-minipass-fetch@^3.0.0:
- version "3.0.5"
- resolved "https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-3.0.5.tgz#f0f97e40580affc4a35cc4a1349f05ae36cb1e4c"
- integrity sha512-2N8elDQAtSnFV0Dk7gt15KHsS0Fyz6CbYZ360h0WTYV1Ty46li3rAXVOQj1THMNLdmrD9Vt5pBPtWtVkpwGBqg==
+minipass-fetch@^4.0.0:
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-4.0.1.tgz#f2d717d5a418ad0b1a7274f9b913515d3e78f9e5"
+ integrity sha512-j7U11C5HXigVuutxebFadoYBbd7VSdZWggSe64NVdvWNBqGAiXPL2QVCehjmw7lY1oF9gOllYbORh+hiNgfPgQ==
dependencies:
minipass "^7.0.3"
minipass-sized "^1.0.3"
- minizlib "^2.1.2"
+ minizlib "^3.0.1"
optionalDependencies:
encoding "^0.1.13"
@@ -11867,12 +11894,12 @@ minipass@^5.0.0:
resolved "https://registry.yarnpkg.com/minipass/-/minipass-5.0.0.tgz#3e9788ffb90b694a5d0ec94479a45b5d8738133d"
integrity sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==
-"minipass@^5.0.0 || ^6.0.2 || ^7.0.0", minipass@^7.0.2, minipass@^7.0.3, minipass@^7.1.2:
+"minipass@^5.0.0 || ^6.0.2 || ^7.0.0", minipass@^7.0.2, minipass@^7.0.3, minipass@^7.0.4, minipass@^7.1.2:
version "7.1.2"
resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.1.2.tgz#93a9626ce5e5e66bd4db86849e7515e92340a707"
integrity sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==
-minizlib@^2.1.1, minizlib@^2.1.2:
+minizlib@^2.1.1:
version "2.1.2"
resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931"
integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==
@@ -11880,6 +11907,13 @@ minizlib@^2.1.1, minizlib@^2.1.2:
minipass "^3.0.0"
yallist "^4.0.0"
+minizlib@^3.0.1, minizlib@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-3.1.0.tgz#6ad76c3a8f10227c9b51d1c9ac8e30b27f5a251c"
+ integrity sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==
+ dependencies:
+ minipass "^7.1.2"
+
mixin-deep@^1.2.0:
version "1.3.2"
resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566"
@@ -12009,11 +12043,16 @@ needle@^3.1.0:
iconv-lite "^0.6.3"
sax "^1.2.4"
-negotiator@0.6.3, negotiator@^0.6.3:
+negotiator@0.6.3:
version "0.6.3"
resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd"
integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==
+negotiator@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-1.0.0.tgz#b6c91bb47172d69f93cfd7c357bbb529019b5f6a"
+ integrity sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==
+
neo-async@^2.6.2:
version "2.6.2"
resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f"
@@ -12102,21 +12141,21 @@ node-gyp-build@^4.2.2:
resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.8.2.tgz#4f802b71c1ab2ca16af830e6c1ea7dd1ad9496fa"
integrity sha512-IRUxE4BVsHWXkV/SFOut4qTlagw2aM8T5/vnTsmrHJvVoKueJHRc/JaFND7QDDc61kLYUJ6qlZM3sqTSyx2dTw==
-node-gyp@^10.0.0:
- version "10.2.0"
- resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-10.2.0.tgz#80101c4aa4f7ab225f13fcc8daaaac4eb1a8dd86"
- integrity sha512-sp3FonBAaFe4aYTcFdZUn2NYkbP7xroPGYvQmP4Nl5PxamznItBnNCgjrVTKrEfQynInMsJvZrdmqUnysCJ8rw==
+node-gyp@^11.0.0:
+ version "11.5.0"
+ resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-11.5.0.tgz#82661b5f40647a7361efe918e3cea76d297fcc56"
+ integrity sha512-ra7Kvlhxn5V9Slyus0ygMa2h+UqExPqUIkfk7Pc8QTLT956JLSy51uWFwHtIYy0vI8cB4BDhc/S03+880My/LQ==
dependencies:
env-paths "^2.2.0"
exponential-backoff "^3.1.1"
- glob "^10.3.10"
graceful-fs "^4.2.6"
- make-fetch-happen "^13.0.0"
- nopt "^7.0.0"
- proc-log "^4.1.0"
+ make-fetch-happen "^14.0.3"
+ nopt "^8.0.0"
+ proc-log "^5.0.0"
semver "^7.3.5"
- tar "^6.2.1"
- which "^4.0.0"
+ tar "^7.4.3"
+ tinyglobby "^0.2.12"
+ which "^5.0.0"
node-int64@^0.4.0:
version "0.4.0"
@@ -12147,12 +12186,12 @@ node-schedule@2.1.1:
long-timeout "0.1.1"
sorted-array-functions "^1.3.0"
-nopt@^7.0.0:
- version "7.2.1"
- resolved "https://registry.yarnpkg.com/nopt/-/nopt-7.2.1.tgz#1cac0eab9b8e97c9093338446eddd40b2c8ca1e7"
- integrity sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==
+nopt@^8.0.0:
+ version "8.1.0"
+ resolved "https://registry.yarnpkg.com/nopt/-/nopt-8.1.0.tgz#b11d38caf0f8643ce885818518064127f602eae3"
+ integrity sha512-ieGu42u/Qsa4TFktmaKEwM6MQH0pOWnaB3htzh0JRtx84+Mebc0cbZYN5bC+6WTZ4+77xrL9Pn5m7CV6VIkV7A==
dependencies:
- abbrev "^2.0.0"
+ abbrev "^3.0.0"
normalize-package-data@^2.3.2, normalize-package-data@^2.5.0:
version "2.5.0"
@@ -12174,15 +12213,6 @@ normalize-package-data@^3.0.0:
semver "^7.3.4"
validate-npm-package-license "^3.0.1"
-normalize-package-data@^6.0.0:
- version "6.0.2"
- resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-6.0.2.tgz#a7bc22167fe24025412bcff0a9651eb768b03506"
- integrity sha512-V6gygoYb/5EmNI+MEGrWkC+e6+Rr7mTmfHrxDbLzxQogBkgzo76rkok0Am6thgSF7Mv2nLOajAJj5vDJZEFn7g==
- dependencies:
- hosted-git-info "^7.0.0"
- semver "^7.3.5"
- validate-npm-package-license "^3.0.4"
-
normalize-path@^2.0.0, normalize-path@^2.0.1:
version "2.1.1"
resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
@@ -12200,24 +12230,24 @@ normalize-range@^0.1.2:
resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942"
integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==
-npm-bundled@^3.0.0:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-3.0.1.tgz#cca73e15560237696254b10170d8f86dad62da25"
- integrity sha512-+AvaheE/ww1JEwRHOrn4WHNzOxGtVp+adrg2AeZS/7KuxGUYFuBta98wYpfHBbJp6Tg6j1NKSEVHNcfZzJHQwQ==
+npm-bundled@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-4.0.0.tgz#f5b983f053fe7c61566cf07241fab2d4e9d513d3"
+ integrity sha512-IxaQZDMsqfQ2Lz37VvyyEtKLe8FsRZuysmedy/N06TU1RyVppYKXrO4xIhR0F+7ubIBox6Q7nir6fQI3ej39iA==
dependencies:
- npm-normalize-package-bin "^3.0.0"
+ npm-normalize-package-bin "^4.0.0"
-npm-install-checks@^6.0.0:
- version "6.3.0"
- resolved "https://registry.yarnpkg.com/npm-install-checks/-/npm-install-checks-6.3.0.tgz#046552d8920e801fa9f919cad569545d60e826fe"
- integrity sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==
+npm-install-checks@^7.1.0:
+ version "7.1.2"
+ resolved "https://registry.yarnpkg.com/npm-install-checks/-/npm-install-checks-7.1.2.tgz#e338d333930ee18e0fb0be6bd8b67af98be3d2fa"
+ integrity sha512-z9HJBCYw9Zr8BqXcllKIs5nI+QggAImbBdHphOzVYrz2CB4iQ6FzWyKmlqDZua+51nAu7FcemlbTc9VgQN5XDQ==
dependencies:
semver "^7.1.1"
-npm-normalize-package-bin@^3.0.0:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-3.0.1.tgz#25447e32a9a7de1f51362c61a559233b89947832"
- integrity sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==
+npm-normalize-package-bin@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-4.0.0.tgz#df79e70cd0a113b77c02d1fe243c96b8e618acb1"
+ integrity sha512-TZKxPvItzai9kN9H/TkmCtx/ZN/hvr3vUycjlfmH0ootY9yFBzNOpiXAdIn1Iteqsvk4lQn6B5PTrt+n6h8k/w==
npm-package-arg@11.0.1:
version "11.0.1"
@@ -12229,46 +12259,46 @@ npm-package-arg@11.0.1:
semver "^7.3.5"
validate-npm-package-name "^5.0.0"
-npm-package-arg@11.0.3, npm-package-arg@^11.0.0:
- version "11.0.3"
- resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-11.0.3.tgz#dae0c21199a99feca39ee4bfb074df3adac87e2d"
- integrity sha512-sHGJy8sOC1YraBywpzQlIKBE4pBbGbiF95U6Auspzyem956E0+FtDtsx1ZxlOJkQCZ1AFXAY/yuvtFYrOxF+Bw==
+npm-package-arg@12.0.2, npm-package-arg@^12.0.0:
+ version "12.0.2"
+ resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-12.0.2.tgz#3b1e04ebe651cc45028e298664e8c15ce9c0ca40"
+ integrity sha512-f1NpFjNI9O4VbKMOlA5QoBq/vSQPORHcTZ2feJpFkTHJ9eQkdlmZEKSjcAhxTGInC7RlEyScT9ui67NaOsjFWA==
dependencies:
- hosted-git-info "^7.0.0"
- proc-log "^4.0.0"
+ hosted-git-info "^8.0.0"
+ proc-log "^5.0.0"
semver "^7.3.5"
- validate-npm-package-name "^5.0.0"
+ validate-npm-package-name "^6.0.0"
-npm-packlist@^8.0.0:
- version "8.0.2"
- resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-8.0.2.tgz#5b8d1d906d96d21c85ebbeed2cf54147477c8478"
- integrity sha512-shYrPFIS/JLP4oQmAwDyk5HcyysKW8/JLTEA32S0Z5TzvpaeeX2yMFfoK1fjEBnCBvVyIB/Jj/GBFdm0wsgzbA==
+npm-packlist@^9.0.0:
+ version "9.0.0"
+ resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-9.0.0.tgz#8e9b061bab940de639dd93d65adc95c34412c7d0"
+ integrity sha512-8qSayfmHJQTx3nJWYbbUmflpyarbLMBc6LCAjYsiGtXxDB68HaZpb8re6zeaLGxZzDuMdhsg70jryJe+RrItVQ==
dependencies:
- ignore-walk "^6.0.4"
+ ignore-walk "^7.0.0"
-npm-pick-manifest@9.1.0, npm-pick-manifest@^9.0.0:
- version "9.1.0"
- resolved "https://registry.yarnpkg.com/npm-pick-manifest/-/npm-pick-manifest-9.1.0.tgz#83562afde52b0b07cb6244361788d319ce7e8636"
- integrity sha512-nkc+3pIIhqHVQr085X9d2JzPzLyjzQS96zbruppqC9aZRm/x8xx6xhI98gHtsfELP2bE+loHq8ZaHFHhe+NauA==
+npm-pick-manifest@10.0.0, npm-pick-manifest@^10.0.0:
+ version "10.0.0"
+ resolved "https://registry.yarnpkg.com/npm-pick-manifest/-/npm-pick-manifest-10.0.0.tgz#6cc120c6473ceea56dfead500f00735b2b892851"
+ integrity sha512-r4fFa4FqYY8xaM7fHecQ9Z2nE9hgNfJR+EmoKv0+chvzWkBcORX3r0FpTByP+CbOVJDladMXnPQGVN8PBLGuTQ==
dependencies:
- npm-install-checks "^6.0.0"
- npm-normalize-package-bin "^3.0.0"
- npm-package-arg "^11.0.0"
+ npm-install-checks "^7.1.0"
+ npm-normalize-package-bin "^4.0.0"
+ npm-package-arg "^12.0.0"
semver "^7.3.5"
-npm-registry-fetch@^17.0.0:
- version "17.1.0"
- resolved "https://registry.yarnpkg.com/npm-registry-fetch/-/npm-registry-fetch-17.1.0.tgz#fb69e8e762d456f08bda2f5f169f7638fb92beb1"
- integrity sha512-5+bKQRH0J1xG1uZ1zMNvxW0VEyoNWgJpY9UDuluPFLKDfJ9u2JmmjmTJV1srBGQOROfdBMiVvnH2Zvpbm+xkVA==
+npm-registry-fetch@^18.0.0:
+ version "18.0.2"
+ resolved "https://registry.yarnpkg.com/npm-registry-fetch/-/npm-registry-fetch-18.0.2.tgz#340432f56b5a8b1af068df91aae0435d2de646b5"
+ integrity sha512-LeVMZBBVy+oQb5R6FDV9OlJCcWDU+al10oKpe+nsvcHnG24Z3uM3SvJYKfGJlfGjVU8v9liejCrUR/M5HO5NEQ==
dependencies:
- "@npmcli/redact" "^2.0.0"
+ "@npmcli/redact" "^3.0.0"
jsonparse "^1.3.1"
- make-fetch-happen "^13.0.0"
+ make-fetch-happen "^14.0.0"
minipass "^7.0.2"
- minipass-fetch "^3.0.0"
- minizlib "^2.1.2"
- npm-package-arg "^11.0.0"
- proc-log "^4.0.0"
+ minipass-fetch "^4.0.0"
+ minizlib "^3.0.1"
+ npm-package-arg "^12.0.0"
+ proc-log "^5.0.0"
npm-run-path@^4.0.0, npm-run-path@^4.0.1:
version "4.0.1"
@@ -12566,11 +12596,6 @@ ordered-binary@^1.5.3:
resolved "https://registry.yarnpkg.com/ordered-binary/-/ordered-binary-1.6.1.tgz#5ac240ea719d6a0e6d4f0485385d3f9cb1cd4432"
integrity sha512-QkCdPooczexPLiXIrbVOPYkR3VO3T6v2OyKRkR1Xbhpy7/LAVXwahnRCgRp78Oe/Ehf0C/HATAxfSr6eA1oX+w==
-os-tmpdir@~1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
- integrity sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==
-
ospath@^1.2.2:
version "1.2.2"
resolved "https://registry.yarnpkg.com/ospath/-/ospath-1.2.2.tgz#1276639774a3f8ef2572f7fe4280e0ea4550c07b"
@@ -12632,6 +12657,11 @@ p-map@^4.0.0:
dependencies:
aggregate-error "^3.0.0"
+p-map@^7.0.2:
+ version "7.0.4"
+ resolved "https://registry.yarnpkg.com/p-map/-/p-map-7.0.4.tgz#b81814255f542e252d5729dca4d66e5ec14935b8"
+ integrity sha512-tkAQEw8ysMzmkhgw8k+1U/iPhWNhykKnSk4Rd5zLoPJCuJaGRPo6YposrZgaxHKzDHdDWWZvE/Sk7hsL2X/CpQ==
+
p-retry@^6.2.0:
version "6.2.0"
resolved "https://registry.yarnpkg.com/p-retry/-/p-retry-6.2.0.tgz#8d6df01af298750009691ce2f9b3ad2d5968f3bd"
@@ -12651,27 +12681,27 @@ package-json-from-dist@^1.0.0:
resolved "https://registry.yarnpkg.com/package-json-from-dist/-/package-json-from-dist-1.0.0.tgz#e501cd3094b278495eb4258d4c9f6d5ac3019f00"
integrity sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==
-pacote@18.0.6:
- version "18.0.6"
- resolved "https://registry.yarnpkg.com/pacote/-/pacote-18.0.6.tgz#ac28495e24f4cf802ef911d792335e378e86fac7"
- integrity sha512-+eK3G27SMwsB8kLIuj4h1FUhHtwiEUo21Tw8wNjmvdlpOEr613edv+8FUsTj/4F/VN5ywGE19X18N7CC2EJk6A==
- dependencies:
- "@npmcli/git" "^5.0.0"
- "@npmcli/installed-package-contents" "^2.0.1"
- "@npmcli/package-json" "^5.1.0"
- "@npmcli/promise-spawn" "^7.0.0"
- "@npmcli/run-script" "^8.0.0"
- cacache "^18.0.0"
+pacote@20.0.0:
+ version "20.0.0"
+ resolved "https://registry.yarnpkg.com/pacote/-/pacote-20.0.0.tgz#c974373d8e0859d00e8f9158574350f8c1b168e5"
+ integrity sha512-pRjC5UFwZCgx9kUFDVM9YEahv4guZ1nSLqwmWiLUnDbGsjs+U5w7z6Uc8HNR1a6x8qnu5y9xtGE6D1uAuYz+0A==
+ dependencies:
+ "@npmcli/git" "^6.0.0"
+ "@npmcli/installed-package-contents" "^3.0.0"
+ "@npmcli/package-json" "^6.0.0"
+ "@npmcli/promise-spawn" "^8.0.0"
+ "@npmcli/run-script" "^9.0.0"
+ cacache "^19.0.0"
fs-minipass "^3.0.0"
minipass "^7.0.2"
- npm-package-arg "^11.0.0"
- npm-packlist "^8.0.0"
- npm-pick-manifest "^9.0.0"
- npm-registry-fetch "^17.0.0"
- proc-log "^4.0.0"
+ npm-package-arg "^12.0.0"
+ npm-packlist "^9.0.0"
+ npm-pick-manifest "^10.0.0"
+ npm-registry-fetch "^18.0.0"
+ proc-log "^5.0.0"
promise-retry "^2.0.1"
- sigstore "^2.2.0"
- ssri "^10.0.0"
+ sigstore "^3.0.0"
+ ssri "^12.0.0"
tar "^6.1.11"
param-case@^3.0.4:
@@ -13532,21 +13562,16 @@ proc-log@^3.0.0:
resolved "https://registry.yarnpkg.com/proc-log/-/proc-log-3.0.0.tgz#fb05ef83ccd64fd7b20bbe9c8c1070fc08338dd8"
integrity sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==
-proc-log@^4.0.0, proc-log@^4.1.0, proc-log@^4.2.0:
- version "4.2.0"
- resolved "https://registry.yarnpkg.com/proc-log/-/proc-log-4.2.0.tgz#b6f461e4026e75fdfe228b265e9f7a00779d7034"
- integrity sha512-g8+OnU/L2v+wyiVK+D5fA34J7EH8jZ8DDlvwhRCMxmMj7UCBvxiO1mGeN+36JXIKF4zevU4kRBd8lVgG9vLelA==
+proc-log@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/proc-log/-/proc-log-5.0.0.tgz#e6c93cf37aef33f835c53485f314f50ea906a9d8"
+ integrity sha512-Azwzvl90HaF0aCz1JrDdXQykFakSSNPaPoiZ9fm5qJIMHioDZEi7OAdRwSm6rSoPtY3Qutnm3L7ogmg3dc+wbQ==
process-nextick-args@~2.0.0:
version "2.0.1"
resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"
integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==
-promise-inflight@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3"
- integrity sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==
-
promise-retry@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/promise-retry/-/promise-retry-2.0.1.tgz#ff747a13620ab57ba688f5fc67855410c370da22"
@@ -14075,6 +14100,15 @@ resolve.exports@^2.0.0:
resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-2.0.2.tgz#f8c934b8e6a13f539e38b7098e2e36134f01e800"
integrity sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==
+resolve@1.22.10:
+ version "1.22.10"
+ resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.10.tgz#b663e83ffb09bbf2386944736baae803029b8b39"
+ integrity sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==
+ dependencies:
+ is-core-module "^2.16.0"
+ path-parse "^1.0.7"
+ supports-preserve-symlinks-flag "^1.0.0"
+
resolve@1.22.8, resolve@^1.1.7, resolve@^1.10.0, resolve@^1.12.0, resolve@^1.14.2, resolve@^1.20.0, resolve@^1.22.1:
version "1.22.8"
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d"
@@ -14409,16 +14443,16 @@ semver@7.5.4:
dependencies:
lru-cache "^6.0.0"
-semver@7.6.3, semver@7.x, semver@^7.0.0, semver@^7.1.1, semver@^7.3.2, semver@^7.3.4, semver@^7.3.5, semver@^7.5.3, semver@^7.5.4, semver@^7.6.0, semver@^7.6.3:
- version "7.6.3"
- resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.3.tgz#980f7b5550bc175fb4dc09403085627f9eb33143"
- integrity sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==
-
semver@7.7.1:
version "7.7.1"
resolved "https://registry.yarnpkg.com/semver/-/semver-7.7.1.tgz#abd5098d82b18c6c81f6074ff2647fd3e7220c9f"
integrity sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==
+semver@7.x, semver@^7.0.0, semver@^7.1.1, semver@^7.3.2, semver@^7.3.4, semver@^7.3.5, semver@^7.5.3, semver@^7.5.4, semver@^7.6.0, semver@^7.6.3:
+ version "7.6.3"
+ resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.3.tgz#980f7b5550bc175fb4dc09403085627f9eb33143"
+ integrity sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==
+
semver@^6.0.0, semver@^6.3.0, semver@^6.3.1:
version "6.3.1"
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4"
@@ -14654,17 +14688,17 @@ signal-exit@^4.0.1, signal-exit@^4.1.0:
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz#952188c1cbd546070e2dd20d0f41c0ae0530cb04"
integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==
-sigstore@^2.2.0:
- version "2.3.1"
- resolved "https://registry.yarnpkg.com/sigstore/-/sigstore-2.3.1.tgz#0755dd2cc4820f2e922506da54d3d628e13bfa39"
- integrity sha512-8G+/XDU8wNsJOQS5ysDVO0Etg9/2uA5gR9l4ZwijjlwxBcrU6RPfwi2+jJmbP+Ap1Hlp/nVAaEO4Fj22/SL2gQ==
+sigstore@^3.0.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/sigstore/-/sigstore-3.1.0.tgz#08dc6c0c425263e9fdab85ffdb6477550e2c511d"
+ integrity sha512-ZpzWAFHIFqyFE56dXqgX/DkDRZdz+rRcjoIk/RQU4IX0wiCv1l8S7ZrXDHcCc+uaf+6o7w3h2l3g6GYG5TKN9Q==
dependencies:
- "@sigstore/bundle" "^2.3.2"
- "@sigstore/core" "^1.0.0"
- "@sigstore/protobuf-specs" "^0.3.2"
- "@sigstore/sign" "^2.3.2"
- "@sigstore/tuf" "^2.3.4"
- "@sigstore/verify" "^1.2.1"
+ "@sigstore/bundle" "^3.1.0"
+ "@sigstore/core" "^2.0.0"
+ "@sigstore/protobuf-specs" "^0.4.0"
+ "@sigstore/sign" "^3.1.0"
+ "@sigstore/tuf" "^3.1.0"
+ "@sigstore/verify" "^2.1.0"
single-spa-react@*:
version "6.0.1"
@@ -14983,6 +15017,13 @@ ssri@^10.0.0:
dependencies:
minipass "^7.0.3"
+ssri@^12.0.0:
+ version "12.0.0"
+ resolved "https://registry.yarnpkg.com/ssri/-/ssri-12.0.0.tgz#bcb4258417c702472f8191981d3c8a771fee6832"
+ integrity sha512-S7iGNosepx9RadX82oimUkvr0Ct7IjJbEbs4mJcTxst8um95J3sDYU1RBEOvdu6oL1Wek2ODI5i4MAw+dZ6cAQ==
+ dependencies:
+ minipass "^7.0.3"
+
stack-utils@^2.0.3:
version "2.0.6"
resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.6.tgz#aaf0748169c02fc33c8232abccf933f54a1cc34f"
@@ -15302,7 +15343,7 @@ tar-stream@~2.2.0:
inherits "^2.0.3"
readable-stream "^3.1.1"
-tar@^6.1.11, tar@^6.2.1:
+tar@^6.1.11:
version "6.2.1"
resolved "https://registry.yarnpkg.com/tar/-/tar-6.2.1.tgz#717549c541bc3c2af15751bea94b1dd068d4b03a"
integrity sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==
@@ -15314,6 +15355,17 @@ tar@^6.1.11, tar@^6.2.1:
mkdirp "^1.0.3"
yallist "^4.0.0"
+tar@^7.4.3:
+ version "7.5.9"
+ resolved "https://registry.yarnpkg.com/tar/-/tar-7.5.9.tgz#817ac12a54bc4362c51340875b8985d7dc9724b8"
+ integrity sha512-BTLcK0xsDh2+PUe9F6c2TlRp4zOOBMTkoQHQIWSIzI0R7KG46uEwq4OPk2W7bZcprBMsuaeFsqwYr7pjh6CuHg==
+ dependencies:
+ "@isaacs/fs-minipass" "^4.0.0"
+ chownr "^3.0.0"
+ minipass "^7.1.2"
+ minizlib "^3.1.0"
+ yallist "^5.0.0"
+
terser-webpack-plugin@^5.3.10, terser-webpack-plugin@^5.3.3:
version "5.3.10"
resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz#904f4c9193c6fd2a03f693a2150c62a92f40d199"
@@ -15412,7 +15464,7 @@ thunky@^1.0.2:
resolved "https://registry.yarnpkg.com/thunky/-/thunky-1.1.0.tgz#5abaf714a9405db0504732bbccd2cedd9ef9537d"
integrity sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==
-tinyglobby@^0.2.13:
+tinyglobby@^0.2.12, tinyglobby@^0.2.13:
version "0.2.15"
resolved "https://registry.yarnpkg.com/tinyglobby/-/tinyglobby-0.2.15.tgz#e228dd1e638cea993d2fdb4fcd2d4602a79951c2"
integrity sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==
@@ -15420,13 +15472,6 @@ tinyglobby@^0.2.13:
fdir "^6.5.0"
picomatch "^4.0.3"
-tmp@^0.0.33:
- version "0.0.33"
- resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9"
- integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==
- dependencies:
- os-tmpdir "~1.0.2"
-
tmp@~0.2.1:
version "0.2.3"
resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.2.3.tgz#eb783cc22bc1e8bebd0671476d46ea4eb32a79ae"
@@ -15632,14 +15677,14 @@ tsscmp@1.0.6:
resolved "https://registry.yarnpkg.com/tsscmp/-/tsscmp-1.0.6.tgz#85b99583ac3589ec4bfef825b5000aa911d605eb"
integrity sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==
-tuf-js@^2.2.1:
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/tuf-js/-/tuf-js-2.2.1.tgz#fdd8794b644af1a75c7aaa2b197ddffeb2911b56"
- integrity sha512-GwIJau9XaA8nLVbUXsN3IlFi7WmQ48gBUrl3FTkkL/XLu/POhBzfmX9hd33FNMX1qAsfl6ozO1iMmW9NC8YniA==
+tuf-js@^3.0.1:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/tuf-js/-/tuf-js-3.1.0.tgz#61b847fe9aa86a7d5bda655a4647e026aa73a1be"
+ integrity sha512-3T3T04WzowbwV2FDiGXBbr81t64g1MUGGJRgT4x5o97N+8ArdhVCAF9IxFrxuSJmM3E5Asn7nKHkao0ibcZXAg==
dependencies:
- "@tufjs/models" "2.0.1"
- debug "^4.3.4"
- make-fetch-happen "^13.0.1"
+ "@tufjs/models" "3.0.1"
+ debug "^4.4.1"
+ make-fetch-happen "^14.0.3"
tunnel-agent@^0.6.0:
version "0.6.0"
@@ -15785,6 +15830,13 @@ unique-filename@^3.0.0:
dependencies:
unique-slug "^4.0.0"
+unique-filename@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-4.0.0.tgz#a06534d370e7c977a939cd1d11f7f0ab8f1fed13"
+ integrity sha512-XSnEewXmQ+veP7xX2dS5Q4yZAvO40cBN2MWkJ7D/6sW4Dg6wYBNwM1Vrnz1FhH5AdeLIlUXRI9e28z1YZi71NQ==
+ dependencies:
+ unique-slug "^5.0.0"
+
unique-slug@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-4.0.0.tgz#6bae6bb16be91351badd24cdce741f892a6532e3"
@@ -15792,6 +15844,13 @@ unique-slug@^4.0.0:
dependencies:
imurmurhash "^0.1.4"
+unique-slug@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-5.0.0.tgz#ca72af03ad0dbab4dad8aa683f633878b1accda8"
+ integrity sha512-9OdaqO5kwqR+1kVgHAhsp5vPNU0hnxRa26rBFNfNgM7M6pNtgzeBn3s/xbyCQL3dcjzOatcef6UUHpB/6MaETg==
+ dependencies:
+ imurmurhash "^0.1.4"
+
universalify@^0.1.0:
version "0.1.2"
resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66"
@@ -15931,6 +15990,11 @@ validate-npm-package-name@^5.0.0:
resolved "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-5.0.1.tgz#a316573e9b49f3ccd90dbb6eb52b3f06c6d604e8"
integrity sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==
+validate-npm-package-name@^6.0.0:
+ version "6.0.2"
+ resolved "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-6.0.2.tgz#4e8d2c4d939975a73dd1b7a65e8f08d44c85df96"
+ integrity sha512-IUoow1YUtvoBBC06dXs8bR8B9vuA3aJfmQNKMoaPG/OFsPmoQvw8xh+6Ye25Gx9DQhoEom3Pcu9MKHerm/NpUQ==
+
vary@^1.1.2, vary@~1.1.2:
version "1.1.2"
resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc"
@@ -16261,10 +16325,10 @@ which@^2.0.1:
dependencies:
isexe "^2.0.0"
-which@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/which/-/which-4.0.0.tgz#cd60b5e74503a3fbcfbf6cd6b4138a8bae644c1a"
- integrity sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==
+which@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/which/-/which-5.0.0.tgz#d93f2d93f79834d4363c7d0c23e00d07c466c8d6"
+ integrity sha512-JEdGzHwwkrbWoGOlIHqQ5gtprKGOenpDHpxE9zVR1bWbOtYRyPPHMe9FaP6x61CmNaTThSkb0DAJte5jD+DmzQ==
dependencies:
isexe "^3.1.1"
@@ -16399,6 +16463,11 @@ yallist@^4.0.0:
resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"
integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
+yallist@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/yallist/-/yallist-5.0.0.tgz#00e2de443639ed0d78fd87de0d27469fbcffb533"
+ integrity sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==
+
yaml@^1.10.0, yaml@^1.7.2:
version "1.10.2"
resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b"
@@ -16484,11 +16553,6 @@ yocto-queue@^1.0.0:
resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-1.1.1.tgz#fef65ce3ac9f8a32ceac5a634f74e17e5b232110"
integrity sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==
-yoctocolors-cjs@^2.1.2:
- version "2.1.2"
- resolved "https://registry.yarnpkg.com/yoctocolors-cjs/-/yoctocolors-cjs-2.1.2.tgz#f4b905a840a37506813a7acaa28febe97767a242"
- integrity sha512-cYVsTjKl8b+FrnidjibDWskAv7UKOfcwaVZdp/it9n1s9fU3IkgDbhdIRKCW4JDsAlECJY0ytoVPT3sK6kideA==
-
yoctocolors-cjs@^2.1.3:
version "2.1.3"
resolved "https://registry.yarnpkg.com/yoctocolors-cjs/-/yoctocolors-cjs-2.1.3.tgz#7e4964ea8ec422b7a40ac917d3a344cfd2304baa"