Skip to content

Commit

Permalink
chore: update dependencies and yarn to latest version
Browse files Browse the repository at this point in the history
  • Loading branch information
mario-jerkovic committed Feb 1, 2024
1 parent 1b95c31 commit e7ebbbf
Show file tree
Hide file tree
Showing 6 changed files with 2,192 additions and 2,234 deletions.
23 changes: 11 additions & 12 deletions .github/workflows/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,16 @@ jobs:
with:
fetch-depth: 0
persist-credentials: false
- uses: actions/cache@v3
- uses: actions/setup-node@v4
with:
path: |
node_modules
.yarn/cache
key: node_modules-${{ hashFiles('**/yarn.lock') }}
node-version: 20.x
cache: yarn
- run: yarn install
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: yarn lint
- run: yarn build
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: dist
path: dist/
Expand All @@ -41,16 +39,17 @@ jobs:
with:
fetch-depth: 0
persist-credentials: false
- uses: actions/cache@v3
- uses: actions/setup-node@v4
with:
path: |
node_modules
.yarn/cache
key: node_modules-${{ hashFiles('**/yarn.lock') }}
- uses: actions/download-artifact@v3
node-version: 20.x
cache: yarn
- uses: actions/download-artifact@v4
with:
name: dist
path: dist/
- run: yarn install
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: yarn release
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
Expand Down
672 changes: 336 additions & 336 deletions .yarn/releases/yarn-4.0.2.cjs → .yarn/releases/yarn-4.1.0.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ enableGlobalCache: false

nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-4.0.2.cjs
yarnPath: .yarn/releases/yarn-4.1.0.cjs
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@
}
},
"dependencies": {
"@aws-sdk/client-ecr": "^3.490.0",
"@aws-sdk/client-ecr": "^3.504.0",
"aggregate-error": "^5.0.0"
},
"devDependencies": {
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@rimac-technology/style-guide": "^9.2.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.1.0",
Expand All @@ -59,23 +59,23 @@
"@semantic-release/npm": "^11.0.2",
"@semantic-release/release-notes-generator": "^12.1.0",
"@types/eslint": "^8.56.2",
"@types/node": "^20.11.0",
"@types/node": "^20.11.14",
"commitizen": "^4.3.0",
"conventional-changelog-conventionalcommits": "^7.0.2",
"cspell": "^8.3.2",
"eslint": "^8.56.0",
"husky": "^8.0.3",
"husky": "^9.0.7",
"npm-package-json-lint": "^7.1.0",
"pinst": "^3.0.0",
"prettier": "^3.1.1",
"semantic-release": "^22.0.12",
"prettier": "^3.2.4",
"semantic-release": "^23.0.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"peerDependencies": {
"semantic-release": ">=20"
},
"packageManager": "yarn@4.0.2",
"packageManager": "yarn@4.1.0",
"engines": {
"node": ">=22"
},
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
"allowJs": true,
"outDir": "dist",
"target": "ES2022",
"module": "Node16"
"module": "Node16",
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules"]
"exclude": ["node_modules"],
}
Loading

0 comments on commit e7ebbbf

Please sign in to comment.