feat(app): add standard-version #5

This commit is contained in:
Sergey Krylov 2024-03-26 07:15:52 +03:00
parent 9f8eaf424e
commit fe57ae4a5e
56 changed files with 757 additions and 23 deletions

8
.versionrc Normal file
View File

@ -0,0 +1,8 @@
{
"header": "# MoneyControll App CHANGELOG",
"releaseCommitMessageFormat": "build: v{{currentTag}}",
"types": [
{"type": "feat", "section": "🚀 New Features"},
{"type": "fix", "section": "\uD83D\uDEE0\uFE0F Bug Fixes"}
]
}

View File

@ -8,3 +8,4 @@
- `analyze:prod` - start analyze server on [`http://127.0.0.1:8888`](http://127.0.0.1:8888) - `analyze:prod` - start analyze server on [`http://127.0.0.1:8888`](http://127.0.0.1:8888)
- `lint` - linting files via ESLint - `lint` - linting files via ESLint
- `test` - run test via Jest - `test` - run test via Jest
- `release` - update project version, creating CHANGELOG file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
offline_node_modules/cliui-7.0.4.tgz generated Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
offline_node_modules/dargs-7.0.0.tgz generated Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
offline_node_modules/figures-3.2.0.tgz generated Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
offline_node_modules/handlebars-4.7.8.tgz generated Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
offline_node_modules/ini-1.3.8.tgz generated Normal file

Binary file not shown.

BIN
offline_node_modules/map-obj-4.3.0.tgz generated Normal file

Binary file not shown.

BIN
offline_node_modules/meow-8.1.2.tgz generated Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
offline_node_modules/quick-lru-4.0.1.tgz generated Normal file

Binary file not shown.

BIN
offline_node_modules/semver-5.7.2.tgz generated Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
offline_node_modules/split2-3.2.2.tgz generated Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
offline_node_modules/through2-4.0.2.tgz generated Normal file

Binary file not shown.

Binary file not shown.

BIN
offline_node_modules/type-fest-0.18.1.tgz generated Normal file

Binary file not shown.

BIN
offline_node_modules/uglify-js-3.17.4.tgz generated Normal file

Binary file not shown.

BIN
offline_node_modules/yargs-16.2.0.tgz generated Normal file

Binary file not shown.

Binary file not shown.

View File

@ -8,7 +8,8 @@
"build:prod": "ksv741-react-scripts build --env mode=production", "build:prod": "ksv741-react-scripts build --env mode=production",
"analyze:prod": "ksv741-react-scripts build --env mode=production analyze=true", "analyze:prod": "ksv741-react-scripts build --env mode=production analyze=true",
"lint": "eslint src", "lint": "eslint src",
"test": "jest" "test": "jest",
"release": "standard-version"
}, },
"engines": { "engines": {
"node": "=20.11.1" "node": "=20.11.1"
@ -51,7 +52,8 @@
"jest": "^29.7.0", "jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0", "jest-environment-jsdom": "^29.7.0",
"ksv741-react-scripts": "^0.1.0", "ksv741-react-scripts": "^0.1.0",
"lint-staged": "^15.2.2" "lint-staged": "^15.2.2",
"standard-version": "^9.5.0"
}, },
"packageManager": "yarn@1.22.19" "packageManager": "yarn@1.22.19"
} }

765
yarn.lock

File diff suppressed because it is too large Load Diff