messing with package version

This commit is contained in:
Tykayn 2021-05-17 11:13:11 +02:00 committed by tykayn
parent 3838894614
commit 08ab0482dd
1 changed files with 124 additions and 121 deletions

View File

@ -1,6 +1,6 @@
{
"name": "framadate-funky-frontend",
"version": "1.1.0",
"version": "0.5.0",
"license": "AGPL-3.0-or-later",
"scripts": {
"ng": "ng",
@ -14,6 +14,9 @@
"test:ci": "jest --ci",
"lint": "prettier --write \"src/**/*.{js,jsx,ts,tsx,md,html,css,scss}\"",
"e2e": "ng e2e",
"release:major": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major && git push origin && git push origin --tags",
"release:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor && git push origin && git push origin --tags",
"release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch && git push origin && git push origin --tags",
"format:check": "prettier --list-different \"src/{app,environments,assets}/**/*{.ts,.js,.json,.css,.scss}\"",
"format:all": "prettier --write \"src/**/*.{js,jsx,ts,tsx,md,html,css,scss}\"",
"trans": "ng xi18n --output-path=src/locale --i18n-locale=fr",