Skip to content

Commit

Permalink
workflows -> node 20
Browse files Browse the repository at this point in the history
  • Loading branch information
reindernijhoff committed May 21, 2024
1 parent 8caf8f8 commit 0e76a91
Show file tree
Hide file tree
Showing 11 changed files with 20 additions and 63 deletions.
16 changes: 0 additions & 16 deletions .editorconfig

This file was deleted.

6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ jobs:

strategy:
matrix:
node-version: [18.x, 20.x]
node-version: [20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/bump-version-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ jobs:

steps:
- name: Check out source
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '18'
node-version: '20'
cache: 'npm'

- name: Install npm packages
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-dev-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '20'
cache: 'npm'

- name: Install npm packages
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,8 @@ yarn-error.log*

.eslintcache


# npm publish artifects
/dist
/example/dist

1 change: 0 additions & 1 deletion .node-version

This file was deleted.

1 change: 0 additions & 1 deletion .nvmrc

This file was deleted.

8 changes: 0 additions & 8 deletions CHANGELOG.md

This file was deleted.

21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

11 changes: 10 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,17 @@
"repository": "[email protected]:mediamonks/panorama-renderer.git",
"author": "Reinder Nijhoff <[email protected]>",
"license": "MIT",
"exports": "./dist/index.js",
"type": "module",
"main": "./dist/panorama-renderer.umd.cjs",
"module": "./dist/panorama-renderer.js",
"types": "./index.d.ts",
"exports": {
".": {
"import": "./dist/panorama-renderer.js",
"require": "./dist/panorama-renderer.umd.cjs",
"types": "./index.d.ts"
}
},
"files": [
"dist/**/*",
"README.md"
Expand Down
8 changes: 0 additions & 8 deletions tsconfig.build.json

This file was deleted.

0 comments on commit 0e76a91

Please sign in to comment.