From f33627547681fa617c756dba0025833118bc32b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Kuna?= <1282324+codecalm@users.noreply.github.com> Date: Mon, 17 Mar 2025 22:17:01 +0100 Subject: [PATCH] Add initial package.json for docs with build script (#2221) --- docs/package.json | 8 ++++++++ pnpm-workspace.yaml | 1 + 2 files changed, 9 insertions(+) create mode 100644 docs/package.json diff --git a/docs/package.json b/docs/package.json new file mode 100644 index 000000000..c17b196b1 --- /dev/null +++ b/docs/package.json @@ -0,0 +1,8 @@ +{ + "private": true, + "name": "docs", + "version": "1.0.0", + "scripts": { + "build": "mkdir -p dist && echo '' > dist/index.html" + } +} \ No newline at end of file diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index c5b0444b3..7e8bc4eec 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -1,4 +1,5 @@ packages: - core - preview + - docs - 'shared/*' \ No newline at end of file