@polytric/openws-sdkgen 0.0.3 → 0.0.4
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/dist/main.cjs +22 -205
- package/dist/main.d.cts +1 -0
- package/dist/main.d.ts +1 -0
- package/dist/main.js +403 -0
- package/dist/plans/dotnet.cjs +229 -0
- package/dist/plans/dotnet.d.cts +147 -0
- package/dist/plans/dotnet.d.ts +147 -0
- package/dist/plans/dotnet.js +192 -0
- package/package.json +2 -4
- /package/{src/dotnet/template → dist/templates/dotnet}/HostRole.cs.ejs +0 -0
- /package/{src/dotnet/template → dist/templates/dotnet}/Model.cs.ejs +0 -0
- /package/{src/dotnet/template → dist/templates/dotnet}/Network.cs.ejs +0 -0
- /package/{src/dotnet/template → dist/templates/dotnet}/RemoteRole.cs.ejs +0 -0
- /package/{src/dotnet/template → dist/templates/dotnet}/Service.asmdef.ejs +0 -0
- /package/{src/dotnet/template → dist/templates/dotnet}/UserHostRole.cs.ejs +0 -0
- /package/{src/dotnet/template → dist/templates/dotnet}/UserService.asmref.ejs +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@polytric/openws-sdkgen",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"description": "OpenWS SDK generator CLI",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -8,7 +8,6 @@
|
|
|
8
8
|
},
|
|
9
9
|
"files": [
|
|
10
10
|
"dist",
|
|
11
|
-
"src/dotnet/template",
|
|
12
11
|
"LICENSE",
|
|
13
12
|
"README.md"
|
|
14
13
|
],
|
|
@@ -49,7 +48,6 @@
|
|
|
49
48
|
"scripts": {
|
|
50
49
|
"build": "tsup",
|
|
51
50
|
"typecheck": "tsc --noEmit",
|
|
52
|
-
"
|
|
53
|
-
"test:csharp:unity": "tsx src/main.ts --spec ./test/spec.json --out ./generated/dotnet/unity --project Example --hostRole client --language csharp --environment unity"
|
|
51
|
+
"test:csharp:unity": "node dist/main.cjs --spec ./test/spec.json --out ./generated/dotnet/unity --project Example --hostRole client --language csharp --environment unity"
|
|
54
52
|
}
|
|
55
53
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|