Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@vctrl/hooks

vectreal93AGPL-3.0-only0.9.5TypeScript support: included

vctrl/hooks is a React hooks package designed to simplify 3D model loading and management within React applications. It's part of the vectreal-core ecosystem and is primarily used in the vctrl/viewer React component and the official website application.

vectreal, react, 3d, model, viewer, react-component, react-three-fiber, react-three-drei, threejs, react-three-gltf, gltf, glb, usdz, three-model-loading, model-viewer

readme

vctrl/hooks

Version and release packages to NPM @vctrl/hooks | NPM Downloads

Note: This library is still undergoing heavy development until the first major version is released. This may lead to breaking changes in upcoming updates.

Overview

@vctrl/hooks is a React hooks package designed to simplify 3D model loading, optimization, and exporting within React applications. It's part of the vectreal-core ecosystem and is fully integrated into the official website application.

The package provides powerful hooks for:

  • Loading various 3D model file formats (useLoadModel)
  • Optimizing 3D models (useOptimizeModel)
  • Exporting 3D models from Three.js scenes (useExportModel)

It also includes a React context (ModelContext) for easy state management and an event system for handling different stages of the model loading process.

Table of Contents

Installation

To install the package, use npm or yarn:

npm install @vctrl/hooks
# or
yarn add @vctrl/hooks

Hooks

useLoadModel

Overview

useLoadModel is a React hook for loading and managing 3D model files in your application. It supports various file formats and integrates with Three.js for rendering.

Features

  • Supports direct 3D model file loading (GLTF, GLB, USDZ)
  • Provides loading progress updates
  • Emits events during the loading process
  • Integrates with Three.js
  • Supports multiple file uploads (e.g., .gltf with associated .bin and texture files)
  • Integrates with useOptimizeModel for model optimization
  • TypeScript support

Usage

Here's a basic example of how to use useLoadModel:

import React from 'react';
import { useLoadModel } from '@vctrl/hooks/use-load-model';

function ModelLoader() {
  const { load, file, progress, isLoading } = useLoadModel();

  const onFileChange = (event) => {
    const files = Array.from(event.target.files);
    load(files);
  };

  return (
    <div>
      <input type="file" onChange={onFileChange} multiple />
      {isLoading && <p>Loading: {progress}%</p>}
      {file && <p>Model loaded: {file.name}</p>}
    </div>
  );
}

Note: Multiple files can be handled, e.g., when uploading a .gltf model along with its .bin file and relevant texture files (e.g., .jpeg, .png).

You can also use the ModelProvider and useModelContext to access the model state across your application:

// App.jsx
import React from 'react';
import { ModelProvider } from '@vctrl/hooks/use-load-model';
import ModelConsumer from './ModelConsumer';

function App() {
  return (
    <ModelProvider>
      <ModelConsumer />
    </ModelProvider>
  );
}

// ModelConsumer.jsx
import React from 'react';
import { useModelContext } from '@vctrl/hooks/use-load-model';

function ModelConsumer() {
  const { file, isLoading, progress, load } = useModelContext();

  // Use the context values
  return (
    // ... your component logic
  );
}

Note: When using the React context, load models using the useModelContext hook.

API Reference

The useLoadModel hook returns the following:

  • file: The loaded file object (ModelFile | null).
  • isLoading: A boolean indicating whether a file is currently being loaded.
  • progress: A number between 0 and 100 representing the loading progress.
  • load(files): A function to handle file uploads. It accepts an array of File objects or a mixed array of File objects and directory entries.
  • reset(): A function to reset the internal state back to its initial values.
  • on(event, handler): A function to subscribe to events.
  • off(event, handler): A function to unsubscribe from events.
  • optimize: An object populated by the useOptimizeModel hook integration, providing optimization functions (see below).

Optimization Integration

If you pass an instance of useOptimizeModel to useLoadModel, it will integrate optimization functions into the optimize object:

import React from 'react';
import { useLoadModel } from '@vctrl/hooks/use-load-model';
import { useOptimizeModel } from '@vctrl/hooks/use-optimize-model';

function ModelLoader() {
  const optimizer = useOptimizeModel();
  const { load, file, optimize } = useLoadModel(optimizer);

  const handleSimplify = async () => {
    await optimize.simplifyOptimization();
    // The optimized model is now in file.model
  };

  return (
    // ... your component logic
  );
}

