diff --git a/apps/astro-docs/astro.config.mjs b/apps/astro-docs/astro.config.mjs
index ca3b0414..b072ec41 100644
--- a/apps/astro-docs/astro.config.mjs
+++ b/apps/astro-docs/astro.config.mjs
@@ -2,7 +2,8 @@ import analogjsangular from '@analogjs/astro-angular';
import starlight from '@astrojs/starlight';
import tailwind from '@astrojs/tailwind';
import { defineConfig } from 'astro/config';
-import { readFileSync } from 'fs';
+import { readFileSync } from 'node:fs';
+import starlightBlog from 'starlight-blog';
function includeContentPlugin() {
const map = new Map();
@@ -71,6 +72,17 @@ export default defineConfig({
}),
starlight({
title: 'Angular Three',
+ plugins: [
+ starlightBlog({
+ authors: {
+ chau: {
+ name: 'Chau Tran',
+ url: 'https://nartc.me',
+ picture: 'https://avatars.githubusercontent.com/u/25516557?v=4',
+ },
+ },
+ }),
+ ],
favicon: './src/assets/angular-three-dark.svg',
tableOfContents: {
minHeadingLevel: 2,
diff --git a/apps/astro-docs/package.json b/apps/astro-docs/package.json
index fdaf2504..73b2326c 100644
--- a/apps/astro-docs/package.json
+++ b/apps/astro-docs/package.json
@@ -12,15 +12,16 @@
"dependencies": {
"@analogjs/astro-angular": "^1.6.4-beta.1",
"@astrojs/check": "^0.9.3",
- "@astrojs/mdx": "^3.1.3",
- "@astrojs/starlight": "^0.26.1",
+ "@astrojs/mdx": "^3.1.5",
+ "@astrojs/starlight": "^0.26.2",
"@astrojs/tailwind": "^5.1.0",
"angular-three": "^2.0.0-beta.314",
"angular-three-cannon": "^2.0.0-beta.314",
"angular-three-postprocessing": "^2.0.0-beta.314",
"angular-three-soba": "^2.0.0-beta.314",
- "astro": "^4.14.2",
+ "astro": "^4.15.2",
"sharp": "^0.32.5",
+ "starlight-blog": "^0.12.0",
"tailwindcss": "^3.4.6"
},
"nx": {},
diff --git a/apps/astro-docs/src/components/hud/hud.ts b/apps/astro-docs/src/components/hud/hud.ts
new file mode 100644
index 00000000..715bd119
--- /dev/null
+++ b/apps/astro-docs/src/components/hud/hud.ts
@@ -0,0 +1,197 @@
+import {
+ CUSTOM_ELEMENTS_SCHEMA,
+ ChangeDetectionStrategy,
+ Component,
+ ElementRef,
+ computed,
+ inject,
+ input,
+ signal,
+ viewChild,
+} from '@angular/core';
+import {
+ NgtArgs,
+ NgtCanvas,
+ NgtPortal,
+ NgtPortalContent,
+ extend,
+ injectBeforeRender,
+ injectStore,
+} from 'angular-three';
+import { NgtsText } from 'angular-three-soba/abstractions';
+import { NgtsOrthographicCamera, NgtsPerspectiveCamera } from 'angular-three-soba/cameras';
+import { NgtsOrbitControls } from 'angular-three-soba/controls';
+import { NgtsEnvironment, NgtsRenderTexture, NgtsRenderTextureContent } from 'angular-three-soba/staging';
+import * as THREE from 'three';
+import { Matrix4, Mesh, Scene } from 'three';
+
+extend(THREE);
+
+@Component({
+ selector: 'app-torus',
+ standalone: true,
+ template: `
+
+
+
+
+ `,
+ imports: [NgtArgs],
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+})
+export class Torus {
+ scale = input(1);
+ hovered = signal(false);
+ color = computed(() => (this.hovered() ? 'hotpink' : 'orange'));
+}
+
+@Component({
+ selector: 'app-face-material',
+ standalone: true,
+ template: `
+
+
+
+
+
+
+
+
+
+ `,
+ imports: [NgtsText, NgtsRenderTexture, NgtsOrthographicCamera, NgtArgs, NgtsRenderTextureContent],
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+})
+export class FaceMaterial {
+ index = input.required();
+ text = input.required();
+
+ box = inject(Box);
+
+ color = computed(() => (this.box.hovered() === this.index() ? 'hotpink' : 'orange'));
+}
+
+@Component({
+ selector: 'app-box',
+ standalone: true,
+ template: `
+
+
+ @for (face of faces; track face) {
+
+ }
+
+ `,
+ imports: [FaceMaterial],
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+})
+export class Box {
+ position = input([0, 0, 0]);
+
+ mesh = viewChild.required>('mesh');
+
+ hovered = signal(-1);
+ clicked = signal(false);
+
+ scale = computed(() => (this.clicked() ? 1.5 : 1));
+
+ faces = ['front', 'back', 'top', 'bottom', 'left', 'right'];
+}
+
+@Component({
+ selector: 'app-view-cube',
+ standalone: true,
+ template: `
+
+
+
+
+
+
+
+
+
+
+
+ `,
+ imports: [Box, NgtPortal, NgtPortalContent, NgtsPerspectiveCamera],
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+})
+export class ViewCube {
+ protected readonly Math = Math;
+
+ private store = injectStore();
+ private camera = this.store.select('camera');
+ private viewport = this.store.select('viewport');
+
+ box = viewChild(Box);
+
+ boxPosition = computed(() => [this.viewport().width / 2 - 1, this.viewport().height / 2 - 1, 0]);
+
+ scene = computed(() => {
+ const scene = new Scene();
+ scene.name = 'hud-view-cube-virtual-scene';
+ return scene;
+ });
+
+ constructor() {
+ const matrix = new Matrix4();
+ injectBeforeRender(() => {
+ const box = this.box()?.mesh().nativeElement;
+ if (box) {
+ matrix.copy(this.camera().matrix).invert();
+ box.quaternion.setFromRotationMatrix(matrix);
+ }
+ });
+ }
+}
+
+@Component({
+ standalone: true,
+ template: `
+
+
+
+
+
+
+
+
+ `,
+ imports: [NgtsOrbitControls, NgtsEnvironment, Torus, ViewCube, NgtArgs],
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ host: { class: 'hud-experience' },
+})
+export class Experience {
+ protected readonly Math = Math;
+}
+
+@Component({
+ standalone: true,
+ template: `
+
+ `,
+ imports: [NgtCanvas],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ host: { class: 'hud-docs' },
+})
+export default class HudScene {
+ scene = Experience;
+}
diff --git a/apps/astro-docs/src/components/lightformer/lightformer.ts b/apps/astro-docs/src/components/lightformer/lightformer.ts
new file mode 100644
index 00000000..315660c6
--- /dev/null
+++ b/apps/astro-docs/src/components/lightformer/lightformer.ts
@@ -0,0 +1,69 @@
+import { ChangeDetectionStrategy, Component, CUSTOM_ELEMENTS_SCHEMA, ElementRef, viewChild } from '@angular/core';
+import { extend, injectBeforeRender, NgtArgs, NgtCanvas } from 'angular-three';
+import { NgtsOrbitControls } from 'angular-three-soba/controls';
+import { NgtsContactShadows, NgtsEnvironment, NgtsLightformer } from 'angular-three-soba/staging';
+import * as THREE from 'three';
+import { Mesh } from 'three';
+
+extend(THREE);
+
+@Component({
+ standalone: true,
+ template: `
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ `,
+ imports: [NgtsEnvironment, NgtsLightformer, NgtsContactShadows, NgtArgs, NgtsOrbitControls],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
+})
+export class Experience {
+ protected readonly Math = Math;
+
+ private cube = viewChild.required>('cube');
+
+ constructor() {
+ injectBeforeRender(({ delta }) => {
+ const cube = this.cube().nativeElement;
+ cube.rotation.y += delta * 0.2;
+ });
+ }
+}
+
+@Component({
+ standalone: true,
+ template: `
+
+ `,
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ imports: [NgtCanvas],
+})
+export default class LightformerScene {
+ scene = Experience;
+}
diff --git a/apps/astro-docs/src/content/config.ts b/apps/astro-docs/src/content/config.ts
index f31a3be9..176fe874 100644
--- a/apps/astro-docs/src/content/config.ts
+++ b/apps/astro-docs/src/content/config.ts
@@ -1,6 +1,9 @@
import { docsSchema } from '@astrojs/starlight/schema';
import { defineCollection } from 'astro:content';
+import { blogSchema } from 'starlight-blog/schema';
export const collections = {
- docs: defineCollection({ schema: docsSchema() }),
+ docs: defineCollection({
+ schema: docsSchema({ extend: (context) => blogSchema(context) }),
+ }),
};
diff --git a/apps/astro-docs/src/content/docs/blog/v2.mdx b/apps/astro-docs/src/content/docs/blog/v2.mdx
new file mode 100644
index 00000000..1b5aaf4a
--- /dev/null
+++ b/apps/astro-docs/src/content/docs/blog/v2.mdx
@@ -0,0 +1,412 @@
+---
+title: Angular Three v2 is here! ❤️
+excerpt: Angular Three v2 is here! ❤️
+date: 2024-09-02
+authors:
+ - chau
+tags:
+ - angular
+ - three
+ - release
+featured: true
+---
+import { Tabs, TabItem, Code } from '@astrojs/starlight/components';
+import HudScene, {content as hudContent} from '../../../components/hud/hud?includeContent';
+import LightformerScene, {content as lightformerContent} from '../../../components/lightformer/lightformer?includeContent';
+
+
+After almost a year of development, we're thrilled to announce the release of Angular Three v2! 🎉 Through countless examples and tutorials from other [THREE.js](https://threejs.org) ecosystems, we've identified the shortcomings of the previous version of Angular Three. Since then, we've been working tirelessly to enhance the library, making it more stable, performant, and predictable when working with THREE.js scene graphs.
+
+Following over 100 beta releases, we're confident that Angular Three v2 is ready for production and represents a significant improvement for the Angular THREE.js ecosystem as a whole.
+
+## Foreword
+
+Angular Three v2 is a major release with a substantial time gap since the previous version. It aims to address the limitations of the first version, resulting in numerous breaking changes. Some of these changes are subtle and may not be immediately apparent.
+
+Consequently, even though the surface-level APIs of v1 and v2 are similar, as both use a custom renderer, we're not providing an upgrade path from v1 to v2. Additionally, Angular Three v2 requires a minimum of Angular v18. Therefore, Angular Three v2 is better suited for new projects rather than upgrading existing ones.
+
+## What's new in Angular Three v2
+
+- Angular Signals 🚦
+- Improved performance and stability 📈
+- Better composability 🧩
+- Better `Portal` powered components 🪞
+- Improved documentation 📖
+
+While this list might seem modest at first glance, the core improvements in Angular Three v2 unlock a wealth of potential that has been incorporated into other packages like `angular-three-soba`, `angular-three-cannon`, and `angular-three-postprocessing`.
+
+### Angular Signals 🚦
+
+The most significant change in Angular Three v2 is the adoption of [Angular Signals](https://angular.dev/guide/signals). Angular Signals is a powerful and flexible way to manage state in modern Angular applications. Angular Signals also provides an entire set of new tools: Signal Inputs, Signal Outputs, and Signal Queries; all of which are designed to work seamlessly together.
+
+Angular Three v2's core is built on Angular Signals. This means that most, if not all, of Angular Three v2's APIs are Signals-based: they can accept Signals or Functions as arguments and return Signals as results.
+
+Let's examine some examples from across the Angular Three ecosystem.
+
+#### `injectStore`
+
+`injectStore` is a [Custom Inject Function (CIF)](https://nartc.me/blog/inject-function-the-right-way/) that allows the consumers to interact with the Angular Three Store. The store contains THREE.js building blocks such as the root `Scene`, the default `Camera`, and the `Renderer` itself etc...
+
+```angular-ts {'1. Get the NgtStore instance': 14-15} {'2. select() to access the Signals': 17-19} {'3. Use the signals in the template': 7-8}
+@Component({
+ template: `
+
+
+
+
+
+
+ `,
+ imports: [NgtArgs]
+})
+export class MyCmp {
+
+
+ private store = injectStore();
+
+
+ protected camera = this.store.select('camera'); // Signal
+ protected domElement = this.store.select('gl', 'domElement'); // Signal
+}
+```
+
+#### `injectLoader`
+
+`injectLoader` is a [Custom Inject Function (CIF)](https://nartc.me/blog/inject-function-the-right-way/) that allows the consumers to interact with THREE.js loaders.
+
+```angular-ts {'Signal Input in action': 12-13} {'Integrating seamlessly with Signals': 15-16}
+@Component({
+ template: `
+ @if (gltf(); as gltf) {
+
+ }
+ `,
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
+ imports: [NgtArgs]
+})
+export class MyModel {
+
+
+ path = input.required();
+
+
+ gltf = injectLoader(() => GLTFLoader, this.path);
+}
+```
+
+#### `injectBody` (from `angular-three-cannon`)
+
+`injectBody` is a [Custom Inject Function (CIF)](https://nartc.me/blog/inject-function-the-right-way/) that allows the consumers to interact with Cannon.js bodies.
+
+```angular-ts {'Signal Queries in action': 14-15} {'Integrating seamlessly with Signals': 17-21} {'Using Signals result to control the physics body': 29-31}
+@Component({
+ template: `
+
+
+
+
+ `,
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ imports: [NgtArgs],
+})
+export class Box {
+
+
+ meshRef = viewChild.required>('mesh');
+
+
+ boxApi = injectBox(
+ () => ({ args: [4, 4, 4], mass: 1, type: 'Kinematic' }),
+ this.meshRef
+ );
+
+ constructor() {
+ injectBeforeRender(({ clock }) => {
+ const api = this.boxApi();
+ if (!api) return;
+ const t = clock.getElapsedTime();
+
+
+ api.position.set(Math.sin(t * 2) * 5, Math.cos(t * 2) * 5, 3);
+ api.rotation.set(Math.sin(t * 6), Math.cos(t * 6), 0);
+ });
+ }
+}
+```
+
+These examples demonstrate just a few of the Angular Signals integrations. By leveraging Angular Signals, Angular Three v2 has eliminated much of its internal artificial timing and complexity in coordinating different 3D entities. This, in turn, makes Angular Three v2 more performant, stable, and predictable.
+
+### Improved performance and stability 📈
+
+While Angular Three has always been performant, thanks to Angular, the introduction of Angular Signals has allowed Angular Three v2 to significantly improve its stability story, with performance benefiting as well.
+
+#### Elimination of custom `NgtRef`
+
+Before Angular Signals, Angular Three used a custom `NgtRef` to track the life-cycle of THREE.js entities on the template via the `[ref]` custom property binding.
+
+
+```angular-ts
+@Component({
+ template: `
+
+ `
+})
+export class MyCmp {
+ meshRef = injectNgtRef();
+}
+```
+
+The primary purpose of NgtRef was to provide reactivity to `ElementRef`. With Signal Queries, this is no longer necessary. Instead, Angular Three v2 embraces Angular's approach using its query APIs like `viewChild`, `viewChildren`, `contentChild`, and `contentChildren`.
+
+```diff lang="angular-ts"
+@Component({
+ template: `
+-
++
+ `
+})
+export class MyCmp {
+- meshRef = injectNgtRef();
++ meshRef = viewChild.required>('mesh'); // Signal>
+}
+```
+
+This change reduces the amount of Angular Three internals needed to handle the custom `NgtRef`. The timing of when Signal Queries are resolved is controlled by Angular, and it should be more streamlined and predictable to end users.
+
+#### Change Detection and Events
+
+Previously, Angular Three relied on `ChangeDetectorRef` to trigger change detections on events like `pointerover`, `click`, etc. This was necessary because Angular Three has always run outside Angular Zone, and to provide a better experience for end users, we had to make the event system work as seamlessly as possible. Passing around the `ChangeDetectorRef` and ensuring that the correct Component instance was a significant challenge and was never entirely reliable.
+
+With Angular v18, Signals and `OnPush` change detection strategy have been designed to work well together. This means that end users can use Signal to drive the state of their components, and Angular Three events will be automatically handled by Angular internal change detection mechanism.
+
+```angular-ts
+@Component({
+ template: `
+
+
+
+
+ `,
+ changeDetection: ChangeDetectionStrategy.OnPush,
+})
+export class MyCmp {
+ protected hovered = signal(false);
+ protected active = signal(false);
+
+ protected scale = computed(() => this.active() ? 1.5 : 1);
+ protected color = computed(() => (this.hovered() ? 'hotpink' : 'orange'));
+}
+```
+
+:::tip[Did you know?]
+
+If you are feeling good about Zoneless, you can even enable it with `withExperimentalZonelessChangeDetection` and everything will still work as expected as long as you use Signals to drive the state of your applications.
+
+```ts
+bootstrapApplication(AppComponent, {
+ providers: [
+ provideExperimentalZonelessChangeDetection()
+ ]
+});
+```
+
+:::
+
+These examples are just a few of the many stability improvements that Angular Three v2 has introduced. There are numerous additional "under the hood" enhancements that unlock many more features and possibilities, which we'll explore in the following sections.
+
+### Better composability 🧩
+
+Angular Three v2 overhauls the `NgtRenderer` to make it more composable. `NgtRenderer` now embraces Angular's default content projection
+mechanism to provide a more flexible, predictable, and performant way to render content. In turns, this makes composing different THREE.js entities much easier and more straightforward.
+
+This improvement was inspired by a new addition to Angular Content Projection: Default content. This new feature allows Angular Three to provide default contents for some abstractions like `NgtsLightformer` while still allowing consumers to override it.
+
+Consider the following example:
+
+```angular-ts
+@Component({
+ template: `
+
+
+
+
+
+
+
+ `
+})
+export class Box {}
+```
+
+In this snippet, we have a `Box` component that renders a `Mesh` with `BoxGeometry` and a **default** `MeshNormalMaterial`. The `Box` component can be used as follows:
+
+```angular-html
+
+
+
+
+
+
+
+
+
+
+
+```
+
+#### Object Inputs
+
+Another win for composability is unlocked by Signal Inputs. With Signal Inputs, Angular Three v2 makes uses of [Object Inputs](https://nartc.me/blog/angular-object-inputs/) to provide a more composable way to pass inputs into custom components via `[parameters]` custom property binding.
+
+Let's revisit the Box component and allow consumers to pass in everything they can pass into Box to control the Mesh and the geometry.
+
+```angular-ts
+import { NgtMesh } from 'angular-three';
+
+@Component({
+ template: `
+
+
+
+
+
+
+
+ `,
+ imports: [NgtArgs]
+})
+export class Box {
+ boxArgs = input>([1, 1, 1]);
+ options = input>({});
+}
+```
+
+Now the consumers can use `Box` component as follows:
+
+```angular-html
+
+
+
+
+
+
+```
+
+All `angular-three-soba` components are built on top of Object Inputs concept, which allows for a much better composability story without the need to implement custom `ngtCompound` construct in the renderer internals.
+
+Thanks to this new improvement, abstractions in `angular-three-soba` are significantly easier to use and reason about. Here's another example of `Text3D` component with `Center` and `Float`.
+
+```angular-html {'center things': 3-4 } {'float things': 6-7 } {'text 3d': 9-10 } { 'content projection for text material': 16-17 }
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+```
+
+You just use them, nest them, and compose them. The possibilities are endless.
+
+### Better `Portal` powered components 🪞
+
+`NgtPortal` has also received a major upgrade. It is now truly a portal with a separate layered `NgtStore` on top of the default root `NgtStore`. This means that the content of `NgtPortal` is rendered into an off-screen buffer, with access to the state of both the root and the layered `NgtStore`. This allows consumers to have better predictability and control over the components rendered inside an `ngt-portal` component.
+
+#### Heads-up display example
+
+For instance, we can use `NgtPortal` and `NgtsRenderTexture` (which also relies on `NgtPortal`) to create a heads-up display (HUD) sample.
+
+The main scene contains the torus (donut). The view cube (HUD) is rendered in a portal with its own `PerspectiveCamera`. Then each face of the view cube is yet rendered into a separate portal with its own `OrthographicCamera` and a `Text` component to render the face name.
+
+You can check out the code here: [HudScene](https://github.com/angular-threejs/angular-three/blob/main/apps/kitchen-sink/src/app/soba/hud/experience.ts)
+
+
+
+
+
+
+
+
+
+
+
+
+#### Environment with Lightformers
+
+`NgtsEnvironment` with content projection has never worked correctly. Now with v2 `NgtPortal`, we can finally have proper `NgtsEnvironment` content with `NgtsLightformer` to control the lighting of the environment.
+
+
+
+
+
+
+
+
+
+
+
+
+### Improved documentation 📖
+
+Angular Three v2 documentation is powered by [Starlight](https://starlight.astro.build/) and [AnalogJS](https://analogjs.org) to provide an enhanced experience for Angular users.
+
+- Improved syntax highlighting powered by [Expressive Code](https://expressive-code.com/) and [Shiki](https://shiki.style)
+- Embedded Angular components powered by [AnalogJS](https://analogjs.org)
+
+This very release blog post is powered by the same stack, making it a delight to work with. With this, we aim to provide a superior documentation experience for Angular Three users.
+
+## Getting Started
+
+To get started with Angular Three v2, check out the [documentation](https://angularthree.org/).
+
+## Roadmap
+
+As we celebrate the release of Angular Three v2, our focus now shifts to promoting its adoption and ensuring its stability. Here's a glimpse of our immediate plans:
+
+- **Promotion and Education**: We're committed to creating a wealth of resources to help developers get the most out of Angular Three v2. This includes:
+ - Writing in-depth articles and blog posts about various features and use cases
+ - Developing comprehensive tutorials covering both basic and advanced topics
+ - Creating video content to demonstrate real-world applications of Angular Three v2
+
+- **Enhancing Test Coverage**: To maintain the reliability and stability of Angular Three, we're prioritizing the expansion of our unit test suite. This will help us catch potential issues early and ensure a smooth experience for all users.
+
+- **Community Engagement**: We plan to actively engage with the community through workshops, webinars, and conference talks to showcase the power and flexibility of Angular Three v2.
+
+We're excited about these next steps and look forward to seeing what amazing projects our community will create with Angular Three v2!
+
+## Acknowledgements
+
+The journey to Angular Three v2 has been a collaborative effort, and we'd like to express our heartfelt gratitude to several key contributors:
+
+- **The PMNDRS Ecosystem**: We owe a great deal to the PMNDRS (Poimandres) community and their various `@pmndrs` packages. Their innovative work in the 3D web space has been a constant source of inspiration and has significantly influenced the direction of Angular Three.
+
+- **The Angular Team**: We extend our sincere thanks to the Angular team for their continuous improvements to the framework. Many of the enhancements in Angular Three v2, particularly those leveraging Signals, were made possible by the Angular team's forward-thinking approach to reactive programming.
+
+- **The Wider Angular Community**: Last but not least, we're grateful to the entire Angular community for your support, enthusiasm, and patience throughout this development process. Your passion for pushing the boundaries of what's possible with Angular continues to drive us forward.
+
+We're proud to be part of such a vibrant and supportive ecosystem, and we look forward to continuing this journey with all of you as we explore the exciting possibilities that Angular Three v2 brings to the world of 3D web development.
+
+## Conclusion
+
+The development of Angular Three v2 has been a long journey, but we're excited to see what you can create with it. We hope you enjoy the improvements and new features that Angular Three v2 brings to the table. If you have any feedback or suggestions, please don't hesitate to reach out to us on [GitHub](https://github.com/angular-threejs/angular-three/issues).
+
+Thank you for reading this blog post. We hope you found it informative and learned something new. Happy coding!
diff --git a/apps/astro-docs/src/content/docs/core/advanced/performance.mdx b/apps/astro-docs/src/content/docs/core/advanced/performance.mdx
index c40124ab..dff6a41b 100644
--- a/apps/astro-docs/src/content/docs/core/advanced/performance.mdx
+++ b/apps/astro-docs/src/content/docs/core/advanced/performance.mdx
@@ -57,3 +57,32 @@ If the SceneGraph has static entities, or entities that are allowed to come to a
```
+When using `frameloop="demand"`, Angular Three will render: when properties of the entities change, when the camera moves via custom controls (from `angular-three-soba`) etc...
+To render, `invalidate()` function needs to be called and this is done automatically by Angular Three when necessary.
+
+The consumers can also call `invalidate()` manually to render _on demand_.
+
+```angular-ts
+@Component()
+export class MyCmp {
+ private store = injectStore();
+
+ protected invalidate = this.store.select('invalidate');
+
+ constructor() {
+ effect(() => {
+ const invalidate = this.invalidate();
+
+ // do something
+
+ // ready to render
+ invalidate();
+ })
+ }
+
+ onSomething() {
+ // or use the invalidate() from the Store snapshot
+ this.store.snapshot.invalidate();
+ }
+}
+```
diff --git a/libs/soba/src/staging/lightformer.stories.ts b/libs/soba/src/staging/lightformer.stories.ts
index 69def817..ca477e5f 100644
--- a/libs/soba/src/staging/lightformer.stories.ts
+++ b/libs/soba/src/staging/lightformer.stories.ts
@@ -60,7 +60,6 @@ export default {
} as Meta;
export const Default = makeStoryFunction(DefaultLightformerStory, {
- // camera: { position: [-3, 3, 3] },
controls: false,
lights: false,
background: 'ivory',
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 485934f4..2cdc3465 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -170,7 +170,7 @@ importers:
devDependencies:
'@analogjs/platform':
specifier: 1.8.0-beta.2
- version: 1.8.0-beta.2(ec4dkheskutjblhf5jvaaj54tq)
+ version: 1.8.0-beta.2(7pohuu7sizqd2dmp5ch6nopm34)
'@analogjs/vite-plugin-angular':
specifier: 1.8.0-beta.2
version: 1.8.0-beta.2(x4cr72yrujevrbdsksy6sausby)
@@ -448,14 +448,14 @@ importers:
specifier: ^0.9.3
version: 0.9.3(prettier@3.3.3)(typescript@5.5.4)
'@astrojs/mdx':
- specifier: ^3.1.3
- version: 3.1.3(astro@4.14.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4))
+ specifier: ^3.1.5
+ version: 3.1.5(astro@4.15.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4))
'@astrojs/starlight':
- specifier: ^0.26.1
- version: 0.26.1(astro@4.14.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4))
+ specifier: ^0.26.2
+ version: 0.26.2(astro@4.15.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4))
'@astrojs/tailwind':
specifier: ^5.1.0
- version: 5.1.0(astro@4.14.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4))(tailwindcss@3.4.10(ts-node@10.9.2(@swc/core@1.7.11(@swc/helpers@0.5.12))(@types/node@22.3.0)(typescript@5.5.4)))(ts-node@10.9.2(@swc/core@1.7.11(@swc/helpers@0.5.12))(@types/node@22.3.0)(typescript@5.5.4))
+ version: 5.1.0(astro@4.15.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4))(tailwindcss@3.4.10(ts-node@10.9.2(@swc/core@1.7.11(@swc/helpers@0.5.12))(@types/node@22.3.0)(typescript@5.5.4)))(ts-node@10.9.2(@swc/core@1.7.11(@swc/helpers@0.5.12))(@types/node@22.3.0)(typescript@5.5.4))
angular-three:
specifier: ^2.0.0-beta.314
version: 2.0.0-beta.314(@angular/common@18.2.0(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0))(@nativescript/angular@18.1.1)(@nativescript/canvas-media@2.0.0-webgpu.11)(@nativescript/canvas-three@2.0.0-webgpu.11)(@nativescript/canvas@2.0.0-webgpu.11)(@swc-node/register@1.10.9(@swc/core@1.7.11(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.5.4))(@swc/core@1.7.11(@swc/helpers@0.5.12))(ngxtension@4.0.0(@angular/common@18.2.0(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0))(@swc-node/register@1.10.9(@swc/core@1.7.11(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.5.4))(@swc/core@1.7.11(@swc/helpers@0.5.12))(rxjs@7.8.1))(node-three-gltf@1.8.1(encoding@0.1.13)(three@0.168.0))(three@0.168.0)(typescript@5.5.4)
@@ -469,18 +469,21 @@ importers:
specifier: ^2.0.0-beta.314
version: 2.0.0-beta.314(@angular/common@18.2.0(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0))(@monogrid/gainmap-js@3.0.5(three@0.168.0))(@pmndrs/vanilla@1.19.2(three@0.168.0))(camera-controls@2.9.0(three@0.168.0))(hls.js@1.5.15)(maath@0.10.8(@types/three@0.168.0)(three@0.168.0))(meshline@3.3.1(three@0.168.0))(stats-gl@2.2.8)(three-custom-shader-material@5.4.0(react@18.3.1)(three@0.168.0))(three-mesh-bvh@0.7.6(three@0.168.0))(three-stdlib@2.32.2(three@0.168.0))(three@0.168.0)(troika-three-text@0.49.1(three@0.168.0))
astro:
- specifier: ^4.14.2
- version: 4.14.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4)
+ specifier: ^4.15.2
+ version: 4.15.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4)
sharp:
specifier: ^0.32.5
version: 0.32.6
+ starlight-blog:
+ specifier: ^0.12.0
+ version: 0.12.0(@astrojs/starlight@0.26.2(astro@4.15.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4)))(astro@4.15.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4))
tailwindcss:
specifier: ^3.4.6
version: 3.4.10(ts-node@10.9.2(@swc/core@1.7.11(@swc/helpers@0.5.12))(@types/node@22.3.0)(typescript@5.5.4))
devDependencies:
'@astrojs/starlight-tailwind':
specifier: ^2.0.3
- version: 2.0.3(@astrojs/starlight@0.26.1(astro@4.14.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4)))(@astrojs/tailwind@5.1.0(astro@4.14.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4))(tailwindcss@3.4.10(ts-node@10.9.2(@swc/core@1.7.11(@swc/helpers@0.5.12))(@types/node@22.3.0)(typescript@5.5.4)))(ts-node@10.9.2(@swc/core@1.7.11(@swc/helpers@0.5.12))(@types/node@22.3.0)(typescript@5.5.4)))(tailwindcss@3.4.10(ts-node@10.9.2(@swc/core@1.7.11(@swc/helpers@0.5.12))(@types/node@22.3.0)(typescript@5.5.4)))
+ version: 2.0.3(@astrojs/starlight@0.26.2(astro@4.15.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4)))(@astrojs/tailwind@5.1.0(astro@4.15.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4))(tailwindcss@3.4.10(ts-node@10.9.2(@swc/core@1.7.11(@swc/helpers@0.5.12))(@types/node@22.3.0)(typescript@5.5.4)))(ts-node@10.9.2(@swc/core@1.7.11(@swc/helpers@0.5.12))(@types/node@22.3.0)(typescript@5.5.4)))(tailwindcss@3.4.10(ts-node@10.9.2(@swc/core@1.7.11(@swc/helpers@0.5.12))(@types/node@22.3.0)(typescript@5.5.4)))
'@expressive-code/plugin-line-numbers':
specifier: ^0.35.3
version: 0.35.3
@@ -836,8 +839,8 @@ packages:
'@astrojs/markdown-remark@5.2.0':
resolution: {integrity: sha512-vWGM24KZXz11jR3JO+oqYU3T2qpuOi4uGivJ9SQLCAI01+vEkHC60YJMRvHPc+hwd60F7euNs1PeOEixIIiNQw==}
- '@astrojs/mdx@3.1.3':
- resolution: {integrity: sha512-hOM4dMM4RfJI254d3p/AnOZuk2VyKszRtuY5FBm+Xc4XdhIpGrR56OXMNEcWchtwz4HQyPe/eJSgvBjSROcQIQ==}
+ '@astrojs/mdx@3.1.5':
+ resolution: {integrity: sha512-Fu6oShqcDpi0D1b2/3Pg3ao1I+Q2YqKhFsSsuDzn0YhdGrry5oUyABUyCyGq/OayP2P/34Vwj+GCQ/n9h8FlTQ==}
engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0}
peerDependencies:
astro: ^4.8.0
@@ -846,6 +849,9 @@ packages:
resolution: {integrity: sha512-Z9IYjuXSArkAUx3N6xj6+Bnvx8OdUSHA8YoOgyepp3+zJmtVYJIl/I18GozdJVW1p5u/CNpl3Km7/gwTJK85cw==}
engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0}
+ '@astrojs/rss@4.0.5':
+ resolution: {integrity: sha512-IyJVL6z09AQtxbgLaAwebT3T5YKe4oTHDesqydJv1KLHw+zEzzMCFuuNsEyxjiqu7df9+DDCpDXLj/WRiEUXvw==}
+
'@astrojs/sitemap@3.1.6':
resolution: {integrity: sha512-1Qp2NvAzVImqA6y+LubKi1DVhve/hXXgFvB0szxiipzh7BvtuKe4oJJ9dXSqaubaTkt4nMa6dv6RCCAYeB6xaQ==}
@@ -856,8 +862,8 @@ packages:
'@astrojs/tailwind': ^5.0.0
tailwindcss: ^3.3.3
- '@astrojs/starlight@0.26.1':
- resolution: {integrity: sha512-0qNYWZJ+ZOdSfM7du6fGuwUhyTHtAeRIl0zYe+dF0TxDvcakplO1SYLbGGX6lEVYE3PdBne7dcJww85bXZJIIQ==}
+ '@astrojs/starlight@0.26.2':
+ resolution: {integrity: sha512-368jO5hfhvNd6XvOnVHTntrRWBkRGmpnmtQMXdDhMdXR1XgNuEyEdtcDGXHLlUaY7ZwHItNrjSf5J1iKsdP2Zg==}
peerDependencies:
astro: ^4.8.6
@@ -1002,6 +1008,11 @@ packages:
engines: {node: '>=6.0.0'}
hasBin: true
+ '@babel/parser@7.25.6':
+ resolution: {integrity: sha512-trGdfBdbD0l1ZPmcJ83eNxB9rbEax4ALFTF7fN386TMYbeCQbyme5cOEXQhbGXKebwGaB/J52w1mrklMcbgy6Q==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+
'@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.3':
resolution: {integrity: sha512-wUrcsxZg6rqBXG05HG1FPYgsP6EvwF4WpBbxIpWIIYnH8wG0gzx3yZY3dtEHas4sTAOGkbTsc9EGPxwff8lRoA==}
engines: {node: '>=6.9.0'}
@@ -1535,6 +1546,10 @@ packages:
resolution: {integrity: sha512-YTnYtra7W9e6/oAZEHj0bJehPRUlLH9/fbpT5LfB0NhQXyALCRkRs3zH9v07IYhkgpqX6Z78FnuccZr/l4Fs4Q==}
engines: {node: '>=6.9.0'}
+ '@babel/types@7.25.6':
+ resolution: {integrity: sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw==}
+ engines: {node: '>=6.9.0'}
+
'@bcoe/v8-coverage@0.2.3':
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
@@ -3722,12 +3737,15 @@ packages:
resolution: {integrity: sha512-XePvx2ZnxCcAQw5lHVMUrJvm8MXqAWGcMyJDAuQUqNZrPCk3GpCaplWx2n+nPkinYVX2Q2v/DqtvWStQwgU4nA==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
- '@shikijs/core@1.11.2':
- resolution: {integrity: sha512-9IBY31lvOo2uhrZjqRt2wTqfqfrXJnddnIx0PFL5E8a5RQUNOhkx+PD11PogZtyrIHlL4aTYDVlb+eyryzy+pQ==}
-
'@shikijs/core@1.14.1':
resolution: {integrity: sha512-KyHIIpKNaT20FtFPFjCQB5WVSTpLR/n+jQXhWHWVUMm9MaOaG9BGOG0MSyt7yA4+Lm+4c9rTc03tt3nYzeYSfw==}
+ '@shikijs/core@1.16.1':
+ resolution: {integrity: sha512-aI0hBtw+a6KsJp2jcD4YuQqKpeCbURMZbhHVozDknJpm+KJqeMRkEnfBC8BaKE/5XC+uofPgCLsa/TkTk0Ba0w==}
+
+ '@shikijs/vscode-textmate@9.2.0':
+ resolution: {integrity: sha512-5FinaOp6Vdh/dl4/yaOTh0ZeKch+rYS8DUb38V3GMKYVkdqzxw53lViRKUYkVILRiVQT7dcPC7VvAKOR73zVtQ==}
+
'@sideway/address@4.1.5':
resolution: {integrity: sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==}
@@ -4999,8 +5017,12 @@ packages:
peerDependencies:
astro: ^4.0.0-beta || ^3.3.0
- astro@4.14.2:
- resolution: {integrity: sha512-x9VeYx8Ih6kYKBMVwwsfRzsZVq30+SUhiawnYQ6+46qQnEx3zH05KcH24HsJMe6dVpHD8HdH7CWR5C4o7Q/jeg==}
+ astro-remote@0.3.2:
+ resolution: {integrity: sha512-Xwm6Y+ldQEnDB2l1WwVqeUs3QvUX8LtJWnovpXlf8xhpicPu159jXOhDbHZS9wilGO/+/nR67A1qskF8pDvdGQ==}
+ engines: {node: '>=18.14.1'}
+
+ astro@4.15.2:
+ resolution: {integrity: sha512-UlkQ/cWRLabOm6eVe6oRwjVAKd47N3+d1ktKpEZ5lqQKwq5uYrXQUu3n0ftsm6SJ+01x2LlPmjRe9OfKAbGpXA==}
engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0'}
hasBin: true
@@ -7024,6 +7046,10 @@ packages:
fast-uri@3.0.1:
resolution: {integrity: sha512-MWipKbbYiYI0UC7cl8m/i/IWTqfC8YXsqjzybjddLsFjStroQzsHXkc73JutMvBiXmOvapk+axIl79ig5t55Bw==}
+ fast-xml-parser@4.4.1:
+ resolution: {integrity: sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw==}
+ hasBin: true
+
fastq@1.17.1:
resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
@@ -7640,6 +7666,9 @@ packages:
hast-util-to-html@9.0.1:
resolution: {integrity: sha512-hZOofyZANbyWo+9RP75xIDV/gq+OUKx+T46IlwERnKmfpwp81XBFbT9mi26ws+SJchA4RVUQwIBJpqEOBhMzEQ==}
+ hast-util-to-html@9.0.2:
+ resolution: {integrity: sha512-RP5wNpj5nm1Z8cloDv4Sl4RS8jH5HYa0v93YB6Wb4poEzgMo/dAAL0KcT4974dCjcNG5pkLqTImeFHHCwwfY3g==}
+
hast-util-to-jsx-runtime@2.3.0:
resolution: {integrity: sha512-H/y0+IWPdsLLS738P8tDnrQ8Z+dj12zQQ6WC11TIM21C8WFVoIxcqWXf2H3hiTVZjF1AWqoimGwrTWecWrnmRQ==}
@@ -8914,6 +8943,9 @@ packages:
magic-string@0.30.11:
resolution: {integrity: sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==}
+ magicast@0.3.5:
+ resolution: {integrity: sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==}
+
make-dir@2.1.0:
resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==}
engines: {node: '>=6'}
@@ -8955,6 +8987,11 @@ packages:
peerDependencies:
react: '>= 0.14.0'
+ marked-footnote@1.2.4:
+ resolution: {integrity: sha512-DB2Kl+wFh6YwZd70qABMY6WUkG1UuyqoNTFoDfGyG79Pz24neYtLBkB+45a7o72V7gkfvbC3CGzIYFobxfMT1Q==}
+ peerDependencies:
+ marked: '>=7.0.0'
+
marked-gfm-heading-id@4.1.0:
resolution: {integrity: sha512-xRvV65Fnpq1krNspnyGsBvP0Y6h7/FrJ6U6y4e6zCWffiC1KxFFxFUKVu8ufMHop2xdvpwyWj5jPeA5W5x/6Zw==}
peerDependencies:
@@ -8970,6 +9007,21 @@ packages:
peerDependencies:
marked: '>=4 <14'
+ marked-plaintify@1.0.1:
+ resolution: {integrity: sha512-KQhxtuVWf3Ij3YMiW4ArlgNOVmzOAlP0o/upsu2+h7Q4TCAwG4UvkYTteZF2sDDomXQnNSLmfyAhoR0gx2Orgw==}
+ peerDependencies:
+ marked: '>=7.0.0'
+
+ marked-smartypants@1.1.8:
+ resolution: {integrity: sha512-2n8oSjL2gSkH6M0dSdRIyLgqqky03iKQkdmoaylmIzwIhYTW204S7ry6zP2iqwSl0zSlJH2xmWgxlZ/4XB1CdQ==}
+ peerDependencies:
+ marked: '>=4 <15'
+
+ marked@12.0.2:
+ resolution: {integrity: sha512-qXUm7e/YKFoqFPYPa3Ukg9xlI5cyAtGmyEIzMfW//m6kXwCy2Ps9DYf5ioijFKQ8qyuscrHoY04iJGctu2Kg0Q==}
+ engines: {node: '>= 18'}
+ hasBin: true
+
marked@13.0.3:
resolution: {integrity: sha512-rqRix3/TWzE9rIoFGIn8JmsVfhiuC8VIQ8IdX5TfzmeBucdY05/0UlzKaw0eVtpcN/OdVFpBk7CjKGo9iHJ/zA==}
engines: {node: '>= 18'}
@@ -9260,6 +9312,10 @@ packages:
resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==}
engines: {node: '>=8.6'}
+ micromatch@4.0.8:
+ resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
+ engines: {node: '>=8.6'}
+
mime-db@1.52.0:
resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
engines: {node: '>= 0.6'}
@@ -9843,6 +9899,10 @@ packages:
resolution: {integrity: sha512-ANIvzobt1rls2BDny5fWZ3ZVKyD6nscLvfFRpQgfWsythlcsVUC9kL0zq6j2Z5z9wwp1kd7wpsD/T9qNPVLCaQ==}
engines: {node: '>=18'}
+ ora@8.1.0:
+ resolution: {integrity: sha512-GQEkNkH/GHOhPFXcqZs3IDahXEQcQxsSjEkK4KvEEST4t7eNzoMjxTzef+EZ+JluDEV+Raoi3WQ2CflnRdSVnQ==}
+ engines: {node: '>=18'}
+
ordered-binary@1.5.1:
resolution: {integrity: sha512-5VyHfHY3cd0iza71JepYG50My+YUbrFtGoUz2ooEydPyPM7Aai/JW098juLr+RG6+rDJuzNNTsEQu2DZa1A41A==}
@@ -11376,12 +11436,12 @@ packages:
engines: {node: '>=4'}
hasBin: true
- shiki@1.11.2:
- resolution: {integrity: sha512-WEHfKf+JWEKm/p8BoiE5F4m6VwV6LzY7nFfwRz0nAj+sVD1sRyWiODYScDu3Q8P/Dpi7xKe1TDJF3ZOQnhfT1g==}
-
shiki@1.14.1:
resolution: {integrity: sha512-FujAN40NEejeXdzPt+3sZ3F2dx1U24BY2XTY01+MG8mbxCiA2XukXdcbyMyLAHJ/1AUUnQd1tZlvIjefWWEJeA==}
+ shiki@1.16.1:
+ resolution: {integrity: sha512-tCJIMaxDVB1mEIJ5TvfZU7kCPB5eo9fli5+21Olc/bmyv+w8kye3JOp+LZRmGkAyT71hrkefQhTiY+o9mBikRQ==}
+
side-channel@1.0.6:
resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==}
engines: {node: '>= 0.4'}
@@ -11449,6 +11509,10 @@ packages:
resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==}
engines: {node: '>= 6.0.0', npm: '>= 3.0.0'}
+ smartypants@0.2.2:
+ resolution: {integrity: sha512-TzobUYoEft/xBtb2voRPryAUIvYguG0V7Tt3de79I1WfXgCwelqVsGuZSnu3GFGRZhXR90AeEYIM+icuB/S06Q==}
+ hasBin: true
+
smob@1.5.0:
resolution: {integrity: sha512-g6T+p7QO8npa+/hNx9ohv1E5pVCmWrVCUzUXJyLdMmftX6ER0oiWY/w9knEonLpnOp6b6FenKnMfR8gqwWdwig==}
@@ -11566,6 +11630,13 @@ packages:
standard-as-callback@2.1.0:
resolution: {integrity: sha512-qoRRSyROncaz1z0mvYqIE4lCd9p2R90i6GxW3uZv5ucSu8tU7B5HXUP1gG8pVZsYNVaXjk8ClXHPttLyxAL48A==}
+ starlight-blog@0.12.0:
+ resolution: {integrity: sha512-SSNkBQIM6RrumGQQqOv76L5Lcefm6faU2+4armlgQh2zod24aOvuCGUcFi3F//DxOWvIx3WRb7X/VRqs3yNO8A==}
+ engines: {node: '>=18.14.1'}
+ peerDependencies:
+ '@astrojs/starlight': '>=0.24.0'
+ astro: '>=4.8.6'
+
static-eval@2.1.1:
resolution: {integrity: sha512-MgWpQ/ZjGieSVB3eOJVs4OA2LT/q1vx98KPCTTQPzq/aLr0YUXTsgryTXr4SLfR0ZfUUCiedM9n/ABeDIyy4mA==}
@@ -11694,6 +11765,9 @@ packages:
resolution: {integrity: sha512-A21Xsm1XzUkK0qK1ZrytDUvqsQWict2Cykhvi0fBQntGG5JSprESasEyV1EZ/4CiR5WB5KjzLTrP/bO37B0wPg==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ strnum@1.0.5:
+ resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==}
+
strong-log-transformer@2.1.0:
resolution: {integrity: sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==}
engines: {node: '>=4'}
@@ -11917,6 +11991,9 @@ packages:
tinybench@2.8.0:
resolution: {integrity: sha512-1/eK7zUnIklz4JUUlL+658n58XO2hHLQfSk1Zf2LKieUjxidN16eKFEoDEfjHc3ohofSSqK3X5yO6VGb6iW8Lw==}
+ tinyexec@0.3.0:
+ resolution: {integrity: sha512-tVGE0mVJPGb0chKhqmsoosjsS+qUnJVGJpZgsHYQcGoPlG3B51R3PouqTgEGH2Dc9jjFyOqOpix6ZHNMXp1FZg==}
+
tinypool@0.8.4:
resolution: {integrity: sha512-i11VH5gS6IFeLY3gMBQ00/MmLncVP7JLXOw1vlgkytLmJK7QnEr7NXf0LBdxfmNPAeyetukOk0bOYrJrFGjYJQ==}
engines: {node: '>=14.0.0'}
@@ -12105,6 +12182,16 @@ packages:
typescript:
optional: true
+ tsconfck@3.1.3:
+ resolution: {integrity: sha512-ulNZP1SVpRDesxeMLON/LtWM8HIgAJEIVpVVhBM6gsmvQ8+Rh+ZG7FWGvHh7Ah3pRABwVJWklWCr/BTZSv0xnQ==}
+ engines: {node: ^18 || >=20}
+ hasBin: true
+ peerDependencies:
+ typescript: ^5.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
tsconfig-paths-webpack-plugin@4.0.0:
resolution: {integrity: sha512-fw/7265mIWukrSHd0i+wSwx64kYUSAKPfxRDksjKIYTxSAp9W9/xcZVBF4Kl0eqQd5eBpAQ/oQrc5RyM/0c1GQ==}
engines: {node: '>=10.13.0'}
@@ -12220,6 +12307,9 @@ packages:
engines: {node: '>=0.8.0'}
hasBin: true
+ ultrahtml@1.5.3:
+ resolution: {integrity: sha512-GykOvZwgDWZlTQMtp5jrD4BVL+gNn2NVlVafjcFUJ7taY20tqYdwdoWBFy6GBJsNTZe1GkGPkSl5knQAjtgceg==}
+
uncrypto@0.1.3:
resolution: {integrity: sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==}
@@ -12489,6 +12579,9 @@ packages:
vfile@6.0.2:
resolution: {integrity: sha512-zND7NlS8rJYb/sPqkb13ZvbbUoExdbi4w3SfRrMq6R3FvnLQmmfpajJNITuuYm6AZ5uao9vy4BAos3EXBPf2rg==}
+ vfile@6.0.3:
+ resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==}
+
vite-node@1.6.0:
resolution: {integrity: sha512-de6HJgzC+TFzOu0NTC4RAIsyf/DY/ibWDYQUcuEA84EMHhcefTUGkjFHKKEJhQN4A+6I0u++kr3l36ZF2d7XRw==}
engines: {node: ^18.0.0 || >=20.0.0}
@@ -13199,22 +13292,22 @@ snapshots:
rxjs: 7.8.1
tslib: 2.7.0
- '@analogjs/platform@1.8.0-beta.2(ec4dkheskutjblhf5jvaaj54tq)':
+ '@analogjs/platform@1.8.0-beta.2(7pohuu7sizqd2dmp5ch6nopm34)':
dependencies:
'@analogjs/vite-plugin-angular': 1.8.0-beta.2(x4cr72yrujevrbdsksy6sausby)
- '@analogjs/vite-plugin-nitro': 1.8.0-beta.2(encoding@0.1.13)
+ '@analogjs/vite-plugin-nitro': 1.8.0-beta.2(encoding@0.1.13)(magicast@0.3.5)
'@nx/angular': 19.6.4(@angular-devkit/build-angular@18.2.0(2gxz5wtswozuvvtw4o3odz6d2m))(@angular-devkit/core@18.2.0(chokidar@3.6.0))(@angular-devkit/schematics@18.2.0(chokidar@3.6.0))(@babel/traverse@7.25.3)(@schematics/angular@18.2.0(chokidar@3.6.0))(@swc-node/register@1.10.9(@swc/core@1.7.11(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.5.4))(@swc/core@1.7.11(@swc/helpers@0.5.12))(@types/node@20.14.12)(@zkochan/js-yaml@0.0.7)(esbuild@0.21.5)(eslint@9.9.1(jiti@1.21.6))(html-webpack-plugin@5.6.0(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5)))(nx@19.6.4(@swc-node/register@1.10.9(@swc/core@1.7.11(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.5.4))(@swc/core@1.7.11(@swc/helpers@0.5.12)))(rxjs@7.8.1)(typescript@5.5.4)
'@nx/devkit': 19.6.4(nx@19.6.4(@swc-node/register@1.10.9(@swc/core@1.7.11(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.5.4))(@swc/core@1.7.11(@swc/helpers@0.5.12)))
'@nx/vite': 19.6.4(@babel/traverse@7.25.3)(@swc-node/register@1.10.9(@swc/core@1.7.11(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.5.4))(@swc/core@1.7.11(@swc/helpers@0.5.12))(@types/node@20.14.12)(nx@19.6.4(@swc-node/register@1.10.9(@swc/core@1.7.11(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.5.4))(@swc/core@1.7.11(@swc/helpers@0.5.12)))(typescript@5.5.4)(vite@5.4.2(@types/node@20.14.12)(less@4.1.3)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6))(vitest@1.6.0(@types/node@20.14.12)(jsdom@24.1.1)(less@4.1.3)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6))
marked: 13.0.3
marked-gfm-heading-id: 4.1.0(marked@13.0.3)
marked-mangle: 1.1.8(marked@13.0.3)
- nitropack: 2.9.7(encoding@0.1.13)
+ nitropack: 2.9.7(encoding@0.1.13)(magicast@0.3.5)
vitefu: 0.2.5(vite@5.4.2(@types/node@20.14.12)(less@4.1.3)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6))
optionalDependencies:
marked-highlight: 2.1.4(marked@13.0.3)
prismjs: 1.29.0
- shiki: 1.14.1
+ shiki: 1.16.1
transitivePeerDependencies:
- '@angular-devkit/build-angular'
- '@angular/build'
@@ -13260,10 +13353,10 @@ snapshots:
'@angular-devkit/build-angular': 18.2.0(2gxz5wtswozuvvtw4o3odz6d2m)
'@angular/build': 18.2.0(@angular/compiler-cli@18.2.0(@angular/compiler@18.2.0(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.4))(@angular/platform-server@18.2.0(@angular/animations@18.2.0(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@18.2.0(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@18.2.0(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@18.2.0(@angular/animations@18.2.0(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@18.2.0(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0))))(@types/node@20.14.12)(chokidar@3.6.0)(less@4.1.3)(postcss@8.4.43)(stylus@0.59.0)(tailwindcss@3.4.10(ts-node@10.9.2(@swc/core@1.7.11(@swc/helpers@0.5.12))(@types/node@20.14.12)(typescript@5.5.4)))(terser@5.31.6)(typescript@5.5.4)
- '@analogjs/vite-plugin-nitro@1.8.0-beta.2(encoding@0.1.13)':
+ '@analogjs/vite-plugin-nitro@1.8.0-beta.2(encoding@0.1.13)(magicast@0.3.5)':
dependencies:
esbuild: 0.20.2
- nitropack: 2.9.7(encoding@0.1.13)
+ nitropack: 2.9.7(encoding@0.1.13)(magicast@0.3.5)
xmlbuilder2: 3.1.1
transitivePeerDependencies:
- '@azure/app-configuration'
@@ -13304,7 +13397,7 @@ snapshots:
dependencies:
'@ampproject/remapping': 2.3.0
'@angular-devkit/architect': 0.1802.0(chokidar@3.6.0)
- '@angular-devkit/build-webpack': 0.1802.0(chokidar@3.6.0)(webpack-dev-server@5.0.4(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0)))(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0))
+ '@angular-devkit/build-webpack': 0.1802.0(chokidar@3.6.0)(webpack-dev-server@5.0.4(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5)))(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5))
'@angular-devkit/core': 18.2.0(chokidar@3.6.0)
'@angular/build': 18.2.0(@angular/compiler-cli@18.2.0(@angular/compiler@18.2.0(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.4))(@angular/platform-server@18.2.0(@angular/animations@18.2.0(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@18.2.0(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@18.2.0(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@18.2.0(@angular/animations@18.2.0(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@18.2.0(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0))))(@types/node@20.14.12)(chokidar@3.6.0)(less@4.2.0)(postcss@8.4.41)(stylus@0.59.0)(tailwindcss@3.4.10(ts-node@10.9.2(@swc/core@1.7.11(@swc/helpers@0.5.12))(@types/node@20.14.12)(typescript@5.5.4)))(terser@5.31.6)(typescript@5.5.4)
'@angular/compiler-cli': 18.2.0(@angular/compiler@18.2.0(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.4)
@@ -13318,15 +13411,15 @@ snapshots:
'@babel/preset-env': 7.25.3(@babel/core@7.25.2)
'@babel/runtime': 7.25.0
'@discoveryjs/json-ext': 0.6.1
- '@ngtools/webpack': 18.2.0(@angular/compiler-cli@18.2.0(@angular/compiler@18.2.0(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.4))(typescript@5.5.4)(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0))
+ '@ngtools/webpack': 18.2.0(@angular/compiler-cli@18.2.0(@angular/compiler@18.2.0(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.4))(typescript@5.5.4)(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5))
'@vitejs/plugin-basic-ssl': 1.1.0(vite@5.4.0(@types/node@20.14.12)(less@4.2.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6))
ansi-colors: 4.1.3
autoprefixer: 10.4.20(postcss@8.4.41)
- babel-loader: 9.1.3(@babel/core@7.25.2)(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0))
+ babel-loader: 9.1.3(@babel/core@7.25.2)(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5))
browserslist: 4.23.3
- copy-webpack-plugin: 12.0.2(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0))
+ copy-webpack-plugin: 12.0.2(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5))
critters: 0.0.24
- css-loader: 7.1.2(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0))
+ css-loader: 7.1.2(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5))
esbuild-wasm: 0.23.0
fast-glob: 3.3.2
http-proxy-middleware: 3.0.0
@@ -13335,11 +13428,11 @@ snapshots:
jsonc-parser: 3.3.1
karma-source-map-support: 1.4.0
less: 4.2.0
- less-loader: 12.2.0(less@4.2.0)(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0))
- license-webpack-plugin: 4.0.2(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0))
+ less-loader: 12.2.0(less@4.2.0)(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5))
+ license-webpack-plugin: 4.0.2(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5))
loader-utils: 3.3.1
magic-string: 0.30.11
- mini-css-extract-plugin: 2.9.0(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0))
+ mini-css-extract-plugin: 2.9.0(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5))
mrmime: 2.0.0
open: 10.1.0
ora: 5.4.1
@@ -13347,13 +13440,13 @@ snapshots:
picomatch: 4.0.2
piscina: 4.6.1
postcss: 8.4.41
- postcss-loader: 8.1.1(postcss@8.4.41)(typescript@5.5.4)(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0))
+ postcss-loader: 8.1.1(postcss@8.4.41)(typescript@5.5.4)(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5))
resolve-url-loader: 5.0.0
rxjs: 7.8.1
sass: 1.77.8
- sass-loader: 16.0.0(sass@1.77.8)(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0))
+ sass-loader: 16.0.0(sass@1.77.8)(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5))
semver: 7.6.3
- source-map-loader: 5.0.0(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0))
+ source-map-loader: 5.0.0(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5))
source-map-support: 0.5.21
terser: 5.31.6
tree-kill: 1.2.2
@@ -13362,10 +13455,10 @@ snapshots:
vite: 5.4.0(@types/node@20.14.12)(less@4.2.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)
watchpack: 2.4.1
webpack: 5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0)
- webpack-dev-middleware: 7.3.0(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0))
+ webpack-dev-middleware: 7.3.0(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5))
webpack-dev-server: 5.0.4(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5))
webpack-merge: 6.0.1
- webpack-subresource-integrity: 5.1.0(html-webpack-plugin@5.6.0(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5)))(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0))
+ webpack-subresource-integrity: 5.1.0(html-webpack-plugin@5.6.0(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5)))(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5))
optionalDependencies:
'@angular/platform-server': 18.2.0(@angular/animations@18.2.0(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@18.2.0(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@18.2.0(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@18.2.0(@angular/animations@18.2.0(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@18.2.0(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0)))
esbuild: 0.23.0
@@ -13395,7 +13488,7 @@ snapshots:
dependencies:
'@ampproject/remapping': 2.3.0
'@angular-devkit/architect': 0.1802.0(chokidar@3.6.0)
- '@angular-devkit/build-webpack': 0.1802.0(chokidar@3.6.0)(webpack-dev-server@5.0.4(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0)))(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0))
+ '@angular-devkit/build-webpack': 0.1802.0(chokidar@3.6.0)(webpack-dev-server@5.0.4(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5)))(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5))
'@angular-devkit/core': 18.2.0(chokidar@3.6.0)
'@angular/build': 18.2.0(@angular/compiler-cli@18.2.0(@angular/compiler@18.2.0(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.4))(@angular/platform-server@18.2.0(@angular/animations@18.2.0(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@18.2.0(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@18.2.0(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@18.2.0(@angular/animations@18.2.0(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@18.2.0(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0))))(@types/node@22.3.0)(chokidar@3.6.0)(less@4.2.0)(postcss@8.4.41)(stylus@0.59.0)(tailwindcss@3.4.10(ts-node@10.9.2(@swc/core@1.7.11(@swc/helpers@0.5.12))(@types/node@22.3.0)(typescript@5.5.4)))(terser@5.31.6)(typescript@5.5.4)
'@angular/compiler-cli': 18.2.0(@angular/compiler@18.2.0(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.4)
@@ -13409,15 +13502,15 @@ snapshots:
'@babel/preset-env': 7.25.3(@babel/core@7.25.2)
'@babel/runtime': 7.25.0
'@discoveryjs/json-ext': 0.6.1
- '@ngtools/webpack': 18.2.0(@angular/compiler-cli@18.2.0(@angular/compiler@18.2.0(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.4))(typescript@5.5.4)(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0))
+ '@ngtools/webpack': 18.2.0(@angular/compiler-cli@18.2.0(@angular/compiler@18.2.0(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.4))(typescript@5.5.4)(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5))
'@vitejs/plugin-basic-ssl': 1.1.0(vite@5.4.0(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6))
ansi-colors: 4.1.3
autoprefixer: 10.4.20(postcss@8.4.41)
- babel-loader: 9.1.3(@babel/core@7.25.2)(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0))
+ babel-loader: 9.1.3(@babel/core@7.25.2)(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5))
browserslist: 4.23.3
- copy-webpack-plugin: 12.0.2(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0))
+ copy-webpack-plugin: 12.0.2(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5))
critters: 0.0.24
- css-loader: 7.1.2(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0))
+ css-loader: 7.1.2(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5))
esbuild-wasm: 0.23.0
fast-glob: 3.3.2
http-proxy-middleware: 3.0.0
@@ -13426,11 +13519,11 @@ snapshots:
jsonc-parser: 3.3.1
karma-source-map-support: 1.4.0
less: 4.2.0
- less-loader: 12.2.0(less@4.2.0)(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0))
- license-webpack-plugin: 4.0.2(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0))
+ less-loader: 12.2.0(less@4.2.0)(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5))
+ license-webpack-plugin: 4.0.2(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5))
loader-utils: 3.3.1
magic-string: 0.30.11
- mini-css-extract-plugin: 2.9.0(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0))
+ mini-css-extract-plugin: 2.9.0(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5))
mrmime: 2.0.0
open: 10.1.0
ora: 5.4.1
@@ -13438,13 +13531,13 @@ snapshots:
picomatch: 4.0.2
piscina: 4.6.1
postcss: 8.4.41
- postcss-loader: 8.1.1(postcss@8.4.41)(typescript@5.5.4)(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0))
+ postcss-loader: 8.1.1(postcss@8.4.41)(typescript@5.5.4)(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5))
resolve-url-loader: 5.0.0
rxjs: 7.8.1
sass: 1.77.8
- sass-loader: 16.0.0(sass@1.77.8)(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0))
+ sass-loader: 16.0.0(sass@1.77.8)(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5))
semver: 7.6.3
- source-map-loader: 5.0.0(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0))
+ source-map-loader: 5.0.0(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5))
source-map-support: 0.5.21
terser: 5.31.6
tree-kill: 1.2.2
@@ -13453,10 +13546,10 @@ snapshots:
vite: 5.4.0(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)
watchpack: 2.4.1
webpack: 5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0)
- webpack-dev-middleware: 7.3.0(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0))
- webpack-dev-server: 5.0.4(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0))
+ webpack-dev-middleware: 7.3.0(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5))
+ webpack-dev-server: 5.0.4(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5))
webpack-merge: 6.0.1
- webpack-subresource-integrity: 5.1.0(html-webpack-plugin@5.6.0(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5)))(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0))
+ webpack-subresource-integrity: 5.1.0(html-webpack-plugin@5.6.0(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5)))(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5))
optionalDependencies:
'@angular/platform-server': 18.2.0(@angular/animations@18.2.0(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@18.2.0(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@18.2.0(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@18.2.0(@angular/animations@18.2.0(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@18.2.0(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0)))
esbuild: 0.23.0
@@ -13482,11 +13575,11 @@ snapshots:
- utf-8-validate
- webpack-cli
- '@angular-devkit/build-webpack@0.1802.0(chokidar@3.6.0)(webpack-dev-server@5.0.4(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0)))(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0))':
+ '@angular-devkit/build-webpack@0.1802.0(chokidar@3.6.0)(webpack-dev-server@5.0.4(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5)))(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5))':
dependencies:
'@angular-devkit/architect': 0.1802.0(chokidar@3.6.0)
rxjs: 7.8.1
- webpack: 5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0)
+ webpack: 5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5)
webpack-dev-server: 5.0.4(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5))
transitivePeerDependencies:
- chokidar
@@ -13841,33 +13934,32 @@ snapshots:
remark-parse: 11.0.0
remark-rehype: 11.1.0
remark-smartypants: 3.0.2
- shiki: 1.11.2
+ shiki: 1.14.1
unified: 11.0.5
unist-util-remove-position: 5.0.0
unist-util-visit: 5.0.0
unist-util-visit-parents: 6.0.1
- vfile: 6.0.2
+ vfile: 6.0.3
transitivePeerDependencies:
- supports-color
- '@astrojs/mdx@3.1.3(astro@4.14.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4))':
+ '@astrojs/mdx@3.1.5(astro@4.15.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4))':
dependencies:
'@astrojs/markdown-remark': 5.2.0
'@mdx-js/mdx': 3.0.1
acorn: 8.12.1
- astro: 4.14.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4)
+ astro: 4.15.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4)
es-module-lexer: 1.5.4
estree-util-visit: 2.0.0
- github-slugger: 2.0.0
gray-matter: 4.0.3
- hast-util-to-html: 9.0.1
+ hast-util-to-html: 9.0.2
kleur: 4.1.5
rehype-raw: 7.0.0
remark-gfm: 4.0.0
remark-smartypants: 3.0.2
source-map: 0.7.4
unist-util-visit: 5.0.0
- vfile: 6.0.2
+ vfile: 6.0.3
transitivePeerDependencies:
- supports-color
@@ -13875,27 +13967,32 @@ snapshots:
dependencies:
prismjs: 1.29.0
+ '@astrojs/rss@4.0.5':
+ dependencies:
+ fast-xml-parser: 4.4.1
+ kleur: 4.1.5
+
'@astrojs/sitemap@3.1.6':
dependencies:
sitemap: 7.1.2
stream-replace-string: 2.0.0
zod: 3.23.8
- '@astrojs/starlight-tailwind@2.0.3(@astrojs/starlight@0.26.1(astro@4.14.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4)))(@astrojs/tailwind@5.1.0(astro@4.14.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4))(tailwindcss@3.4.10(ts-node@10.9.2(@swc/core@1.7.11(@swc/helpers@0.5.12))(@types/node@22.3.0)(typescript@5.5.4)))(ts-node@10.9.2(@swc/core@1.7.11(@swc/helpers@0.5.12))(@types/node@22.3.0)(typescript@5.5.4)))(tailwindcss@3.4.10(ts-node@10.9.2(@swc/core@1.7.11(@swc/helpers@0.5.12))(@types/node@22.3.0)(typescript@5.5.4)))':
+ '@astrojs/starlight-tailwind@2.0.3(@astrojs/starlight@0.26.2(astro@4.15.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4)))(@astrojs/tailwind@5.1.0(astro@4.15.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4))(tailwindcss@3.4.10(ts-node@10.9.2(@swc/core@1.7.11(@swc/helpers@0.5.12))(@types/node@22.3.0)(typescript@5.5.4)))(ts-node@10.9.2(@swc/core@1.7.11(@swc/helpers@0.5.12))(@types/node@22.3.0)(typescript@5.5.4)))(tailwindcss@3.4.10(ts-node@10.9.2(@swc/core@1.7.11(@swc/helpers@0.5.12))(@types/node@22.3.0)(typescript@5.5.4)))':
dependencies:
- '@astrojs/starlight': 0.26.1(astro@4.14.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4))
- '@astrojs/tailwind': 5.1.0(astro@4.14.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4))(tailwindcss@3.4.10(ts-node@10.9.2(@swc/core@1.7.11(@swc/helpers@0.5.12))(@types/node@22.3.0)(typescript@5.5.4)))(ts-node@10.9.2(@swc/core@1.7.11(@swc/helpers@0.5.12))(@types/node@22.3.0)(typescript@5.5.4))
+ '@astrojs/starlight': 0.26.2(astro@4.15.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4))
+ '@astrojs/tailwind': 5.1.0(astro@4.15.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4))(tailwindcss@3.4.10(ts-node@10.9.2(@swc/core@1.7.11(@swc/helpers@0.5.12))(@types/node@22.3.0)(typescript@5.5.4)))(ts-node@10.9.2(@swc/core@1.7.11(@swc/helpers@0.5.12))(@types/node@22.3.0)(typescript@5.5.4))
tailwindcss: 3.4.10(ts-node@10.9.2(@swc/core@1.7.11(@swc/helpers@0.5.12))(@types/node@22.3.0)(typescript@5.5.4))
- '@astrojs/starlight@0.26.1(astro@4.14.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4))':
+ '@astrojs/starlight@0.26.2(astro@4.15.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4))':
dependencies:
- '@astrojs/mdx': 3.1.3(astro@4.14.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4))
+ '@astrojs/mdx': 3.1.5(astro@4.15.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4))
'@astrojs/sitemap': 3.1.6
'@pagefind/default-ui': 1.1.0
'@types/hast': 3.0.4
'@types/mdast': 4.0.4
- astro: 4.14.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4)
- astro-expressive-code: 0.35.6(astro@4.14.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4))
+ astro: 4.15.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4)
+ astro-expressive-code: 0.35.6(astro@4.15.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4))
bcp-47: 2.1.0
hast-util-from-html: 2.0.1
hast-util-select: 6.0.2
@@ -13914,9 +14011,9 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@astrojs/tailwind@5.1.0(astro@4.14.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4))(tailwindcss@3.4.10(ts-node@10.9.2(@swc/core@1.7.11(@swc/helpers@0.5.12))(@types/node@22.3.0)(typescript@5.5.4)))(ts-node@10.9.2(@swc/core@1.7.11(@swc/helpers@0.5.12))(@types/node@22.3.0)(typescript@5.5.4))':
+ '@astrojs/tailwind@5.1.0(astro@4.15.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4))(tailwindcss@3.4.10(ts-node@10.9.2(@swc/core@1.7.11(@swc/helpers@0.5.12))(@types/node@22.3.0)(typescript@5.5.4)))(ts-node@10.9.2(@swc/core@1.7.11(@swc/helpers@0.5.12))(@types/node@22.3.0)(typescript@5.5.4))':
dependencies:
- astro: 4.14.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4)
+ astro: 4.15.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4)
autoprefixer: 10.4.20(postcss@8.4.43)
postcss: 8.4.43
postcss-load-config: 4.0.2(postcss@8.4.43)(ts-node@10.9.2(@swc/core@1.7.11(@swc/helpers@0.5.12))(@types/node@22.3.0)(typescript@5.5.4))
@@ -14131,6 +14228,10 @@ snapshots:
dependencies:
'@babel/types': 7.25.2
+ '@babel/parser@7.25.6':
+ dependencies:
+ '@babel/types': 7.25.6
+
'@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.3(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
@@ -14575,7 +14676,7 @@ snapshots:
'@babel/helper-module-imports': 7.24.7
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.25.2)
- '@babel/types': 7.25.2
+ '@babel/types': 7.25.6
transitivePeerDependencies:
- supports-color
@@ -14816,6 +14917,12 @@ snapshots:
'@babel/helper-validator-identifier': 7.24.7
to-fast-properties: 2.0.0
+ '@babel/types@7.25.6':
+ dependencies:
+ '@babel/helper-string-parser': 7.24.8
+ '@babel/helper-validator-identifier': 7.24.7
+ to-fast-properties: 2.0.0
+
'@bcoe/v8-coverage@0.2.3': {}
'@braintree/sanitize-url@6.0.4': {}
@@ -15479,7 +15586,7 @@ snapshots:
'@expressive-code/plugin-shiki@0.35.6':
dependencies:
'@expressive-code/core': 0.35.6
- shiki: 1.11.2
+ shiki: 1.14.1
'@expressive-code/plugin-text-markers@0.35.6':
dependencies:
@@ -16111,7 +16218,7 @@ snapshots:
unist-util-position-from-estree: 2.0.0
unist-util-stringify-position: 4.0.0
unist-util-visit: 5.0.0
- vfile: 6.0.2
+ vfile: 6.0.3
transitivePeerDependencies:
- supports-color
@@ -16320,12 +16427,6 @@ snapshots:
typescript: 5.5.4
webpack: 5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5)
- '@ngtools/webpack@18.2.0(@angular/compiler-cli@18.2.0(@angular/compiler@18.2.0(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.4))(typescript@5.5.4)(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0))':
- dependencies:
- '@angular/compiler-cli': 18.2.0(@angular/compiler@18.2.0(@angular/core@18.2.0(rxjs@7.8.1)(zone.js@0.15.0)))(typescript@5.5.4)
- typescript: 5.5.4
- webpack: 5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0)
-
'@nodelib/fs.scandir@2.1.5':
dependencies:
'@nodelib/fs.stat': 2.0.5
@@ -18111,14 +18212,17 @@ snapshots:
transitivePeerDependencies:
- chokidar
- '@shikijs/core@1.11.2':
+ '@shikijs/core@1.14.1':
dependencies:
'@types/hast': 3.0.4
- '@shikijs/core@1.14.1':
+ '@shikijs/core@1.16.1':
dependencies:
+ '@shikijs/vscode-textmate': 9.2.0
'@types/hast': 3.0.4
+ '@shikijs/vscode-textmate@9.2.0': {}
+
'@sideway/address@4.1.5':
dependencies:
'@hapi/hoek': 9.3.0
@@ -19685,23 +19789,28 @@ snapshots:
astring@1.8.6: {}
- astro-expressive-code@0.35.6(astro@4.14.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4)):
+ astro-expressive-code@0.35.6(astro@4.15.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4)):
dependencies:
- astro: 4.14.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4)
+ astro: 4.15.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4)
rehype-expressive-code: 0.35.6
- astro@4.14.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4):
+ astro-remote@0.3.2:
+ dependencies:
+ entities: 4.5.0
+ marked: 12.0.2
+ marked-footnote: 1.2.4(marked@12.0.2)
+ marked-smartypants: 1.1.8(marked@12.0.2)
+ ultrahtml: 1.5.3
+
+ astro@4.15.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4):
dependencies:
'@astrojs/compiler': 2.10.3
'@astrojs/internal-helpers': 0.4.1
'@astrojs/markdown-remark': 5.2.0
'@astrojs/telemetry': 3.1.0
'@babel/core': 7.25.2
- '@babel/generator': 7.25.0
- '@babel/parser': 7.25.3
'@babel/plugin-transform-react-jsx': 7.25.2(@babel/core@7.25.2)
- '@babel/traverse': 7.25.3
- '@babel/types': 7.25.2
+ '@babel/types': 7.25.6
'@oslojs/encoding': 0.4.1
'@rollup/pluginutils': 5.1.0(rollup@4.20.0)
'@types/babel__core': 7.20.5
@@ -19724,8 +19833,8 @@ snapshots:
es-module-lexer: 1.5.4
esbuild: 0.21.5
estree-walker: 3.0.3
- execa: 8.0.1
fast-glob: 3.3.2
+ fastq: 1.17.1
flattie: 1.1.1
github-slugger: 2.0.0
gray-matter: 4.0.3
@@ -19734,10 +19843,11 @@ snapshots:
js-yaml: 4.1.0
kleur: 4.1.5
magic-string: 0.30.11
- micromatch: 4.0.7
+ magicast: 0.3.5
+ micromatch: 4.0.8
mrmime: 2.0.0
neotraverse: 0.6.18
- ora: 8.0.1
+ ora: 8.1.0
p-limit: 6.1.0
p-queue: 8.0.1
path-to-regexp: 6.2.2
@@ -19745,12 +19855,13 @@ snapshots:
prompts: 2.4.2
rehype: 13.0.1
semver: 7.6.3
- shiki: 1.14.1
+ shiki: 1.16.1
string-width: 7.2.0
strip-ansi: 7.1.0
- tsconfck: 3.1.1(typescript@5.5.4)
+ tinyexec: 0.3.0
+ tsconfck: 3.1.3(typescript@5.5.4)
unist-util-visit: 5.0.0
- vfile: 6.0.2
+ vfile: 6.0.3
vite: 5.4.2(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)
vitefu: 0.2.5(vite@5.4.2(@types/node@22.3.0)(less@4.2.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6))
which-pm: 3.0.0
@@ -19862,13 +19973,6 @@ snapshots:
schema-utils: 4.2.0
webpack: 5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5)
- babel-loader@9.1.3(@babel/core@7.25.2)(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0)):
- dependencies:
- '@babel/core': 7.25.2
- find-cache-dir: 4.0.0
- schema-utils: 4.2.0
- webpack: 5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0)
-
babel-plugin-const-enum@1.2.0(@babel/core@7.25.2):
dependencies:
'@babel/core': 7.25.2
@@ -20149,7 +20253,7 @@ snapshots:
bytes@3.1.2: {}
- c12@1.11.1:
+ c12@1.11.1(magicast@0.3.5):
dependencies:
chokidar: 3.6.0
confbox: 0.1.7
@@ -20163,6 +20267,8 @@ snapshots:
perfect-debounce: 1.0.0
pkg-types: 1.1.3
rc9: 2.1.2
+ optionalDependencies:
+ magicast: 0.3.5
cac@6.7.14: {}
@@ -20696,7 +20802,7 @@ snapshots:
serialize-javascript: 6.0.2
webpack: 5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5)
- copy-webpack-plugin@12.0.2(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0)):
+ copy-webpack-plugin@12.0.2(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5)):
dependencies:
fast-glob: 3.3.2
glob-parent: 6.0.2
@@ -20704,7 +20810,7 @@ snapshots:
normalize-path: 3.0.0
schema-utils: 4.2.0
serialize-javascript: 6.0.2
- webpack: 5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0)
+ webpack: 5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5)
core-js-compat@3.37.1:
dependencies:
@@ -20848,7 +20954,7 @@ snapshots:
optionalDependencies:
webpack: 5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5)
- css-loader@7.1.2(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0)):
+ css-loader@7.1.2(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5)):
dependencies:
icss-utils: 5.1.0(postcss@8.4.43)
postcss: 8.4.43
@@ -20859,7 +20965,7 @@ snapshots:
postcss-value-parser: 4.2.0
semver: 7.6.3
optionalDependencies:
- webpack: 5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0)
+ webpack: 5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5)
css-minimizer-webpack-plugin@5.0.1(esbuild@0.21.5)(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5)):
dependencies:
@@ -22045,6 +22151,10 @@ snapshots:
fast-uri@3.0.1: {}
+ fast-xml-parser@4.4.1:
+ dependencies:
+ strnum: 1.0.5
+
fastq@1.17.1:
dependencies:
reusify: 1.0.4
@@ -22189,7 +22299,7 @@ snapshots:
find-yarn-workspace-root2@1.2.16:
dependencies:
- micromatch: 4.0.7
+ micromatch: 4.0.8
pkg-dir: 4.2.0
flat-cache@4.0.1:
@@ -22913,6 +23023,20 @@ snapshots:
stringify-entities: 4.0.4
zwitch: 2.0.4
+ hast-util-to-html@9.0.2:
+ dependencies:
+ '@types/hast': 3.0.4
+ '@types/unist': 3.0.2
+ ccount: 2.0.1
+ comma-separated-tokens: 2.0.3
+ hast-util-whitespace: 3.0.0
+ html-void-elements: 3.0.0
+ mdast-util-to-hast: 13.2.0
+ property-information: 6.5.0
+ space-separated-tokens: 2.0.2
+ stringify-entities: 4.0.4
+ zwitch: 2.0.4
+
hast-util-to-jsx-runtime@2.3.0:
dependencies:
'@types/estree': 1.0.5
@@ -24372,11 +24496,11 @@ snapshots:
less: 4.1.3
webpack: 5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5)
- less-loader@12.2.0(less@4.2.0)(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0)):
+ less-loader@12.2.0(less@4.2.0)(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5)):
dependencies:
less: 4.2.0
optionalDependencies:
- webpack: 5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0)
+ webpack: 5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5)
less@4.1.3:
dependencies:
@@ -24419,12 +24543,6 @@ snapshots:
optionalDependencies:
webpack: 5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5)
- license-webpack-plugin@4.0.2(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0)):
- dependencies:
- webpack-sources: 3.2.3
- optionalDependencies:
- webpack: 5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0)
-
lie@3.3.0:
dependencies:
immediate: 3.0.6
@@ -24663,6 +24781,12 @@ snapshots:
dependencies:
'@jridgewell/sourcemap-codec': 1.5.0
+ magicast@0.3.5:
+ dependencies:
+ '@babel/parser': 7.25.6
+ '@babel/types': 7.25.6
+ source-map-js: 1.2.0
+
make-dir@2.1.0:
dependencies:
pify: 4.0.1
@@ -24713,6 +24837,10 @@ snapshots:
dependencies:
react: 18.3.1
+ marked-footnote@1.2.4(marked@12.0.2):
+ dependencies:
+ marked: 12.0.2
+
marked-gfm-heading-id@4.1.0(marked@13.0.3):
dependencies:
github-slugger: 2.0.0
@@ -24726,6 +24854,17 @@ snapshots:
dependencies:
marked: 13.0.3
+ marked-plaintify@1.0.1(marked@12.0.2):
+ dependencies:
+ marked: 12.0.2
+
+ marked-smartypants@1.1.8(marked@12.0.2):
+ dependencies:
+ marked: 12.0.2
+ smartypants: 0.2.2
+
+ marked@12.0.2: {}
+
marked@13.0.3: {}
mdast-util-definitions@6.0.0:
@@ -25405,6 +25544,11 @@ snapshots:
braces: 3.0.3
picomatch: 2.3.1
+ micromatch@4.0.8:
+ dependencies:
+ braces: 3.0.3
+ picomatch: 2.3.1
+
mime-db@1.52.0: {}
mime-db@1.53.0: {}
@@ -25440,11 +25584,11 @@ snapshots:
schema-utils: 4.2.0
webpack: 5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5)
- mini-css-extract-plugin@2.9.0(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0)):
+ mini-css-extract-plugin@2.9.0(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5)):
dependencies:
schema-utils: 4.2.0
tapable: 2.2.1
- webpack: 5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0)
+ webpack: 5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5)
minimalistic-assert@1.0.1: {}
@@ -25706,7 +25850,7 @@ snapshots:
node-gyp-build: 4.8.1
optional: true
- nitropack@2.9.7(encoding@0.1.13):
+ nitropack@2.9.7(encoding@0.1.13)(magicast@0.3.5):
dependencies:
'@cloudflare/kv-asset-handler': 0.3.4
'@netlify/functions': 2.8.1
@@ -25721,7 +25865,7 @@ snapshots:
'@types/http-proxy': 1.17.14
'@vercel/nft': 0.26.5(encoding@0.1.13)
archiver: 7.0.1
- c12: 1.11.1
+ c12: 1.11.1(magicast@0.3.5)
chalk: 5.3.0
chokidar: 3.6.0
citty: 0.1.6
@@ -26249,6 +26393,18 @@ snapshots:
string-width: 7.2.0
strip-ansi: 7.1.0
+ ora@8.1.0:
+ dependencies:
+ chalk: 5.3.0
+ cli-cursor: 5.0.0
+ cli-spinners: 2.9.2
+ is-interactive: 2.0.0
+ is-unicode-supported: 2.0.0
+ log-symbols: 6.0.0
+ stdin-discarder: 0.2.2
+ string-width: 7.2.0
+ strip-ansi: 7.1.0
+
ordered-binary@1.5.1: {}
os-filter-obj@2.0.0:
@@ -26463,7 +26619,7 @@ snapshots:
nlcst-to-string: 4.0.0
unist-util-modify-children: 4.0.0
unist-util-visit-children: 3.0.0
- vfile: 6.0.2
+ vfile: 6.0.3
parse-node-version@1.0.1: {}
@@ -26798,14 +26954,14 @@ snapshots:
semver: 7.6.3
webpack: 5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5)
- postcss-loader@8.1.1(postcss@8.4.41)(typescript@5.5.4)(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0)):
+ postcss-loader@8.1.1(postcss@8.4.41)(typescript@5.5.4)(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5)):
dependencies:
cosmiconfig: 9.0.0(typescript@5.5.4)
jiti: 1.21.6
postcss: 8.4.41
semver: 7.6.3
optionalDependencies:
- webpack: 5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0)
+ webpack: 5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5)
transitivePeerDependencies:
- typescript
@@ -27470,7 +27626,7 @@ snapshots:
dependencies:
'@types/hast': 3.0.4
hast-util-raw: 9.0.4
- vfile: 6.0.2
+ vfile: 6.0.3
rehype-slug@6.0.0:
dependencies:
@@ -27483,7 +27639,7 @@ snapshots:
rehype-stringify@10.0.0:
dependencies:
'@types/hast': 3.0.4
- hast-util-to-html: 9.0.1
+ hast-util-to-html: 9.0.2
unified: 11.0.5
rehype@13.0.1:
@@ -27573,7 +27729,7 @@ snapshots:
'@types/mdast': 4.0.4
mdast-util-to-hast: 13.2.0
unified: 11.0.5
- vfile: 6.0.2
+ vfile: 6.0.3
remark-smartypants@3.0.2:
dependencies:
@@ -27797,12 +27953,12 @@ snapshots:
optionalDependencies:
sass: 1.77.8
- sass-loader@16.0.0(sass@1.77.8)(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0)):
+ sass-loader@16.0.0(sass@1.77.8)(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5)):
dependencies:
neo-async: 2.6.2
optionalDependencies:
sass: 1.77.8
- webpack: 5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0)
+ webpack: 5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5)
sass@1.77.8:
dependencies:
@@ -28001,14 +28157,15 @@ snapshots:
interpret: 1.4.0
rechoir: 0.6.2
- shiki@1.11.2:
+ shiki@1.14.1:
dependencies:
- '@shikijs/core': 1.11.2
+ '@shikijs/core': 1.14.1
'@types/hast': 3.0.4
- shiki@1.14.1:
+ shiki@1.16.1:
dependencies:
- '@shikijs/core': 1.14.1
+ '@shikijs/core': 1.16.1
+ '@shikijs/vscode-textmate': 9.2.0
'@types/hast': 3.0.4
side-channel@1.0.6:
@@ -28086,6 +28243,8 @@ snapshots:
smart-buffer@4.2.0: {}
+ smartypants@0.2.2: {}
+
smob@1.5.0: {}
sockjs@0.3.24:
@@ -28125,12 +28284,6 @@ snapshots:
source-map-js: 1.2.0
webpack: 5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5)
- source-map-loader@5.0.0(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0)):
- dependencies:
- iconv-lite: 0.6.3
- source-map-js: 1.2.0
- webpack: 5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0)
-
source-map-support@0.5.13:
dependencies:
buffer-from: 1.1.2
@@ -28239,6 +28392,17 @@ snapshots:
standard-as-callback@2.1.0: {}
+ starlight-blog@0.12.0(@astrojs/starlight@0.26.2(astro@4.15.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4)))(astro@4.15.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4)):
+ dependencies:
+ '@astrojs/rss': 4.0.5
+ '@astrojs/starlight': 0.26.2(astro@4.15.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4))
+ astro: 4.15.2(@types/node@22.3.0)(less@4.2.0)(rollup@4.20.0)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6)(typescript@5.5.4)
+ astro-remote: 0.3.2
+ github-slugger: 2.0.0
+ marked: 12.0.2
+ marked-plaintify: 1.0.1(marked@12.0.2)
+ ultrahtml: 1.5.3
+
static-eval@2.1.1:
dependencies:
escodegen: 2.1.0
@@ -28394,6 +28558,8 @@ snapshots:
strip-outer@2.0.0: {}
+ strnum@1.0.5: {}
+
strong-log-transformer@2.1.0:
dependencies:
duplexer: 0.1.2
@@ -28607,14 +28773,14 @@ snapshots:
'@swc/core': 1.7.11(@swc/helpers@0.5.12)
esbuild: 0.21.5
- terser-webpack-plugin@5.3.10(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0)(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0)):
+ terser-webpack-plugin@5.3.10(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0)(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5)):
dependencies:
'@jridgewell/trace-mapping': 0.3.25
jest-worker: 27.5.1
schema-utils: 3.3.0
serialize-javascript: 6.0.2
terser: 5.31.6
- webpack: 5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0)
+ webpack: 5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5)
optionalDependencies:
'@swc/core': 1.7.11(@swc/helpers@0.5.12)
esbuild: 0.23.0
@@ -28704,6 +28870,8 @@ snapshots:
tinybench@2.8.0: {}
+ tinyexec@0.3.0: {}
+
tinypool@0.8.4: {}
tinyspy@2.2.1: {}
@@ -28957,6 +29125,10 @@ snapshots:
optionalDependencies:
typescript: 5.5.4
+ tsconfck@3.1.3(typescript@5.5.4):
+ optionalDependencies:
+ typescript: 5.5.4
+
tsconfig-paths-webpack-plugin@4.0.0:
dependencies:
chalk: 4.1.2
@@ -29049,6 +29221,8 @@ snapshots:
uglify-js@3.19.0:
optional: true
+ ultrahtml@1.5.3: {}
+
uncrypto@0.1.3: {}
unctx@2.3.1:
@@ -29345,6 +29519,11 @@ snapshots:
unist-util-stringify-position: 4.0.0
vfile-message: 4.0.2
+ vfile@6.0.3:
+ dependencies:
+ '@types/unist': 3.0.2
+ vfile-message: 4.0.2
+
vite-node@1.6.0(@types/node@20.14.12)(less@4.1.3)(sass@1.77.8)(stylus@0.59.0)(terser@5.31.6):
dependencies:
cac: 6.7.14
@@ -29698,17 +29877,6 @@ snapshots:
optionalDependencies:
webpack: 5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5)
- webpack-dev-middleware@7.3.0(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0)):
- dependencies:
- colorette: 2.0.20
- memfs: 4.9.4
- mime-types: 2.1.35
- on-finished: 2.4.1
- range-parser: 1.2.1
- schema-utils: 4.2.0
- optionalDependencies:
- webpack: 5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0)
-
webpack-dev-server@4.15.2(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5)):
dependencies:
'@types/bonjour': 3.5.13
@@ -29789,46 +29957,6 @@ snapshots:
- supports-color
- utf-8-validate
- webpack-dev-server@5.0.4(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0)):
- dependencies:
- '@types/bonjour': 3.5.13
- '@types/connect-history-api-fallback': 1.5.4
- '@types/express': 4.17.21
- '@types/serve-index': 1.9.4
- '@types/serve-static': 1.15.7
- '@types/sockjs': 0.3.36
- '@types/ws': 8.5.11
- ansi-html-community: 0.0.8
- bonjour-service: 1.2.1
- chokidar: 3.6.0
- colorette: 2.0.20
- compression: 1.7.4
- connect-history-api-fallback: 2.0.0
- default-gateway: 6.0.3
- express: 4.19.2
- graceful-fs: 4.2.11
- html-entities: 2.5.2
- http-proxy-middleware: 2.0.6(@types/express@4.17.21)
- ipaddr.js: 2.2.0
- launch-editor: 2.8.0
- open: 10.1.0
- p-retry: 6.2.0
- rimraf: 5.0.9
- schema-utils: 4.2.0
- selfsigned: 2.4.1
- serve-index: 1.9.1
- sockjs: 0.3.24
- spdy: 4.0.2
- webpack-dev-middleware: 7.3.0(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5))
- ws: 8.18.0
- optionalDependencies:
- webpack: 5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0)
- transitivePeerDependencies:
- - bufferutil
- - debug
- - supports-color
- - utf-8-validate
-
webpack-hot-middleware@2.26.1:
dependencies:
ansi-html-community: 0.0.8
@@ -29858,13 +29986,6 @@ snapshots:
optionalDependencies:
html-webpack-plugin: 5.6.0(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5))
- webpack-subresource-integrity@5.1.0(html-webpack-plugin@5.6.0(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5)))(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0)):
- dependencies:
- typed-assert: 1.0.9
- webpack: 5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0)
- optionalDependencies:
- html-webpack-plugin: 5.6.0(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5))
-
webpack-virtual-modules@0.6.2: {}
webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5):
@@ -29921,7 +30042,7 @@ snapshots:
neo-async: 2.6.2
schema-utils: 3.3.0
tapable: 2.2.1
- terser-webpack-plugin: 5.3.10(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0)(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0))
+ terser-webpack-plugin: 5.3.10(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.23.0)(webpack@5.93.0(@swc/core@1.7.11(@swc/helpers@0.5.12))(esbuild@0.21.5))
watchpack: 2.4.1
webpack-sources: 3.2.3
transitivePeerDependencies: