From 4ada74b524744c8105b998261f08fdf9c7694750 Mon Sep 17 00:00:00 2001 From: Ben Greenier Date: Wed, 23 Nov 2022 13:13:29 -0800 Subject: [PATCH] feat(pkg-support): Add `pkg` entry to package.json This allows [pkg](https://github.com/vercel/pkg) to include the static assets in the [snapshot filesystem](https://github.com/vercel/pkg/tree/main#snapshot-filesystem). --- package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package.json b/package.json index c60b591..85155bd 100644 --- a/package.json +++ b/package.json @@ -72,6 +72,9 @@ "tsd": { "directory": "types" }, + "pkg": { + "assets": ["static/**/*"] + }, "publishConfig": { "access": "public" },