The optimize object includes quick access optimization:

  • simplifyOptimization(options): Simplifies the model using mesh simplification.
  • dedupOptimization(options): Removes duplicate vertices and meshes.
  • quantizeOptimization(options): Reduces the precision of vertex attributes.
  • normalsOptimization(options): Overrides the normals of each object in the scene.
  • texturesCompressionOptimization(options): Compresses the relevant textures in the model file using texture compression.

useOptimizeModel

Overview

useOptimizeModel is a React hook used to optimize 3D models, particularly GLTF-based scenes. It can be used in conjunction with useLoadModel or independently.

Features

  • Simplifies 3D models using mesh optimization algorithms
  • Provides deduplication and quantization optimizations
  • Integrates with useLoadModel and ModelContext
  • TypeScript support

Usage

There are two ways to use the useOptimizeModel hook:

  1. Directly with useLoadModel

    import React from 'react';
    import { useLoadModel } from '@vctrl/hooks/use-load-model';
    import { useOptimizeModel } from '@vctrl/hooks/use-optimize-model';
    
    function ModelLoader() {
      const optimizer = useOptimizeModel();
      const { load, file, optimize } = useLoadModel(optimizer);
    
      const handleSimplify = async () => {
        await optimize.simplifyOptimization();
        // The optimized model is now in file.model
      };
    
      const handleDedup = async () => {
        await optimize.dedupOptimization();
      };
    
      const handleQuantize = async () => {
        await optimize.quantizeOptimization();
      };
    
      return (
        <div>
          <input
            type="file"
            onChange={(e) => load(Array.from(e.target.files))}
            multiple
          />
          <button onClick={handleSimplify}>Simplify Model</button>
          <button onClick={handleDedup}>Deduplicate Model</button>
          <button onClick={handleQuantize}>Quantize Model</button>
        </div>
      );
    }

    Note: Changes are applied to the file.model field from useLoadModel automatically when using optimizations.

  2. With ModelProvider and useModelContext

    // App.jsx
    import React from 'react';
    import { ModelProvider } from '@vctrl/hooks/use-load-model';
    import { useOptimizeModel } from '@vctrl/hooks/use-optimize-model';
    import Scene from './Scene';
    
    function App() {
      const optimizer = useOptimizeModel();
    
      return (
        <ModelProvider optimizer={optimizer}>
          <Scene />
        </ModelProvider>
      );
    }
    
    // Scene.jsx
    import React from 'react';
    import { useModelContext } from '@vctrl/hooks/use-load-model';
    
    function Scene() {
      const { optimize } = useModelContext();
    
      const handleSimplify = async () => {
        await optimize.simplifyOptimization();
      };
    
      const handleDedup = async () => {
        await optimize.dedupOptimization();
      };
    
      const handleQuantize = async () => {
        await optimize.quantizeOptimization();
      };
    
      return (
        <div>
          <button onClick={handleSimplify}>Simplify Model</button>
          <button onClick={handleDedup}>Deduplicate Model</button>
          <button onClick={handleQuantize}>Quantize Model</button>
        </div>
      );
    }

API Reference

The useOptimizeModel hook returns the following:

  • load(model): Loads a Three.js Object3D model into the optimizer.
  • getModel(): Retrieves the optimized model as a binary array buffer.
  • simplifyOptimization(options): Simplifies the current model using the MeshoptSimplifier.
  • dedupOptimization(options): Removes duplicate vertices and meshes.
  • quantizeOptimization(options): Reduces the precision of vertex attributes.
  • normalsOptimization: Overrides normals
  • texturesOptimization(options): Compresses related textures.
  • getSize(): Object with byte size of gltf scene and a formatted megabyte string
  • reset(): Resets the current optimizer model and report state.
  • report: @gltf-transform gltf report object with relevant details about a gltf scene
  • error: Stores any possible optimization errors
  • loading: Boolean for when the model is being loaded

useExportModel

Overview

useExportModel is a React hook for exporting 3D models from a Three.js scene.

Features

  • Exports models in GLTF or GLB format
  • Handles embedded resources and textures
  • Integrates with Three.js scenes
  • TypeScript support

Usage

import React from 'react';
import { useExportModel } from '@vctrl/hooks/use-export-model';

