Skip to content

Releases: readymade-ui/primr

2.0.0

12 Oct 00:38
Compare
Choose a tag to compare

This version brings primr up to date with the latest Node versions and supports the latest Readymade Starter.

  • feat: support esm
  • feat: migrate to latest vite Readymade starter code
  • feat: open argument opens the default browser open connection to Readymade starter
  • chore: update dependencies

1.0.0

02 Feb 05:35
Compare
Choose a tag to compare

Example usage: npx primr my-app

The above command generates a new Readymade project in the my-app directory. The script automatically installs the Readymade starter code but could be modified with arguments to instantiate other projects as well.

Options

  • http use https instead of ssh for git clone (default = https://github.com/)
  • repo repo name (default = readymade-ui/starter)
  • script run script after install (default = yarn dev)
  • ssh use ssh instead of https for git clone (default = [email protected])
  • npm use npm instead of yarn (default is yarn)

Examples

Clone the default readymade-ui/starter repository into a directory called my-app over ssh from a custom git server, install dependencies and run scripts with npm

npx primr my-app --ssh [email protected] --npm

Clone another repository into a directory called foo-server, run the serve script post install.

npx primr foo-server --repo steveblue/bazel-typescript-starter --script serve