-
-
Notifications
You must be signed in to change notification settings - Fork 15.8k
Description
1} Private repository: The private field is set to true, which means the package is not intended to be published to the npm registry. However, the repository URL is publicly accessible on GitHub, which may not be intended.
-
Outdated dependencies: The versions of prettier and turbo are specified, but they may not be the latest versions. It's recommended to use the caret symbol (^) to allow for minor version updates.
-
Node and pnpm versions: The engines field specifies the versions of Node.js and pnpm, but it's not clear why these specific versions are required. It's recommended to specify a range of versions to ensure compatibility.
-
Scripts: Some scripts, such as dev, dev:ui, and dev:website, use turbo dev with different filters. It's not clear why these separate scripts are needed, and it may be more efficient to use a single script with optional arguments.
-
Formatting: The format script uses prettier to format files, but it's not clear why the --write flag is used. It's recommended to use --write only when necessary, as it can lead to unintended changes.