@jrosadob/ms-sophia-framework-mysql 0.0.2 → 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/package.json +16 -16
  2. package/publish.sh +2 -2
package/package.json CHANGED
@@ -1,10 +1,24 @@
1
1
  {
2
2
  "name": "@jrosadob/ms-sophia-framework-mysql",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
7
7
  "license": "UNLICENSED",
8
+ "scripts": {
9
+ "build": "nest build",
10
+ "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\" \"libs/**/*.ts\"",
11
+ "start": "nest start",
12
+ "start:dev": "nest start --watch",
13
+ "start:debug": "nest start --debug --watch",
14
+ "start:prod": "node dist/main",
15
+ "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
16
+ "test": "jest",
17
+ "test:watch": "jest --watch",
18
+ "test:cov": "jest --coverage",
19
+ "test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
20
+ "test:e2e": "jest --config ./test/jest-e2e.json"
21
+ },
8
22
  "dependencies": {
9
23
  "@nestjs/common": "^11.0.1",
10
24
  "@nestjs/config": "^4.0.4",
@@ -75,19 +89,5 @@
75
89
  "moduleNameMapper": {
76
90
  "^@sophia/ms-sophia-framework-mysql(|/.*)$": "<rootDir>/libs/ms-sophia-framework-mysql/src/$1"
77
91
  }
78
- },
79
- "scripts": {
80
- "build": "nest build",
81
- "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\" \"libs/**/*.ts\"",
82
- "start": "nest start",
83
- "start:dev": "nest start --watch",
84
- "start:debug": "nest start --debug --watch",
85
- "start:prod": "node dist/main",
86
- "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
87
- "test": "jest",
88
- "test:watch": "jest --watch",
89
- "test:cov": "jest --coverage",
90
- "test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
91
- "test:e2e": "jest --config ./test/jest-e2e.json"
92
92
  }
93
- }
93
+ }
package/publish.sh CHANGED
@@ -13,6 +13,6 @@
13
13
  # pnpm login
14
14
 
15
15
  # Version pnpm
16
- pnpm run build
17
- pnpm publish --no-git-checks
16
+ npm run build
17
+ npm publish --no-git-checks
18
18
  cd ..