@taiger-common/model 1.0.16 → 1.0.18

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taiger-common/model",
3
- "version": "1.0.16",
3
+ "version": "1.0.18",
4
4
  "description": "TaiGer core package",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -53,6 +53,7 @@
53
53
  "devDependencies": {
54
54
  "@commitlint/cli": "^13.1.0",
55
55
  "@commitlint/config-conventional": "^13.1.0",
56
+ "@taiger-common/core": "^1.0.9",
56
57
  "@types/jest": "^27.5.2",
57
58
  "@types/validator": "^13.12.2",
58
59
  "@typescript-eslint/eslint-plugin": "^4.33.0",
@@ -62,20 +63,18 @@
62
63
  "eslint-plugin-prettier": "^4.0.0",
63
64
  "husky": "^7.0.2",
64
65
  "jest": "^27.2.0",
66
+ "mongoose": "^8.9.5",
65
67
  "pinst": "^2.1.6",
66
68
  "prettier": "^2.4.0",
67
69
  "standard-version": "^9.5.0",
68
70
  "ts-jest": "^27.0.5",
69
71
  "ts-loader": "^9.2.5",
70
72
  "typescript": "^4.9.5",
73
+ "validator": "^13.12.0",
71
74
  "webpack": "^5.52.1",
72
75
  "webpack-cli": "^4.8.0"
73
76
  },
74
77
  "peerDependencies": {
75
78
  "mongoose": "^8.9.5"
76
- },
77
- "dependencies": {
78
- "@taiger-common/core": "^1.0.9",
79
- "validator": "^13.12.0"
80
79
  }
81
80
  }
@@ -1,8 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.helloWorldSring = exports.helloWorldFunc = void 0;
4
- function helloWorldFunc() {
5
- return "Hello, world function!";
6
- }
7
- exports.helloWorldFunc = helloWorldFunc;
8
- exports.helloWorldSring = "Hello, world String!";
@@ -1,4 +0,0 @@
1
- export function helloWorldFunc() {
2
- return "Hello, world function!";
3
- }
4
- export var helloWorldSring = "Hello, world String!";
@@ -1,2 +0,0 @@
1
- export declare function helloWorldFunc(): string;
2
- export declare const helloWorldSring: string;