Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/auto-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ jobs:
publish_new_version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 18
node-version: 24
- name: prepare yarn
run: |
corepack enable yarn
yarn config set npmScopes.paosder.npmAuthToken ${{ secrets.NPM_PUBLISH_TOKEN }}
yarn install --immutable
- uses: actions/github-script@v3
- uses: actions/github-script@v9
name: Modify package.json
id: new-version
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
node-version: [14.x, 16.x, 18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- name: prepare yarn
Expand All @@ -28,7 +28,7 @@ jobs:
- name: Build project
run: yarn build
- name: Coverage Report
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v6
with:
files: ./coverage/clover.xml
verbose: true
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ jobs:
publish_test_version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 16
node-version: 24
- name: prepare yarn
run: |
corepack enable yarn
yarn config set npmScopes.paosder.npmAuthToken ${{ secrets.NPM_PUBLISH_TOKEN }}
yarn install --immutable
- uses: actions/github-script@v3
- uses: actions/github-script@v9
with:
script: |
const fs = require('fs');
Expand Down
783 changes: 0 additions & 783 deletions .yarn/releases/yarn-3.2.3.cjs

This file was deleted.

940 changes: 940 additions & 0 deletions .yarn/releases/yarn-4.14.1.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 @@ -10,4 +10,4 @@ plugins:
- path: .yarn/plugins/@yarnpkg/plugin-version.cjs
spec: "@yarnpkg/plugin-version"

yarnPath: .yarn/releases/yarn-3.2.3.cjs
yarnPath: .yarn/releases/yarn-4.14.1.cjs
4 changes: 2 additions & 2 deletions examples/webgl/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
"@snowpack/plugin-typescript": "^1.2.0",
"@types/canvas-confetti": "^1.0.0",
"@types/snowpack-env": "^2.3.2",
"prettier": "^2.0.5",
"prettier": "^3.0.0",
"snowpack": "^3.0.1",
"snowpack-plugin-glslify": "^1.0.0",
"typescript": "^4.0.0"
"typescript": "^6.0.0"
}
}
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,22 +21,22 @@
],
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/jest": "^28",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"esbuild": "^0.15.9",
"eslint": "^8.24.0",
"@commitlint/cli": "^20.0.0",
"@commitlint/config-conventional": "^20.0.0",
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"esbuild": "^0.28.0",
"eslint": "^10.0.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.1",
"jest": "^28",
"rimraf": "^3.0.2",
"husky": "^9.0.0",
"jest": "^30.0.0",
"rimraf": "^6.0.0",
"standard-version": "^9.5.0",
"ts-jest": "^28",
"typedoc": "^0.23.15",
"typescript": "4.8.3"
"ts-jest": "^29.0.0",
"typedoc": "^0.28.0",
"typescript": "6.0.3"
},
"scripts": {
"clean": "rimraf dist && rimraf tsconfig.tsbuildinfo",
Expand All @@ -52,5 +52,5 @@
"docgen": "typedoc src/map.ts",
"release": "standard-version"
},
"packageManager": "yarn@3.2.3"
"packageManager": "yarn@4.14.1"
}
Loading
Loading