function ExportButton({ file }) {
  const { handleGltfExport } = useExportModel(
    () => console.log('Export complete'),
    (error) => console.error('Export error:', error),
  );

  const exportAsGlb = () => {
    handleGltfExport(file, true); // Export as GLB (binary)
  };

  const exportAsGltf = () => {
    handleGltfExport(file, false); // Export as GLTF
  };

  return (
    <div>
      <button onClick={exportAsGlb}>Export as GLB</button>
      <button onClick={exportAsGltf}>Export as GLTF</button>
    </div>
  );
}

API Reference

The useExportModel hook returns the following:

  • handleGltfExport(file, binary): Function to handle exporting the model.
    • file: The ModelFile object to export.
    • binary: A boolean indicating whether to export in binary format (true for GLB, false for GLTF).
    • The function exports the model and triggers file download.

ModelContext

ModelContext is a React context that provides the state and functions from useLoadModel (and optionally useOptimizeModel) to child components.

import { ModelProvider, useModelContext } from '@vctrl/hooks/use-load-model';

function App() {
  return (
    <ModelProvider>
      <ModelConsumer />
    </ModelProvider>
  );
}

function ModelConsumer() {
  const { file, isLoading, progress, load, optimize } = useModelContext();
  // Use the context values
}

Note: When using the React context, load models using the useModelContext hook.

Common Concepts

Supported File Types

The package currently supports the following 3D model file formats:

  • GLTF (.gltf)
  • GLB (.glb)
  • USDZ (.usdz)

These are defined in the ModelFileTypes enum in types.ts.

File Loading Process

The file loading process, particularly for GLTF files, is handled internally by the hooks. The process includes:

  1. Parsing the GLTF file content.
  2. Embedding external resources (buffers and images) into the GLTF content.
  3. Using Three.js GLTFLoader to parse the modified GLTF content.
  4. Updating the state with the loaded model.
  5. Integrating with the optimizer if provided.

The loading process includes progress updates, which are communicated through the event system.

State Management

The package uses a reducer pattern for state management. The state includes:

  • file: The currently loaded model file.
  • isLoading: A boolean indicating if a file is being loaded.
  • progress: The current loading progress.
  • supportedFileTypes: An array of supported file types.

Actions for updating the state are defined in the Action type in types.ts.

Integration with Three.js

The package integrates with Three.js for handling 3D model rendering and manipulation. The loaded models are compatible with Three.js scenes, with the model stored as a Three.js Object3D in the ModelFile interface.

Development

This package is part of a monorepo workspace managed with Nx. To contribute or modify the package:

  1. Clone the monorepo from vectreal-core.
  2. Install dependencies: npm install or yarn install.
  3. Make your changes.
  4. Build the package: nx build vctrl/hooks.
  5. Test your changes: nx test vctrl/hooks.

License

This project is licensed under the GNU Affero General Public License v3.0. Please refer to the LICENSE file in the package root for licensing information.

Contributing

Contributions are welcome! Please read the contributing guidelines in the vectreal-core monorepo before submitting pull requests.

Support

For issues, feature requests, or questions, please file an issue in the GitHub repository.

changelog

0.9.5 (2025-03-14)

🩹 Fixes

  • apps/official-website: Editor Model loading (c041f2a)
  • apps/official-website/editor: missing import for useState and improved loading state handling (7b37f54)
  • packages/hooks: ensure buffers are converted to Uint8Array before adding to zip file (4e1f99d)

❤️ Thank You

  • Mo
  • Schlomoh

0.9.4 (2024-11-24)

🩹 Fixes

  • packages/viewer: add manual dark mode support in VectrealViewer component using js (aaf5a14)

❤️ Thank You

  • Moritz Becker

0.9.3 (2024-11-24)

🩹 Fixes

  • packages/viewer: the clickable area of the info-popover footer (de4c3d7)
  • packages/viewer: update className description and apply it to the outermost container (3c5c3c1)
  • packages/viewer: add 'storybook-addon-deep-controls' to ignoredDependencies in ESLint configuration (bedcaf6)
  • workflows: update Chromatic workflow to ignore chore branches (4f937a7)

❤️ Thank You

  • Moritz Becker

0.9.2 (2024-11-23)

🩹 Fixes

  • pacakges/official-website: normalize action string for upload event (94035cb)
  • packages/viewer: update CSS selectors for light and dark mode variables (f1d43cd)
  • project: update dependencies and remove obsolete entries (356b1c4)

❤️ Thank You

  • Moritz Becker

0.9.1 (2024-11-07)

🩹 Fixes

  • packages/viewer: dedup div with "vctrl-viewer" classname and add vctrl classnames to popover (a00be5b)

