Add to package json

This commit is contained in:
Mayuran Visakan 2023-08-11 16:55:19 +01:00
parent 6498a27169
commit 74c5691a0d
2 changed files with 2 additions and 2 deletions

View file

@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
See this project's [releases](/../../../releases).
<!-- Create a new release using `git tag -a 1.x.x -m "1.x.x"` and `git push origin 1.x.x` with the correct version numbers -->
<!-- Create a new release using `npm version x.y.z`` (or increment `z` with `patch`, `y` with `minor` and `x` with `major`) `git tag -a 1.x.x -m "1.x.x"` and `git push origin 1.x.x` with the correct version numbers -->
<!-- Types of Changes -->
<!-- ### Added -->

View file

@ -8,7 +8,7 @@
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"update": "ncu -u && npm install",
"lint": "eslint --fix --max-warnings=0 src && stylelint --fix --max-warnings=0 src/styles.css src/css",
"version": "node version-bump.mjs && git add manifest.json versions.json"
"version": "node version-bump.mjs && git add manifest.json versions.json && echo $npm_package_version"
},
"keywords": [],
"author": "Mayuran Visakan",