From c9c104bad1cd6e5ad30aaa30156c42a822e1b371 Mon Sep 17 00:00:00 2001 From: Iwo Plaza Date: Fri, 20 Feb 2026 16:14:39 +0100 Subject: [PATCH] chore: Hide "Concurrent Chart" example, as it uses unpublished package --- .../src/examples/algorithms/concurrent-chart/calculator.ts | 3 +-- .../src/examples/algorithms/concurrent-chart/meta.json | 3 ++- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/typegpu-docs/src/examples/algorithms/concurrent-chart/calculator.ts b/apps/typegpu-docs/src/examples/algorithms/concurrent-chart/calculator.ts index b2f1465f3c..755ec30a0c 100644 --- a/apps/typegpu-docs/src/examples/algorithms/concurrent-chart/calculator.ts +++ b/apps/typegpu-docs/src/examples/algorithms/concurrent-chart/calculator.ts @@ -1,7 +1,6 @@ import { initCache, prefixScan } from '@typegpu/concurrent-scan'; -import * as d from 'typegpu/data'; import type { TgpuRoot } from 'typegpu'; -import * as std from 'typegpu/std'; +import { d, std } from 'typegpu'; type SumResult = { success: boolean; diff --git a/apps/typegpu-docs/src/examples/algorithms/concurrent-chart/meta.json b/apps/typegpu-docs/src/examples/algorithms/concurrent-chart/meta.json index 4ed5e5c2af..3c04b50965 100644 --- a/apps/typegpu-docs/src/examples/algorithms/concurrent-chart/meta.json +++ b/apps/typegpu-docs/src/examples/algorithms/concurrent-chart/meta.json @@ -1,5 +1,6 @@ { "title": "Concurrent Chart", "category": "algorithms", - "tags": ["compute", "concurrent", "timestamp query"] + "tags": ["compute", "concurrent", "timestamp query"], + "dev": true }