❤️ Thank You

  • Moritz Becker

0.9.0 (2024-11-07)

🚀 Features

  • packages/viewer: update peer dependencies, add Storybook configuration, implement robust styling and remove postcss config files (df8359a)
  • packages/viewer: enhance Storybook configuration with deep controls and auto-generated documentation (7df00eb)

📖 Documentation

  • project: add Storybook badge to README files for vctrl/viewer documentation (c0a0659)

❤️ Thank You

  • Moritz Becker

0.8.0 (2024-11-02)

🚀 Features

  • packages/hooks: optimize model and add normals optimization (6f0bde1)
  • project: added github actions and nx grouping to dependabot (7ffc248)

🩹 Fixes

  • packages/viewer: adjust loading spinner styles (286ccc7)
  • packages/viewer: change tailwind styling to css modules styling (273ec59)

📖 Documentation

  • project: changed the serve command to vctrl (b48b34b)

❤️ Thank You

  • Mo @Schlomoh
  • Moritz Becker
  • Nils Ingwersen

0.7.8 (2024-10-28)

🩹 Fixes

  • packages/viewer: disabled/stuttering SceneControls component (361f6a1)

❤️ Thank You

  • Moritz Becker

0.7.7 (2024-10-26)

📖 Documentation

  • packages/viewer: optimize README.md and add example code (7b7fce8)

❤️ Thank You

  • Moritz Becker

0.7.6 (2024-10-24)

📖 Documentation

  • packages/viewer: add CodeSandbox example link (9d196fa)

❤️ Thank You

  • Moritz Becker

0.7.5 (2024-10-22)

🩹 Fixes

  • packages/viewer: styling in info-popover component (dfdd977)

❤️ Thank You

  • Moritz Becker

0.7.4 (2024-10-22)

🚀 Features

  • apps/official-website: enable offline Google Analytics in Vite config (9b25a2f)
  • apps/official-website: move ga initialization to base-layout & add custom event tracking (660e847)

🩹 Fixes

  • apps/official-website: remove useInitGA hook from app component (c5a7ec1)
  • apps/official-website/editor: fix accept pattern and remove webkitdirectory attribute (7c0f653)
  • packages/hooks: optimize hook volumne + emission material extension registration (6ec7915)
  • project: update postcss configuration in vite (3dad878)

❤️ Thank You

  • Moritz Becker

0.7.3 (2024-10-20)

🩹 Fixes

  • packages/viewer: remove cross dependency to vctrl/hooks (f150b31)

❤️ Thank You

  • Moritz Becker

0.7.2 (2024-10-19)

🩹 Fixes

  • packages: cross dependencies (4fbe8b3)

❤️ Thank You

  • Moritz Becker

0.7.0 (2024-10-19)

🚀 Features

  • apps/official-website: unify optimization handler in editor file-menu (714197e)
  • apps/official-website: add color picker hex value input (41812d5)
  • official-website: add hdr bluriness control to file-menu (8a32492)
  • packages/viewer: add info popover to display additional info (5547fb1)

🩹 Fixes

  • apps/official-website: remove dev check in ga hook (2aecde4)
  • packages: update dependencies in package.json with eslint nx plugin (1eab9b7)
  • packages/viewer: adjust grid component to snap to bottom of model (2e1a294)
  • packages/viewer: default env preset + optional background color (5ecc5d0)
  • project: tailwind setup for packages + apps (3240e01)

📖 Documentation

  • project: small changes - mainly added/changed links (b2a9934)

❤️ Thank You

  • Moritz Becker

0.6.0 (2024-10-11)

🚀 Features

  • apps/official-website: integrate texture compression optimization (c3933d3)
  • official-website: rework the reports modal of the editor (1808e07)
  • packages/hooks: add tetxure compression optimization (41555ad)

🩹 Fixes

  • apps/official-website: reset optimize on Reports dismount (db5656a)
  • apps/official-website: add use-accept-pattern hook for unified patterns across inputs (4bf83a8)
  • packages/hooks: loading of model buffer failed because of wrong types in development (1c4e734)

📖 Documentation

  • packages/hooks: add docstrings (e9465e4)
  • project: update readme documentations with viewer envOptions, options for optimizations and new texture compression optimization + misc. (0a1df16)

❤️ Thank You

  • Moritz Becker

0.5.0 (2024-10-09)

