No description
  • TypeScript 100%
Find a file
2026-06-03 11:11:15 +02:00
scripts chore: updated from ts-lib@0.13.1 template 2026-06-01 15:10:16 +02:00
src chore: updated from ts-lib@0.13.0 template 2026-06-01 13:25:01 +02:00
tests chore: updated from ts-lib@0.13.0 template 2026-06-01 13:25:01 +02:00
.gitignore added files from ts-lib@0.8.2 tempalte 2026-05-24 12:31:45 +02:00
CHANGELOG.md added files from ts-lib@0.8.2 tempalte 2026-05-24 12:31:45 +02:00
LICENSE updated metadata in package.json 2026-05-24 12:47:25 +02:00
package.json chore: updated from ts-lib@0.13.1 template 2026-06-01 15:10:16 +02:00
README.md chore: updated from ts-lib@0.11.1 template 2026-05-30 13:53:49 +02:00
tsconfig.build.json added files from ts-lib@0.8.2 tempalte 2026-05-24 12:31:45 +02:00
tsconfig.json chore: updated from ts-lib@0.11.1 template 2026-05-30 13:53:49 +02:00

Introduction

<INTRO TEXT>

Table of Contents

  1. Quick Start
  2. Documentation
  3. DevOps
    1. Change Management
    2. Publish

Quick Start

<QUICK START INSTRUCTIONS>

Documentation

<DOCUMENTATION>

DevOps

npm install
npm update

npm run clean
npm run build
npm run tests

npm run dev

Change Management

  1. Create a new branch for the change.
  2. Make the changes and commit.
  3. Bump the version in package.json.
  4. Add an entry for the new version in CHANGELOG.md.
  5. Pull-request the branch.
  6. Ensure package artifacts are current.
  7. Publish.

Publish

~/.npmrc or .npmrc:

@vode-app:registry=https://git.chimps.quest/api/packages/vode-app/npm/
//git.chimps.quest/api/packages/vode-app/npm/:_authToken=${VODE_APP_REGISTRY_AUTH_TOKEN}

~/.bunfig.toml or bunfig.toml:

[install.scopes]
"vode-app" = { url = "https://git.chimps.quest/api/packages/vode-app/npm/", token = "$VODE_APP_REGISTRY_AUTH_TOKEN" }
# git.chimps.quest/api/packages/vode-app/npm/
export VODE_APP_REGISTRY_AUTH_TOKEN=<AUTH_TOKEN>
# or
$env:VODE_APP_REGISTRY_AUTH_TOKEN = "<AUTH_TOKEN>"
npm publish