Skip to content

Commit

Permalink
Merge pull request #6 from lifeomic/updateDeps
Browse files Browse the repository at this point in the history
feat: Update dependencies
  • Loading branch information
DavidTanner authored Feb 28, 2023
2 parents 2c0b553 + 36c6fd1 commit 08fa7e6
Show file tree
Hide file tree
Showing 5 changed files with 1,619 additions and 1,382 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@ jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 14
node-version: 18
cache: yarn
- name: Test and Build
run: |
yarn
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,11 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.LIFEOMIC_NPM_TOKEN }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 14
node-version: 18
cache: yarn
- name: Test and Build
run: |
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > .npmrc
Expand Down
42 changes: 21 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,30 +17,30 @@
"blamda": "./bin/cli.js"
},
"dependencies": {
"adm-zip": "^0.5.9",
"esbuild": "^0.14.44",
"glob": "^8.0.3",
"yargs": "^17.5.1"
"adm-zip": "^0.5.10",
"esbuild": "^0.17.10",
"glob": "^8.1.0",
"yargs": "^17.7.1"
},
"devDependencies": {
"@aws-sdk/client-lambda": "^3.213.0",
"@lifeomic/eslint-config-standards": "^2.1.1",
"@lifeomic/typescript-config": "^1.0.3",
"@aws-sdk/client-lambda": "^3.276.0",
"@lifeomic/eslint-config-standards": "^3.1.0",
"@lifeomic/typescript-config": "^3.0.0",
"@types/adm-zip": "^0.5.0",
"@types/glob": "^7.2.0",
"@types/jest": "^27.5.1",
"@types/glob": "^8.1.0",
"@types/jest": "^29.4.0",
"@types/node": "^14.0.0",
"@types/yargs": "^17.0.10",
"aws-sdk": "^2.1258.0",
"conventional-changelog-conventionalcommits": "^4.6.3",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.1.0",
"prettier": "^2.6.2",
"semantic-release": "^19.0.3",
"ts-jest": "^28.0.3",
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
"@types/yargs": "^17.0.22",
"aws-sdk": "^2.1321.0",
"conventional-changelog-conventionalcommits": "^5.0.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.4.3",
"prettier": "^2.8.4",
"semantic-release": "^20.1.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"compilerOptions": {
"target": "es2019",
"module": "commonjs",
"lib": ["ES2020"],
"lib": ["ES2022"],
"outDir": "./dist",
"inlineSources": false,
"inlineSourceMap": false,
Expand Down
Loading

0 comments on commit 08fa7e6

Please sign in to comment.