@aleleba/create-node-ts-graphql-server 1.5.10 → 1.5.12

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
- test:
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: test
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: test
49
+ needs: integration-back-end-testing
50
50
  runs-on: ubuntu-latest
51
51
  steps:
52
52
  - uses: actions/checkout@v3
package/README.md CHANGED
@@ -5,7 +5,7 @@ This project aims to have a starter kit for creating a new Node with typescript,
5
5
  Tech(Library or Framework) | Version |
6
6
  --- | --- |
7
7
  Jest (Testing) | 29.7.0
8
- Typescript | 5.2.2
8
+ Typescript | 5.3.2
9
9
  GraphQL | 16.8.1
10
10
  Type GraphQL | 2.0.0-beta.3
11
11
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aleleba/create-node-ts-graphql-server",
3
- "version": "1.5.10",
3
+ "version": "1.5.12",
4
4
  "description": "Node with Typescript and GraphQL Server",
5
5
  "bin": "./bin/cli.js",
6
6
  "main": "index.js",
@@ -33,7 +33,7 @@
33
33
  },
34
34
  "homepage": "https://github.com/aleleba/node-ts-graphql-server#readme",
35
35
  "dependencies": {
36
- "@graphql-tools/schema": "^10.0.0",
36
+ "@graphql-tools/schema": "^10.0.2",
37
37
  "body-parser": "^1.20.2",
38
38
  "class-validator": "^0.14.0",
39
39
  "cookie-parse": "^0.4.0",
@@ -59,28 +59,28 @@
59
59
  "@babel/register": "^7.22.15",
60
60
  "@types/body-parser": "^1.19.5",
61
61
  "@types/cookie-parser": "^1.4.6",
62
- "@types/cors": "^2.8.16",
62
+ "@types/cors": "^2.8.17",
63
63
  "@types/express": "^4.17.21",
64
- "@types/jest": "^29.5.8",
65
- "@types/node": "^20.9.0",
64
+ "@types/jest": "^29.5.10",
65
+ "@types/node": "^20.9.4",
66
66
  "@types/supertest": "^2.0.16",
67
67
  "@types/webpack": "^5.28.5",
68
68
  "@types/webpack-node-externals": "^3.0.4",
69
- "@types/ws": "^8.5.9",
70
- "@typescript-eslint/eslint-plugin": "^6.10.0",
71
- "@typescript-eslint/parser": "^6.10.0",
69
+ "@types/ws": "^8.5.10",
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.53.0",
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.0",
83
- "typescript": "^5.2.2",
82
+ "ts-loader": "^9.5.1",
83
+ "typescript": "^5.3.2",
84
84
  "webpack": "^5.89.0",
85
85
  "webpack-cli": "^5.1.4",
86
86
  "webpack-manifest-plugin": "^5.0.0",