Skip to content

Commit f2ab386

Browse files
committed
Update deps
1 parent 1306385 commit f2ab386

File tree

10 files changed

+806
-4173
lines changed

10 files changed

+806
-4173
lines changed

.eslintrc.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,11 +82,11 @@
8282
"no-console": [0],
8383
"node/no-unsupported-features/es-builtins": [
8484
"error",
85-
{ "version": ">=18.12.1" }
85+
{ "version": ">=18.16.0" }
8686
],
8787
"node/no-unsupported-features/node-builtins": [
8888
"error",
89-
{ "version": ">=18.12.1" }
89+
{ "version": ">=18.16.0" }
9090
],
9191
"func-names": [
9292
"error",

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Install Node.js
2626
uses: actions/setup-node@v3
2727
with:
28-
node-version: 18.12.1
28+
node-version: 18.16.0
2929
cache: 'npm'
3030

3131
- name: Get Package Version
@@ -61,7 +61,7 @@ jobs:
6161
- name: Install Node.js
6262
uses: actions/setup-node@v3
6363
with:
64-
node-version: 18.12.1
64+
node-version: 18.16.0
6565
cache: 'npm'
6666

6767
- name: Install Modules

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Install Node.js
2222
uses: actions/setup-node@v3
2323
with:
24-
node-version: 18.12.1
24+
node-version: 18.16.0
2525
cache: 'npm'
2626

2727
- name: Get Package Version

.github/workflows/validate.yml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Install Node.js
2727
uses: actions/setup-node@v3
2828
with:
29-
node-version: 18.12.1
29+
node-version: 18.16.0
3030
cache: 'npm'
3131

3232
- name: Install Modules
@@ -53,7 +53,7 @@ jobs:
5353
- name: Install Node.js
5454
uses: actions/setup-node@v3
5555
with:
56-
node-version: 18.12.1
56+
node-version: 18.16.0
5757
cache: 'npm'
5858

5959
- name: Install Modules
@@ -62,13 +62,6 @@ jobs:
6262
- name: Build Current Binary
6363
run: npm run build-all
6464

65-
# - name: Run Unit Tests - Linux
66-
# if: matrix.os == 'ubuntu-20.04'
67-
# uses: GabrielBB/xvfb-action@v1
68-
# with:
69-
# run: npm run test-ci
70-
7165
- name: Run Unit Tests
72-
# if: matrix.os != 'ubuntu-20.04'
7366
if: matrix.os != 'windows-2022'
7467
run: npm run test-ci

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2018 Luis Blanco
3+
Copyright (c) 2023 Luis Blanco
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

examples/package-lock.json

Lines changed: 103 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"postinstall": "cd .. && npm ci"
88
},
99
"dependencies": {
10-
"glfw-raub": "^4.8.0",
11-
"image-raub": "^3.3.1"
10+
"glfw-raub": "^5.1.0",
11+
"image-raub": "^4.1.0"
1212
}
1313
}

install.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ const { install } = require('addon-tools-raub');
44

55

66
const prefix = 'https://github.com/node-3d/webgl-raub/releases/download';
7-
const tag = '3.0.0';
7+
const tag = '3.1.0';
88

99
install(`${prefix}/${tag}`);

0 commit comments

Comments
 (0)