🚀 Features

  • apps/official-website: add vite-PWA (2765158)
  • apps/official-website: add Reports card component to editor (3b43ac7)
  • official-website: add lazy loading for page components (fe63d3d)
  • packages/hooks: advance on use-optimize-model hook (0c0b57e)
  • packages/hooks: rework optimizations hook integration + new way of creating optimize return object of use-load-model + added load-start event to event-system (2121bb5)

🩹 Fixes

  • apps/official-website: use actual optimizations in editor file-menu (d56034b)
  • apps/official-website: remove link canonical tag from index.html (7c0bb3b)
  • packages/hooks: export use-export-model from hooks package (f00e75f)

❤️ Thank You

  • Moritz Becker

0.4.0 (2024-10-07)

🚀 Features

  • apps/official-website: add environment controls to file-menu (f93f461)
  • apps/official-website: add basic env controls inside editor file menu (8c64913)
  • packages/viewer: add environment controls to VectrealViewer (218abdd)
  • shared: add tooltip component (fede1b2)

🩹 Fixes

  • official-website: font-family (2a6fca7)
  • packages/hooks: dependency externalization (6364c5d)
  • packages/viewer: center default loading spinner (6155c54)
  • shared: menubar disabled styling (8f564a5)

📖 Documentation

  • packages/viewer: add docstring to VectrealViewer component (bf37cf2)

❤️ Thank You

  • Moritz Becker

0.3.2 (2024-10-04)

🩹 Fixes

  • packages: dependency management on build (e25cade)

❤️ Thank You

  • Moritz Becker

0.3.1 (2024-09-22)

🩹 Fixes

  • project: remove unused deps and fix nx project with nx reset (c937184)

❤️ Thank You

  • Moritz Becker

0.3.0 (2024-09-22)

🚀 Features

  • packages/hooks: add use-export-model (60964b9)

🩹 Fixes

  • packages/hooks: use saveAs instead of custom utils function for saving file (30d78c1)

📖 Documentation

  • packages/hooks: add docstrings to new functoins (7ff1649)
  • packages/hooks: add docstrings to functions (06dd1b3)
  • packages/hooks: update readme (7449fc4)
  • packages/hooks: finalize docs for vctrl/hooks (8f9d6ca)
  • packages/viewer: update first example for viewer usage (eac73ed)

❤️ Thank You

  • Moritz Becker

0.2.2 (2024-09-13)

This was a version bump only, there were no code changes.

0.2.1 (2024-09-13)

🩹 Fixes

  • apps/official-website: change viewer import to use named syntax (6fd958a)
  • packages/viewer: add directory option to file input (a97d2c9)
  • packages/viewer: extension change of ìndex file (06b030b)
  • packages/viewer: memoize certain scene options (0051955)
  • project: extend paths in tsconfig.json (0a19d37)

📖 Documentation

  • packages/viewer: add WIP info to the top (3d1d729)
  • project: add mention of use-optimize-model hook (4212893)

❤️ Thank You

  • Moritz Becker

0.2.0 (2024-09-11)

🚀 Features

  • apps/official-website: add editor context provider (f42659a)
  • packages/hooks: add optimizer hook (78b9cd5)
  • project: Move shadcn components into shared library project and modify tsconfig paths (1f15bef)

🩹 Fixes

  • packages: rework build/publish executors (bfad14f)
  • packages/hooks: add meshopt decoder to gltf loader (87e2198)
  • packages/viewer: optimize initial props + rendering (42bbd6e)
  • project: remove playwright for apps/official-website (c2d7035)

📖 Documentation

  • packages/hooks: small changes (6dae863)
  • packages/hooks: add hooks/use-optimize-model to documentation (d5404cf)

❤️ Thank You

  • Moritz Becker

0.1.0 (2024-09-09)

🚀 Features

  • apps/official-website: add logo to nav-bar (aef2e1a)
  • apps/official-website: add seo meta information (14c93e5)

🩹 Fixes

  • packages: nx release executor configuration (9539735)
  • packages: publish docs along side build output (470496c)
  • packages/viewer: release executor package path (b55d888)

❤️ Thank You

  • Moritz Becker

0.0.9-4 (2024-09-08)

🩹 Fixes

  • packages/viewer: release executor package path (074af1b)

❤️ Thank You

  • Moritz Becker

0.0.9-3 (2024-09-08)

