No description
- TypeScript 84.4%
- JavaScript 15.6%
|
|
||
|---|---|---|
| scripts | ||
| src | ||
| template | ||
| tests | ||
| .gitignore | ||
| CHANGELOG.md | ||
| LICENSE | ||
| package.json | ||
| README.md | ||
| tsconfig.json | ||
Introduction
<INTRO TEXT>
Table of Contents
Quick Start
# placeholder:
# <NEW_PACKAGE: <NEW_PACKAGE>
# <TEMPLATE_PACKAGE_NAME: @temir.ra/create-template
# <TEMPLATE_NAME: @temir.ra/template
mkdir -p <NEW_PACKAGE>
cd <NEW_PACKAGE>
# print the latest version
bun info "@temir.ra/create-template" version
# create/update a package from the template in the current directory
bun create --no-install --no-git "@temir.ra/template@latest" .
# set metadata in package.json
bun install
Documentation
The following sections explain the configurations and conventions baked into the generated package. Useful when adapting it to fit specific needs.
<DOCUMENTATION>
DevOps
bun update
bun install
bun run clean
bun run build
bun run tests
bun run dist/cli.bundle.js -- example/
# see publish section for publish instructions
Change Management
- Create a new branch for the change.
- Make the changes and commit.
- Bump the version in
package.json. - Add an entry for the new version in
CHANGELOG.md. - Pull request the branch.
- Ensure package artifacts are current.
- Publish.
Publish
Publish to the public npm registry.
# authenticate
npm login
# publish
bun publish --registry https://registry.npmjs.org/ --access public