This repository contains two main scripts prepack.ts
and index.ts
This script is a prepack step that:
- Downloads the specified version of the ENT Stack repository.
- Removes unnecessary files (like the .git folder and LICENSE).
- Adds .env files with default values for backend and frontend applications.
- Sets +x permissions to scripts in the bin folder.
This script is a CLI tool for scaffolding a new ENT Stack project. It:
- Prompts the user for a project name and validates it.
- Extracts the source files from a prepackaged tarball.
- Creates a new project directory and copies scaffolded files into it.
- Customizes project files like package.json, .env, manifest.ts, and layout.tsx with project-specific values.
- Generates a basic README.md.
- Outputs the project path and setup instructions for the user.
1/ Run pnpm run set-version <version>
to set version of the ENT Stack to be used
- Make sure to check the correct version was set to src/ent-stack-version.txt and to README.md
2/ Bump package version in package.json
3/ Run pnpm run build
to build the package
4/ Run pnpm run create
to create new project
5/ Test the new project
- Navigate to the newly created project
- Run
pnpm fire
to setup the project - Manually test the project (automatic tests are not yet implemented)
6/ Git commit and push changes
7/ Run npm publish
to publish new version of the package