Skip to content

Commit

Permalink
chore(nodejs): bumped version of nodejs to 18 from 12 [ci-skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
Stradivario committed Mar 5, 2024
1 parent 7f2cbc8 commit 1627089
Show file tree
Hide file tree
Showing 13 changed files with 299 additions and 225 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/npmpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 12
node-version: 18
# registry-url: https://npm.pkg.github.com/
# scope: "@rxdi"
- run: npx @rxdi/bolt install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
node-version: 18
- run: npx @rxdi/bolt install
- run: npm run lint --if-present
- run: npm test
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,8 @@ dist
*.js
*.map.js
*.d.ts
*.js.map

!docs/*
!docs/*

packages/di/module/*
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v18.17.0
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@
"husky": "^3.0.9",
"@rxdi/bolt": "^0.24.3",
"@abraham/reflection": "^0.7.0",
"typescript": "^4.3.5",
"eslint": "^8.13.0",
"typescript": "^5.3.3",
"eslint": "^8.47.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-simple-import-sort": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"prettier": "^2.0.5",
"ts-jest": "25.2.1",
"jest": "^24.9.0",
Expand All @@ -67,4 +67,4 @@
"graphql": "^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0",
"graphql-tag": "^2.12.6"
}
}
}
1 change: 0 additions & 1 deletion packages/di/module/index.js.map

This file was deleted.

1 change: 0 additions & 1 deletion packages/di/module/module.js.map

This file was deleted.

1 change: 0 additions & 1 deletion packages/di/module/module.spec.js.map

This file was deleted.

1 change: 0 additions & 1 deletion packages/di/module/module/index.js.map

This file was deleted.

1 change: 0 additions & 1 deletion packages/di/module/module/module.js.map

This file was deleted.

1 change: 0 additions & 1 deletion packages/di/module/module/module.spec.js.map

This file was deleted.

4 changes: 2 additions & 2 deletions packages/di/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"test": "npx jest",
"lint": "npx eslint . --ext .ts",
"lint-fix": "npx eslint . --fix --ext .ts",
"build": "rm -rf dist && tsc && cp -r ./dist/module module",
"build": "rm -rf dist && tsc",
"build-prod": "npx gapi build --local --path=./src/index.ts"
},
"repository": {
Expand All @@ -38,4 +38,4 @@
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"typings": "./dist/index.d.ts"
}
}
Loading

0 comments on commit 1627089

Please sign in to comment.