🚀 Features

  • apps/official-website: add logo to nav-bar (aef2e1a)
  • apps/official-website: add seo meta information (14c93e5)

🩹 Fixes

  • packages: nx release executor configuration (a6ae69c)

❤️ Thank You

  • Moritz Becker

0.0.9-2 (2024-08-29)

🩹 Fixes

  • packages: re-active build executor generating package.json files (4f34274)

❤️ Thank You

  • Moritz Becker

0.0.9-1 (2024-08-29)

🩹 Fixes

  • packages: prevent nx vite executor from changing package.json file (09fc53e)

❤️ Thank You

  • Moritz Becker

0.0.9 (2024-08-29)

🩹 Fixes

  • packages/hooks: remove files field from package.json (028a371)

❤️ Thank You

  • Moritz Becker

0.0.8 (2024-08-29)

This was a version bump only, there were no code changes.

0.0.7-9 (2024-08-29)

This was a version bump only, there were no code changes.

0.0.7-8 (2024-08-29)

🩹 Fixes

  • ci/cd: build command in version release gh workflow (ee9e3ea)
  • packages: Error verifying sigstore provenance bundleso add repository.url to packages package.json (681e94e)
  • packages: remove git type from repository fields in package.json files (629c1c8)
  • packages: change package.json files repository url type (db99ba5)
  • packages: also add repository.url to root + move .npmrc to root (3598f23)
  • project: nx version migration (837419d)

📖 Documentation

  • packages: update package descriptions and co. (b62cf76)
  • packages/viewer: add link to github in contributing section (98499e7)
  • project: clean up readme files (eadf146)

❤️ Thank You

  • Moritz Becker

0.0.7-7 (2024-08-29)

🩹 Fixes

  • packages: also add repository.url to root + move .npmrc to root (4410952)

❤️ Thank You

  • Moritz Becker

0.0.7-5 (2024-08-28)

🩹 Fixes

  • packages: change package.json files repository url type (f0aaece)

❤️ Thank You

  • Moritz Becker

0.0.7-4 (2024-08-28)

🩹 Fixes

  • packages: remove git type from repository fields in package.json files (f552727)

❤️ Thank You

  • Moritz Becker

0.0.7-3 (2024-08-28)

🩹 Fixes

  • packages: Error verifying sigstore provenance bundleso add repository.url to packages package.json (5c91ad6)

❤️ Thank You

  • Moritz Becker

0.0.7-2 (2024-08-28)

📖 Documentation

  • packages: update package descriptions and co. (1244950)

❤️ Thank You

  • Moritz Becker

0.0.7 (2024-08-28)

🩹 Fixes

  • ci/cd: build command in version release gh workflow (6a02c51)

📖 Documentation

  • packages/viewer: add link to github in contributing section (11e6dd8)
  • project: clean up readme files (fa9bab4)

❤️ Thank You

  • Moritz Becker

0.0.6 (2024-08-28)

📖 Documentation

  • packages/viewer: add link to github in contributing section (ae4c19c)

❤️ Thank You

  • Moritz Becker

0.0.3-3 (2024-08-28)

🩹 Fixes

  • project: versioning action (970f6f9)
  • project: npm/git release mechanism (f373e1f)

📖 Documentation

  • packages: add vctrl/hooks and vctrl/viewer documentation readme (ccb2ddd)
  • packages: add status badge to packages readme files (c64afab)
  • project: add status badges to docs (1f6ad74)
  • project: clean up readme files (a0a2f11)

❤️ Thank You

  • Moritz Becker

0.0.3-2 (2024-08-27)

🩹 Fixes

  • official-website/Dockerfile: use npm install instead of npm ci (fd3a78f)
  • package-lock.json: replace old lock file (11d5344)

❤️ Thank You

  • Moritz Becker

0.0.3-0 (2024-08-27)

🩹 Fixes

  • official-website/Dockerfile: use npm install instead of npm ci (fd3a78f)

❤️ Thank You

  • Moritz Becker

0.0.2 (2024-08-27)

This was a version bump only, there were no code changes.

0.0.2-4 (2024-08-27)

🩹 Fixes

  • package-lock.json: replace old lock file (11d5344)

❤️ Thank You

  • Moritz Becker

v0.0.2-2 (2024-08-27)

This was a version bump only, there were no code changes.

0.0.2-1 (2024-08-27)

This was a version bump only, there were no code changes.

0.0.2-0 (2024-08-27)

This was a version bump only, there were no code changes.