@node-3d/addon-tools 10.0.0 → 10.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/package.json +4 -13
- package/utils/common.gypi +1 -1
package/README.md
CHANGED
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
This is a part of [Node3D](https://github.com/node-3d) project.
|
|
4
4
|
|
|
5
|
-
[](https://badge.fury.io/js/@node-3d/addon-tools)
|
|
6
6
|
[](https://github.com/node-3d/addon-tools/actions/workflows/lint.yml)
|
|
7
7
|
[](https://github.com/node-3d/addon-tools/actions/workflows/test.yml)
|
|
8
8
|
[](https://github.com/node-3d/addon-tools/actions/workflows/cpplint.yml)
|
|
9
9
|
|
|
10
|
-
```
|
|
10
|
+
```bash
|
|
11
11
|
npm install @node-3d/addon-tools
|
|
12
12
|
```
|
|
13
13
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@node-3d/addon-tools",
|
|
3
|
-
"version": "10.0.
|
|
3
|
+
"version": "10.0.2",
|
|
4
4
|
"description": "Helpers for Node.js addons and dependency packages",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"addon",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"build:ci": "rslib build",
|
|
57
57
|
"build:watch": "rslib build --watch",
|
|
58
58
|
"build:test-addon": "cd test-addon && node-gyp rebuild -j max --silent",
|
|
59
|
-
"lint:ts": "
|
|
59
|
+
"lint:ts": "tsc -p tsconfig.json --noEmit",
|
|
60
60
|
"lint:oxlint": "oxlint .",
|
|
61
61
|
"format:ts": "oxfmt -c ./oxfmt.config.ts --no-error-on-unmatched-pattern \"**/*.{js,jsx,ts,tsx}\"",
|
|
62
62
|
"format:ts:ci": "oxfmt -c ./oxfmt.config.ts --check --no-error-on-unmatched-pattern \"**/*.{js,jsx,ts,tsx}\"",
|
|
@@ -69,28 +69,19 @@
|
|
|
69
69
|
"devDependencies": {
|
|
70
70
|
"@rslib/core": "0.23.2",
|
|
71
71
|
"@types/node": "24.13.2",
|
|
72
|
-
"@typescript/native-preview": "7.0.0-dev.20260704.1",
|
|
73
72
|
"clang-format-node": "3.0.7",
|
|
74
73
|
"node-addon-api": "8.9.0",
|
|
75
74
|
"oxfmt": "0.57.0",
|
|
76
75
|
"oxlint": "1.72.0",
|
|
77
76
|
"tslib": "2.8.1",
|
|
78
|
-
"typescript": "
|
|
77
|
+
"typescript": "7.0.2"
|
|
79
78
|
},
|
|
80
79
|
"peerDependencies": {
|
|
81
|
-
"node-addon-api": "8.9.0"
|
|
82
|
-
"oxfmt": "0.57.0",
|
|
83
|
-
"oxlint": "1.72.0"
|
|
80
|
+
"node-addon-api": "^8.9.0"
|
|
84
81
|
},
|
|
85
82
|
"peerDependenciesMeta": {
|
|
86
83
|
"node-addon-api": {
|
|
87
84
|
"optional": true
|
|
88
|
-
},
|
|
89
|
-
"oxfmt": {
|
|
90
|
-
"optional": true
|
|
91
|
-
},
|
|
92
|
-
"oxlint": {
|
|
93
|
-
"optional": true
|
|
94
85
|
}
|
|
95
86
|
},
|
|
96
87
|
"engines": {
|
package/utils/common.gypi
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
'cflags_cc': ['-std=c++20', '-fno-exceptions'],
|
|
7
7
|
}],
|
|
8
8
|
['OS=="mac"', {
|
|
9
|
-
'MACOSX_DEPLOYMENT_TARGET': '
|
|
9
|
+
'MACOSX_DEPLOYMENT_TARGET': '13.5',
|
|
10
10
|
'defines': ['__APPLE__'],
|
|
11
11
|
'CLANG_CXX_LIBRARY': 'libc++',
|
|
12
12
|
'OTHER_CFLAGS': ['-std=c++20', '-fno-exceptions'],
|