@thangnv-dev/mikroorm-nest 0.0.1 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +51 -0
  2. package/package.json +5 -6
package/README.md ADDED
@@ -0,0 +1,51 @@
1
+ # @thangnv-dev/mikroorm-nest
2
+
3
+ Reusable library package in this monorepo.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ npm install @thangnv-dev/mikroorm-nest
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```ts
14
+ import * as api from '@thangnv-dev/mikroorm-nest'
15
+ ```
16
+
17
+ ## Public API
18
+
19
+ This package exports the following API surface from `src/index.ts`:
20
+
21
+ ```ts
22
+ export { MikroormNestModule } from './mikroorm-nest.module.js'
23
+ export type {
24
+ MikroormMigrationClass,
25
+ MikroormNestFeatureOptions,
26
+ MikroormNestRootAsyncOptions,
27
+ MikroormNestRootOptions,
28
+ } from './module-types.js'
29
+ export {
30
+ MikroOrmBinaryType,
31
+ MikroOrmBooleanType,
32
+ MikroOrmDurationType,
33
+ MikroOrmFloatType,
34
+ MikroOrmInstantType,
35
+ MikroOrmInt32Type,
36
+ MikroOrmInt64Type,
37
+ MikroOrmPlainDateType,
38
+ MikroOrmPlainDateTimeType,
39
+ MikroOrmPlainTimeType,
40
+ MikroOrmStringType,
41
+ MikroOrmZonedDateTimeType,
42
+ } from './types.js'
43
+
44
+ ```
45
+
46
+ ## Development
47
+
48
+ ```bash
49
+ yarn workspace @thangnv-dev/mikroorm-nest build
50
+ yarn workspace @thangnv-dev/mikroorm-nest test
51
+ ```
package/package.json CHANGED
@@ -1,7 +1,6 @@
1
1
  {
2
2
  "name": "@thangnv-dev/mikroorm-nest",
3
- "version": "0.0.1",
4
- "private": false,
3
+ "version": "0.0.3",
5
4
  "publishConfig": {
6
5
  "access": "public"
7
6
  },
@@ -34,12 +33,12 @@
34
33
  "@mikro-orm/postgresql": "^6.6.7",
35
34
  "@nestjs/common": "^11.1.14",
36
35
  "@testcontainers/postgresql": "^11.12.0",
37
- "@thangnv-dev/data-common": "workspace:^"
36
+ "@thangnv-dev/data-common": "^0.0.3"
38
37
  },
39
38
  "devDependencies": {
40
- "@typescript-eslint/eslint-plugin": "^8.56.0",
41
- "@typescript-eslint/parser": "^8.56.0",
42
- "eslint": "^10.0.0",
39
+ "@typescript-eslint/eslint-plugin": "^8.56.1",
40
+ "@typescript-eslint/parser": "^8.56.1",
41
+ "eslint": "^10.0.2",
43
42
  "temporal-polyfill": "^0.3.0",
44
43
  "typescript": "^5.9.3",
45
44
  "vitest": "^4.0.18"