@aleleba/create-node-ts-graphql-server 1.5.10 → 1.5.11
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.
|
@@ -11,8 +11,8 @@ on:
|
|
|
11
11
|
|
|
12
12
|
# Define the jobs that will run in the workflow
|
|
13
13
|
jobs:
|
|
14
|
-
# Job to run tests
|
|
15
|
-
|
|
14
|
+
# Job to run back-end tests
|
|
15
|
+
integration-back-end-testing:
|
|
16
16
|
runs-on: ubuntu-latest
|
|
17
17
|
strategy:
|
|
18
18
|
matrix:
|
|
@@ -32,7 +32,7 @@ jobs:
|
|
|
32
32
|
# Job to build the package
|
|
33
33
|
test-build-package:
|
|
34
34
|
if: github.ref != 'refs/heads/master'
|
|
35
|
-
needs:
|
|
35
|
+
needs: integration-back-end-testing
|
|
36
36
|
runs-on: ubuntu-latest
|
|
37
37
|
steps:
|
|
38
38
|
- uses: actions/checkout@v3
|
|
@@ -46,7 +46,7 @@ jobs:
|
|
|
46
46
|
# Job to publish the package to npm
|
|
47
47
|
publish-npm:
|
|
48
48
|
if: github.ref == 'refs/heads/master'
|
|
49
|
-
needs:
|
|
49
|
+
needs: integration-back-end-testing
|
|
50
50
|
runs-on: ubuntu-latest
|
|
51
51
|
steps:
|
|
52
52
|
- uses: actions/checkout@v3
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aleleba/create-node-ts-graphql-server",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.11",
|
|
4
4
|
"description": "Node with Typescript and GraphQL Server",
|
|
5
5
|
"bin": "./bin/cli.js",
|
|
6
6
|
"main": "index.js",
|
|
@@ -62,24 +62,24 @@
|
|
|
62
62
|
"@types/cors": "^2.8.16",
|
|
63
63
|
"@types/express": "^4.17.21",
|
|
64
64
|
"@types/jest": "^29.5.8",
|
|
65
|
-
"@types/node": "^20.9.
|
|
65
|
+
"@types/node": "^20.9.2",
|
|
66
66
|
"@types/supertest": "^2.0.16",
|
|
67
67
|
"@types/webpack": "^5.28.5",
|
|
68
68
|
"@types/webpack-node-externals": "^3.0.4",
|
|
69
69
|
"@types/ws": "^8.5.9",
|
|
70
|
-
"@typescript-eslint/eslint-plugin": "^6.
|
|
71
|
-
"@typescript-eslint/parser": "^6.
|
|
70
|
+
"@typescript-eslint/eslint-plugin": "^6.12.0",
|
|
71
|
+
"@typescript-eslint/parser": "^6.12.0",
|
|
72
72
|
"babel-loader": "^9.1.3",
|
|
73
73
|
"clean-webpack-plugin": "^4.0.0",
|
|
74
74
|
"compression-webpack-plugin": "^10.0.0",
|
|
75
|
-
"eslint": "^8.
|
|
75
|
+
"eslint": "^8.54.0",
|
|
76
76
|
"eslint-webpack-plugin": "^4.0.1",
|
|
77
77
|
"jest": "^29.7.0",
|
|
78
78
|
"nodemon": "^3.0.1",
|
|
79
79
|
"resolve-ts-aliases": "^1.0.1",
|
|
80
80
|
"supertest": "^6.3.3",
|
|
81
81
|
"ts-jest": "^29.1.1",
|
|
82
|
-
"ts-loader": "^9.5.
|
|
82
|
+
"ts-loader": "^9.5.1",
|
|
83
83
|
"typescript": "^5.2.2",
|
|
84
84
|
"webpack": "^5.89.0",
|
|
85
85
|
"webpack-cli": "^5.1.4",
|