Skip to content

Commit

Permalink
Update node and pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
runewizard committed Jun 7, 2024
1 parent e9d9042 commit 908bbf5
Show file tree
Hide file tree
Showing 8 changed files with 127 additions and 119 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
lts/fermium
20.13.1
1 change: 1 addition & 0 deletions CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @bolteu/component-react-native-infrastructure-ci-cd-releases
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ inputs:
required: false

runs:
using: "node16"
using: "node20"
main: "dist/index.js"
10 changes: 3 additions & 7 deletions dist/index.js

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions dist/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"type": "module"
}
14 changes: 9 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
"version": "1.0.0",
"description": "git sparse-checkout wrapped in a github action",
"main": "dist/index.js",
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "ncc build src/index.ts -m",
"lint": "tsc -p tsconfig.json --noEmit"
Expand All @@ -21,12 +25,12 @@
"author": "bolteu",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.0",
"@actions/github": "^5.0.0"
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0"
},
"devDependencies": {
"@types/node": "^16.11.7",
"@vercel/ncc": "^0.31.1",
"typescript": "^4.4.4"
"@types/node": "^20.13.1",
"@vercel/ncc": "^0.38.1",
"typescript": "^5.4.5"
}
}
210 changes: 107 additions & 103 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"compilerOptions": {
"target": "es2015",
"moduleResolution": "node"
"target": "ES2022",
"moduleResolution": "Bundler"
}
}

0 comments on commit 908bbf5

Please sign in to comment.