Skip to content

Commit 4dab7f9

Browse files
committed
Update deps
1 parent c8a79e1 commit 4dab7f9

File tree

4 files changed

+27
-121
lines changed

4 files changed

+27
-121
lines changed

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) 2024 Luis Blanco
3+
Copyright (c) 2025 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

eslint.config.js

Lines changed: 1 addition & 95 deletions
Original file line numberDiff line numberDiff line change
@@ -1,97 +1,3 @@
11
'use strict';
22

3-
const js = require('@eslint/js');
4-
5-
6-
module.exports = [
7-
js.configs.recommended,
8-
{
9-
languageOptions: {
10-
'parserOptions': {
11-
'ecmaVersion': 2022,
12-
sourceType: 'commonjs'
13-
},
14-
globals: {
15-
global: 'readonly',
16-
require: 'readonly',
17-
Buffer: 'readonly',
18-
module: 'readonly',
19-
console: 'readonly',
20-
__dirname: 'readonly',
21-
process: 'readonly',
22-
setTimeout: 'readonly',
23-
setImmediate: 'readonly',
24-
clearImmediate: 'readonly',
25-
},
26-
},
27-
'rules': {
28-
'arrow-parens': ['error', 'always'],
29-
'no-trailing-spaces': [
30-
'error',
31-
{
32-
'skipBlankLines': true
33-
}
34-
],
35-
'indent': [
36-
'error',
37-
'tab',
38-
{
39-
'SwitchCase': 1
40-
}
41-
],
42-
'operator-linebreak': [
43-
'error',
44-
'after',
45-
{
46-
'overrides': {
47-
'?': 'before',
48-
':': 'before'
49-
}
50-
}
51-
],
52-
'max-len': ['error', 110],
53-
'quotes': [
54-
'error',
55-
'single'
56-
],
57-
'semi': [
58-
'error',
59-
'always'
60-
],
61-
'no-multiple-empty-lines': ['error', { 'max': 3, 'maxEOF': 1, 'maxBOF': 1 }],
62-
'keyword-spacing': ['error', { 'before': true, 'after': true }],
63-
'space-before-blocks': ['error'],
64-
'space-before-function-paren': [
65-
'error', {'anonymous': 'always', 'named': 'never', 'asyncArrow': 'always'}
66-
],
67-
'camelcase': ['error'],
68-
'no-tabs': [0],
69-
'no-unused-vars': [
70-
'error',
71-
{
72-
'argsIgnorePattern': '^_',
73-
'varsIgnorePattern': '^_',
74-
'caughtErrorsIgnorePattern': '^_'
75-
}
76-
],
77-
'global-require': [0],
78-
'no-underscore-dangle': [0],
79-
'no-plusplus': [0],
80-
'no-shadow': [0],
81-
'node/no-unpublished-require': [0],
82-
'no-process-exit': [0],
83-
'linebreak-style': [0],
84-
'node/no-missing-require': [0],
85-
'no-console': [0],
86-
'node/no-unsupported-features/es-builtins': 0,
87-
'node/no-unsupported-features/node-builtins': 0,
88-
'func-names': [
89-
'error',
90-
'never',
91-
{
92-
'generators': 'never'
93-
}
94-
]
95-
}
96-
},
97-
];
3+
module.exports = require('addon-tools-raub/utils/eslint-common');

package-lock.json

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

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"author": "Luis Blanco <[email protected]>",
33
"name": "glfw-raub",
4-
"version": "6.1.0",
4+
"version": "6.2.0",
55
"description": "GLFW for Node.js",
66
"license": "MIT",
77
"main": "index.js",
@@ -43,15 +43,15 @@
4343
"url": "https://github.com/node-3d/glfw-raub.git"
4444
},
4545
"dependencies": {
46-
"addon-tools-raub": "^9.1.1",
47-
"deps-opengl-raub": "^7.0.0",
48-
"segfault-raub": "^3.0.1"
46+
"addon-tools-raub": "^9.2.0",
47+
"deps-opengl-raub": "^7.1.0",
48+
"segfault-raub": "^3.1.0"
4949
},
5050
"devDependencies": {
5151
"@types/node": "^22.10.5",
5252
"@eslint/js": "^9.17.0",
5353
"eslint": "^9.17.0",
54-
"node-addon-api": "^8.2.1",
55-
"typescript": "^5.6.3"
54+
"node-addon-api": "^8.3.0",
55+
"typescript": "^5.7.2"
5656
}
5757
}

0 commit comments

Comments
 (0)