chore(release): 1.0.1

This commit is contained in:
Nikita Dezzpil Orlov 2021-09-29 18:17:51 +03:00
parent 34537a2437
commit fcee20ef00
3 changed files with 2809 additions and 8 deletions

5
CHANGELOG.md Normal file
View File

@ -0,0 +1,5 @@
# Changelog
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
### 1.0.1 (2021-09-29)

2800
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,19 +1,20 @@
{
"name": "ivna-orm",
"version": "1.0.0",
"version": "1.0.1",
"description": "Mini ORM for convenience",
"main": "src/index.ts",
"files": [
"dist/**/*"
"dist/app/**/*"
],
"scripts": {
"test": "node --no-warnings node_modules/.bin/jest --runInBand --forceExit",
"prepare": "npm test && npm run build",
"build": "tsc -b -v"
"build": "rimraf dist && tsc -b -v",
"release": "standard-version -i HISTORY.md"
},
"repository": {
"type": "git",
"url": "https://git.archive.systems/ivanovna/ivanovna.orm.git"
"url": "https://git.archive.systems/Dezzpil/ivanovna.orm.git"
},
"keywords": [
"ivanovna",
@ -21,7 +22,7 @@
"orm"
],
"author": "Nikita Orlov",
"license": "Apache-2.0",
"license": "ISC",
"devDependencies": {
"@jest/test-sequencer": "^27.2.3",
"@types/chai": "^4.2.22",
@ -35,6 +36,7 @@
"nanoid": "^3.1.28",
"prettier": "^2.4.1",
"rfdc": "^1.3.0",
"standard-version": "^9.3.1",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"