From e263a7441072d420aa0800af0d2f5feee68fd965 Mon Sep 17 00:00:00 2001 From: Richard Knoll Date: Tue, 12 Dec 2023 12:53:24 -0800 Subject: [PATCH] exclude type roots from editor build (#6274) * exclude type roots from editor build * bump sim --- .github/workflows/pxt-buildmain.yml | 2 +- .github/workflows/pxt-buildpush.yml | 2 +- editor/tsconfig.json | 1 + package.json | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pxt-buildmain.yml b/.github/workflows/pxt-buildmain.yml index 8d9bc19efd8..7156394394e 100644 --- a/.github/workflows/pxt-buildmain.yml +++ b/.github/workflows/pxt-buildmain.yml @@ -31,7 +31,7 @@ jobs: uses: actions/checkout@v2 with: repository: microsoft/pxt-arcade-sim - ref: v0.11.10 + ref: v0.11.11 token: ${{ secrets.GH_TOKEN }} path: node_modules/pxt-arcade-sim - name: pxt ci diff --git a/.github/workflows/pxt-buildpush.yml b/.github/workflows/pxt-buildpush.yml index c10b6d4b934..a87bcafba53 100644 --- a/.github/workflows/pxt-buildpush.yml +++ b/.github/workflows/pxt-buildpush.yml @@ -31,7 +31,7 @@ jobs: uses: actions/checkout@v2 with: repository: microsoft/pxt-arcade-sim - ref: v0.11.10 + ref: v0.11.11 token: ${{ secrets.GH_TOKEN }} path: node_modules/pxt-arcade-sim - name: pxt ci diff --git a/editor/tsconfig.json b/editor/tsconfig.json index 6983bb342f6..53559f5f191 100644 --- a/editor/tsconfig.json +++ b/editor/tsconfig.json @@ -7,6 +7,7 @@ "outFile": "../built/editor.js", "rootDir": ".", "newLine": "LF", + "types": [], "sourceMap": false } } diff --git a/package.json b/package.json index 5cde6c53d70..85fb2eaf024 100644 --- a/package.json +++ b/package.json @@ -37,7 +37,7 @@ "pxt-core": "8.5.57" }, "optionalDependencies": { - "pxt-arcade-sim": "microsoft/pxt-arcade-sim.git#v0.11.10" + "pxt-arcade-sim": "microsoft/pxt-arcade-sim.git#v0.11.11" }, "scripts": { "serve": "node node_modules/pxt-core/built/pxt.js serve",