From b6384b9d712dfb9ea3e26a0b0fe7b7b00a162ccd Mon Sep 17 00:00:00 2001 From: HexaField Date: Sat, 17 Aug 2024 13:01:41 +1000 Subject: [PATCH 1/3] update project name --- manifest.json | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/manifest.json b/manifest.json index 4b8ff35..c5cb3ad 100644 --- a/manifest.json +++ b/manifest.json @@ -1,5 +1,5 @@ { - "name": "ee-tutorial-hello", + "name": "etherealengine/ee-tutorial-hello", "version": "0.0.0", "engineVersion": "1.6.0", "description": "" diff --git a/package.json b/package.json index a6afc41..a31ad58 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "ee-tutorial-hello", + "name": "@etherealengine/ee-tutorial-hello", "version": "0.0.0", "description": "", "main": "", From 46afbcceb046f2ab7b2a56f378cca27a40c0a3ff Mon Sep 17 00:00:00 2001 From: hanzlamateen Date: Sat, 17 Aug 2024 09:45:29 +0500 Subject: [PATCH 2/3] Update github action to include org name in checkout --- .github/workflows/project-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/project-build.yml b/.github/workflows/project-build.yml index a00deb7..586d6b5 100755 --- a/.github/workflows/project-build.yml +++ b/.github/workflows/project-build.yml @@ -25,7 +25,7 @@ jobs: - name: Checkout Project uses: actions/checkout@v3 with: - path: './packages/projects/projects/${{ github.event.repository.name }}' + path: './packages/projects/projects/etherealengine/${{ github.event.repository.name }}' - name: Use Node.js uses: actions/setup-node@v3 with: From e69bf682ed59664019df02ce44fa02ddb15e12fd Mon Sep 17 00:00:00 2001 From: HexaField Date: Sun, 18 Aug 2024 11:59:31 +1000 Subject: [PATCH 3/3] update ts config --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index ca187ec..4849b7b 100755 --- a/tsconfig.json +++ b/tsconfig.json @@ -33,8 +33,8 @@ "**/node_modules/**" ], "include": [ - "../../../../__global.d.ts", - "../../../server-core/src/*", + "../../../../../__global.d.ts", + "../../../../server-core/src/*", "./**/*.ts", "./**/*.tsx" ]