Skip to content

Commit

Permalink
v0.0.18 (#863)
Browse files Browse the repository at this point in the history
  • Loading branch information
ponderingdemocritus authored Sep 4, 2023
1 parent 692ea4c commit 0e031cc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/core/bin/generateComponents.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ fs.readFile(jsonFilePath, "utf8", (err, jsonString) => {
fileContent += ` const name = "${tableName}";\n`;
fileContent += ` return defineComponent(\n world,\n {\n`;

component.members.forEach((member) => {
component.members.filter(m => !m.key).forEach((member) => {
let memberType = "RecsType.Number"; // Default type set to Number

if (
Expand Down
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dojoengine/core",
"version": "0.0.17",
"version": "0.0.18",
"description": "Dojo engine core providers and types",
"scripts": {
"build": "tsc",
Expand All @@ -23,4 +23,4 @@
"bin": {
"create-components": "./dist/bin/generateComponents.cjs"
}
}
}

0 comments on commit 0e031cc

Please sign in to comment.