PR-008350: Updating packages.

This commit is contained in:
Alejandro Lembke Barrientos 2024-11-13 17:58:43 +00:00
parent bad6714ca6
commit da32ec9e07
Signed by: aleleba
GPG Key ID: F48D7CDEB47942BD
4 changed files with 340 additions and 313 deletions

View File

@ -26,7 +26,7 @@ jobs:
node-version: 16
cache: 'npm'
registry-url: https://registry.npmjs.org/
- run: npm ci --legacy-peer-deps
- run: npm ci
- run: npm test
# Job to build the package
@ -40,7 +40,7 @@ jobs:
with:
node-version: 16
registry-url: https://registry.npmjs.org/
- run: npm ci --legacy-peer-deps
- run: npm ci
- run: npm run build
# Job to publish the package to npm
@ -54,7 +54,7 @@ jobs:
with:
node-version: 16
registry-url: https://registry.npmjs.org/
- run: npm ci --legacy-peer-deps
- run: npm ci
- run: npm publish --access=public
env:
NPM_PERSONAL_TOKEN: ${{secrets.npm_token}}

View File

@ -67,7 +67,7 @@ if(!checkedOut) process.exit(-1);
const actualVersion = runCommandWithOutput(`cd ${repoName} && node -p "require('./package.json').version"`).toString().trim()
const installDepsCommand = `cd ${repoName} && npm install --legacy-peer-deps`;
const installDepsCommand = `cd ${repoName} && npm i`;
const cleanGitHistoryCommand = `cd ${repoName} && rm -rf .git && git init && git add --all -- ":!.github" ":!bin" && git commit -m "Initial commit"`
const cleanGitHistoryCommandWindows = `cd ${repoName} && rmdir .git /s /q && git init && git add --all -- ":!.github" ":!bin" && git commit -m "Initial commit"`
const deleteFoldersCommand = `cd ${repoName} && rm -rf .github && rm -rf bin`

621
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{
"name": "@aleleba/create-node-ts-graphql-server",
"version": "1.5.18",
"version": "1.5.19",
"description": "Node with Typescript and GraphQL Server",
"bin": "./bin/cli.js",
"main": "index.js",
@ -13,7 +13,7 @@
"lint:fix": "eslint ./ --ext .js --ext .ts --fix",
"test": "jest",
"test:watch": "jest --watch",
"check-updates": "npx npm-check-updates -u && npm i --legacy-peer-deps"
"check-updates": "npx npm-check-updates -u && npm i"
},
"repository": {
"type": "git",
@ -33,7 +33,7 @@
},
"homepage": "https://github.com/aleleba/node-ts-graphql-server#readme",
"dependencies": {
"@graphql-tools/schema": "^10.0.7",
"@graphql-tools/schema": "^10.0.8",
"body-parser": "^1.20.3",
"class-validator": "^0.14.1",
"cookie-parse": "^0.4.0",
@ -42,11 +42,11 @@
"dotenv": "^16.4.5",
"express": "^4.21.1",
"graphql": "^16.9.0",
"graphql-http": "^1.22.1",
"graphql-http": "^1.22.2",
"graphql-playground-middleware-express": "^1.7.23",
"graphql-scalars": "^1.23.0",
"graphql-subscriptions": "^2.0.0",
"graphql-tools": "^9.0.2",
"graphql-subscriptions": "^3.0.0",
"graphql-tools": "^9.0.3",
"graphql-ws": "^5.16.0",
"reflect-metadata": "^0.2.2",
"type-graphql": "^2.0.0-rc.2",
@ -63,17 +63,17 @@
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.8.1",
"@types/node": "^22.9.0",
"@types/supertest": "^6.0.2",
"@types/webpack": "^5.28.5",
"@types/webpack-node-externals": "^3.0.4",
"@types/ws": "^8.5.12",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"@types/ws": "^8.5.13",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"babel-loader": "^9.2.1",
"clean-webpack-plugin": "^4.0.0",
"compression-webpack-plugin": "^11.1.0",
"eslint": "^9.13.0",
"eslint": "^9.14.0",
"eslint-webpack-plugin": "^4.2.0",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
@ -82,7 +82,7 @@
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"webpack": "^5.95.0",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-manifest-plugin": "^5.0.0",
"webpack-node-externals": "^3.0.0",