@mhmdhammoud/meritt-utils 1.4.2 → 1.5.1
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.
|
@@ -39,5 +39,5 @@ jobs:
|
|
|
39
39
|
password: ${{ secrets.EMAIL_PASSWORD }}
|
|
40
40
|
subject: ${{ github.event.head_commit.message }} ${{ github.job }} job of ${{ github.repository }} has ${{ job.status }}
|
|
41
41
|
body: ${{ github.job }} job in worflow ${{ github.workflow }} of ${{ github.repository }} has ${{ job.status }}
|
|
42
|
-
to: mohammad.hammoud.lb@hotmail.com,steef12009@gmail.com
|
|
42
|
+
to: mohammad.hammoud.lb@hotmail.com,steef12009@gmail.com
|
|
43
43
|
from: Github Action
|
|
@@ -11,7 +11,7 @@ jobs:
|
|
|
11
11
|
with:
|
|
12
12
|
node-version: 16
|
|
13
13
|
- run: npm ci
|
|
14
|
-
- run: npm run types
|
|
14
|
+
- run: npm run test:types
|
|
15
15
|
notify:
|
|
16
16
|
needs: [type-check]
|
|
17
17
|
runs-on: ubuntu-latest
|
|
@@ -25,5 +25,5 @@ jobs:
|
|
|
25
25
|
password: ${{ secrets.EMAIL_PASSWORD }}
|
|
26
26
|
subject: ${{ github.event.head_commit.message }} ${{ github.job }} job of ${{ github.repository }} has ${{ job.status }}
|
|
27
27
|
body: ${{ github.job }} job in worflow ${{ github.workflow }} of ${{ github.repository }} has ${{ job.status }}
|
|
28
|
-
to: mohammad.hammoud.lb@hotmail.com,steef12009@gmail.com
|
|
28
|
+
to: mohammad.hammoud.lb@hotmail.com,steef12009@gmail.com
|
|
29
29
|
from: Github Action
|
package/.husky/pre-commit
CHANGED
package/dist/lib/logger.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mhmdhammoud/meritt-utils",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"private": false,
|
|
@@ -13,11 +13,11 @@
|
|
|
13
13
|
"access": "public"
|
|
14
14
|
},
|
|
15
15
|
"scripts": {
|
|
16
|
-
"dev
|
|
16
|
+
"start:dev": "ts-node-dev --respawn --transpile-only src/index.ts | pino-pretty",
|
|
17
17
|
"dev": "nodemon ./dist/index.js",
|
|
18
18
|
"watch": "tsc --watch",
|
|
19
19
|
"build": "tsc",
|
|
20
|
-
"types": "tsc --noemit",
|
|
20
|
+
"test:types": "tsc --noemit",
|
|
21
21
|
"prepare": "husky install",
|
|
22
22
|
"lint": "eslint src --fix",
|
|
23
23
|
"prepublish": "npm run build",
|