@irsdk-node/native 3.2.0 → 3.3.0
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/build/Debug/irsdk_node.node +0 -0
- package/build/Debug/irsdk_node.pdb +0 -0
- package/build/Debug/obj/irsdk_node/lib/irsdk_utils.obj +0 -0
- package/build/Debug/obj/irsdk_node/lib/yaml_parser.obj +0 -0
- package/build/Debug/obj/irsdk_node/src/irsdk_node.obj +0 -0
- package/build/Debug/obj/irsdk_node/win_delay_load_hook.obj +0 -0
- package/build/Release/irsdk_node.iobj +0 -0
- package/build/Release/irsdk_node.ipdb +0 -0
- package/build/Release/irsdk_node.node +0 -0
- package/build/Release/irsdk_node.pdb +0 -0
- package/build/Release/obj/irsdk_node/lib/irsdk_utils.obj +0 -0
- package/build/Release/obj/irsdk_node/lib/yaml_parser.obj +0 -0
- package/build/Release/obj/irsdk_node/src/irsdk_node.obj +0 -0
- package/build/Release/obj/irsdk_node/win_delay_load_hook.obj +0 -0
- package/build/binding.sln +3 -3
- package/dist/index.js +3 -2
- package/package.json +1 -1
- package/src/index.d.ts +1 -1
- package/src/index.js +2 -1
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/build/binding.sln
CHANGED
|
@@ -4,14 +4,14 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "irsdk_node", "irsdk_node.vc
|
|
|
4
4
|
EndProject
|
|
5
5
|
Global
|
|
6
6
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
|
7
|
-
Release|x64 = Release|x64
|
|
8
7
|
Debug|x64 = Debug|x64
|
|
8
|
+
Release|x64 = Release|x64
|
|
9
9
|
EndGlobalSection
|
|
10
10
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
|
11
|
-
{1B84CF73-BF95-FD32-1555-88D3CCBBB352}.Release|x64.ActiveCfg = Release|x64
|
|
12
|
-
{1B84CF73-BF95-FD32-1555-88D3CCBBB352}.Release|x64.Build.0 = Release|x64
|
|
13
11
|
{1B84CF73-BF95-FD32-1555-88D3CCBBB352}.Debug|x64.ActiveCfg = Debug|x64
|
|
14
12
|
{1B84CF73-BF95-FD32-1555-88D3CCBBB352}.Debug|x64.Build.0 = Debug|x64
|
|
13
|
+
{1B84CF73-BF95-FD32-1555-88D3CCBBB352}.Release|x64.ActiveCfg = Release|x64
|
|
14
|
+
{1B84CF73-BF95-FD32-1555-88D3CCBBB352}.Release|x64.Build.0 = Release|x64
|
|
15
15
|
EndGlobalSection
|
|
16
16
|
GlobalSection(SolutionProperties) = preSolution
|
|
17
17
|
HideSolutionNode = FALSE
|
package/dist/index.js
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.NativeSDK = void 0;
|
|
4
4
|
// Import from JS so that we can type the API in a nicer way (without aliases)
|
|
5
5
|
// The alternative would be to somehow get types generated, or use aliases to
|
|
6
6
|
// fake a module and then define that module... but those are gross, so no thanks
|
|
7
7
|
exports.NativeSDK = require("../build/Release/irsdk_node.node").iRacingSdkNode;
|
|
8
|
-
|
|
8
|
+
// @todo For some reason this is not being built when being downloaded. It runs via prepack, but not in the built version.
|
|
9
|
+
// export const DebugSDK = require("../build/Debug/irsdk_node.node").iRacingSdkNode;
|
package/package.json
CHANGED
package/src/index.d.ts
CHANGED
package/src/index.js
CHANGED
|
@@ -2,4 +2,5 @@
|
|
|
2
2
|
// The alternative would be to somehow get types generated, or use aliases to
|
|
3
3
|
// fake a module and then define that module... but those are gross, so no thanks
|
|
4
4
|
export const NativeSDK = require("../build/Release/irsdk_node.node").iRacingSdkNode;
|
|
5
|
-
|
|
5
|
+
// @todo For some reason this is not being built when being downloaded. It runs via prepack, but not in the built version.
|
|
6
|
+
// export const DebugSDK = require("../build/Debug/irsdk_node.node").iRacingSdkNode;
|