Compare commits
No commits in common. "v1.0.2" and "v1.0.1" have entirely different histories.
10
HISTORY.md
10
HISTORY.md
@ -1,10 +0,0 @@
|
||||
# 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.2](https://git.archive.systems/Dezzpil/ivanovna.orm/compare/v1.0.1...v1.0.2) (2021-09-29)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* Добавил главный файл с экспортами, поправил пэкадж и названия файла хранилища монги ([f998ee6](https://git.archive.systems/Dezzpil/ivanovna.orm/commit/f998ee630bdb5277f06743b0fb332dab9c6ec638))
|
@ -1,6 +0,0 @@
|
||||
# Ivanovna ORM
|
||||
|
||||
Простая ОРМ для простейших задач.
|
||||
|
||||
Позволяет задать модели для таблиц или коллекций и предоставляет менеджер сущностей для манипуляций с ними.
|
||||
|
4
package-lock.json
generated
4
package-lock.json
generated
@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "ivna-orm",
|
||||
"version": "1.0.2",
|
||||
"version": "1.0.1",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "ivna-orm",
|
||||
"version": "1.0.2",
|
||||
"version": "1.0.1",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"mongodb": "^4.1.2",
|
||||
|
@ -1,11 +1,9 @@
|
||||
{
|
||||
"name": "ivna-orm",
|
||||
"version": "1.0.2",
|
||||
"version": "1.0.1",
|
||||
"description": "Mini ORM for convenience",
|
||||
"main": "src/index.ts",
|
||||
"files": [
|
||||
"dist/index.js",
|
||||
"dist/index.d.ts",
|
||||
"dist/app/**/*"
|
||||
],
|
||||
"scripts": {
|
||||
@ -43,7 +41,7 @@
|
||||
"ts-node": "^10.2.1",
|
||||
"typescript": "^4.4.3"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"dependencies": {
|
||||
"mongodb": "^4.1.2",
|
||||
"mongodb-client-encryption": "^1.2.7"
|
||||
},
|
||||
|
@ -1,8 +0,0 @@
|
||||
import { EntityConstructor, ErrEntityHasNoUniqKeyValue } from './app/entity'
|
||||
import { ErrEntityNotFound, ErrFoundNotUniqEntity } from './app/repo'
|
||||
import { ErrNoSession, ErrStorage, StorageCursor, StorageSession } from './app/storage'
|
||||
|
||||
export { Data } from './app/data'
|
||||
export { Entity, EntityConstructor, ErrEntityHasNoUniqKeyValue } from './app/entity'
|
||||
export { Repo, ErrFoundNotUniqEntity, ErrEntityNotFound } from './app/repo'
|
||||
export { Storage, StorageCursor, ErrStorage, ErrNoSession, StorageSession } from './app/storage'
|
Loading…
Reference in New Issue
Block a user