@temir.ra/create-template
v0.3.0
Published
A template for a template package.
Maintainers
Readme
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 installDocumentation
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 instructionsChange 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