This project supports multiple package managers. Choose the one you prefer and run the corresponding commands below to install dependencies, build the project, and package it. Finally, move the generated package into the pc4399register directory.
npm install
npm run build
npm packpnpm install
pnpm run build
pnpm packyarn install
yarn build
yarn packAfter running the above commands, locate the generated package file (e.g., pc4399-<version>.tgz) and move it into the pc4399register directory:
mv *.tgz pc4399register/| Package Manager | Install Command | Build Command | Pack Command |
|---|---|---|---|
| npm | npm install |
npm run build |
npm pack |
| pnpm | pnpm install |
pnpm run build |
pnpm pack |
| Yarn | yarn install |
yarn build |
yarn pack |
- Ensure that you only use one package manager per project to avoid conflicts.
- The build process may vary depending on your
package.json,tsconfig.json, or your bundler configuration.