From a3bd0451c56ab0ea0f67e69fa91eeaba49e0400a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20de=20Juvigny?= <8087692+remidej@users.noreply.github.com> Date: Tue, 12 Dec 2023 12:08:25 +0100 Subject: [PATCH] doc(pack-up): fix config file name in readme (#19037) --- packages/utils/pack-up/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/utils/pack-up/README.md b/packages/utils/pack-up/README.md index 4c94c6c7fc..00d07ca654 100644 --- a/packages/utils/pack-up/README.md +++ b/packages/utils/pack-up/README.md @@ -67,7 +67,7 @@ Creates a new package at the given path, by default uses the inbuilt template se ### `build` -Builds your current package based on the configuration in your `package.json` and `package.config.ts` (if applicable). +Builds your current package based on the configuration in your `package.json` and `packup.config.ts` (if applicable). - `--minify` – minifies the output (default `false`). - `--sourcemap` – generates sourcemaps for the output (default `true`). @@ -82,10 +82,10 @@ Watches your current package for changes and rebuilds when necessary. ## Configuration -`@strapi/pack-up` by default reads its configuration from your `package.json`. But sometimes you need more flexibility, to do this you can create a `package.config.ts` file in the root of your package. +`@strapi/pack-up` by default reads its configuration from your `package.json`. But sometimes you need more flexibility, to do this you can create a `packup.config.ts` file in the root of your package. ```ts -// package.config.ts +// packup.config.ts import { defineConfig } from '@strapi/pack-up'; export default defineConfig({