Skip to content

Commit

Permalink
Merge branch 'development'
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianWowra committed Nov 24, 2022
2 parents 182723f + 0903586 commit 0e8720b
Show file tree
Hide file tree
Showing 6 changed files with 221 additions and 150 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

- uses: actions/setup-node@v1
with:
node-version: '12.x'
node-version: '16.x'

- name: ⚡ Install dependencies
run: yarn install --frozen-lockfile
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '12.x'
node-version: '16.x'

- name: ⚡ Install dependencies
run: yarn install --frozen-lockfile
Expand All @@ -31,10 +31,10 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '12.x'
node-version: '16.x'

- name: ⚡ Install dependencies
run: yarn install --frozen-lockfile

- name: 🔎 Lint
run: yarn lint
run: yarn lint
4 changes: 2 additions & 2 deletions .github/workflows/release.when-pushed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

- uses: actions/setup-node@v1
with:
node-version: '12.x'
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'

- name: ⚡ Install dependencies
Expand All @@ -27,4 +27,4 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: dist
path: package.tgz
path: package.tgz
4 changes: 2 additions & 2 deletions .github/workflows/release.when-tagged.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

- uses: actions/setup-node@v1
with:
node-version: '12.x'
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'

- name: ⚡ Install dependencies
Expand Down Expand Up @@ -50,4 +50,4 @@ jobs:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./package.tgz
asset_name: package.tgz
asset_content_type: application/tgz
asset_content_type: application/tgz
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@
"author": "KillerJulian <[email protected]>",
"license": "MIT",
"dependencies": {
"axios": "0.27.2",
"tslib": "2.4.0"
"axios": "1.2.0",
"tslib": "2.4.1"
},
"devDependencies": {
"@types/node": "12.20.52",
"@typescript-eslint/eslint-plugin": "5.26.0",
"@typescript-eslint/parser": "5.26.0",
"eslint": "8.16.0",
"typescript": "4.7.2",
"typedoc": "0.22.15"
"@types/node": "12.20.55",
"@typescript-eslint/eslint-plugin": "5.44.0",
"@typescript-eslint/parser": "5.44.0",
"eslint": "8.28.0",
"typescript": "4.9.3",
"typedoc": "0.23.21"
},
"scripts": {
"build": "yarn build:lib && yarn build:docs",
Expand Down
Loading

0 comments on commit 0e8720b

Please sign in to comment.