From dd08f117be478014f316d6c9c0006d2828edc7cb Mon Sep 17 00:00:00 2001 From: andrewtdiz <59515127+andrewtdiz@users.noreply.github.com> Date: Tue, 12 Nov 2024 09:55:15 -0600 Subject: [PATCH] fix: add 404 warning --- docs/guides/typescript-packages.mdx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/guides/typescript-packages.mdx b/docs/guides/typescript-packages.mdx index cd8c950..dc2e948 100644 --- a/docs/guides/typescript-packages.mdx +++ b/docs/guides/typescript-packages.mdx @@ -29,7 +29,8 @@ In `package.json`, you can edit a few different fields to configure your package The simplest way to test your package is with `npm pack`. This command will generate a `.tgz` file which can then be used from another project via `npm install ../../path/to/package.tgz`. :::warning -When publishing a package for the first time, you might run into this issue: +When publishing a package for the first time, you might run into these issues: [npm publish errors with "npm error 402 Payment Required"](../faq/publish-as-public) +[npm publish errors with "npm error 404 Not Found"](../faq/publish-not-found) :::