Skip to content

Commit 0016303

Browse files
committed
Remove publishing of deprecated @project-gauntlet/deno
1 parent 95b0243 commit 0016303

File tree

4 files changed

+3
-11
lines changed

4 files changed

+3
-11
lines changed

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
submodules: true
3535
- uses: actions/setup-node@v4
3636
with:
37-
node-version: 18
37+
node-version: 22
3838

3939
- run: npm ci
4040

.github/workflows/setup-linux.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- run: git pull
2727
- uses: actions/setup-node@v4
2828
with:
29-
node-version: 18
29+
node-version: 22
3030
registry-url: "https://registry.npmjs.org"
3131
scope: '@project-gauntlet'
3232
- uses: dtolnay/rust-toolchain@stable

.github/workflows/setup-windows.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- run: git pull
2121
- uses: actions/setup-node@v4
2222
with:
23-
node-version: 18
23+
node-version: 22
2424
registry-url: "https://registry.npmjs.org"
2525
scope: '@project-gauntlet'
2626
- uses: dtolnay/rust-toolchain@stable

js/build/src/main.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -238,10 +238,6 @@ async function makeRepoChanges(projectRoot: string): Promise<{ releaseNotes: str
238238
spawnWithErrors('npm', ['version', `0.${newVersion}.0`], { cwd: packageDir })
239239
}
240240

241-
console.log("Bump version for deno subproject...")
242-
const denoProjectPath = path.join(projectRoot, "js", "deno");
243-
bumpNpmPackage(denoProjectPath)
244-
245241
console.log("Bump version for api subproject...")
246242
const apiProjectPath = path.join(projectRoot, "js", "api");
247243
bumpNpmPackage(apiProjectPath)
@@ -461,10 +457,6 @@ async function packageForWindows(projectRoot: string, arch: string): Promise<{ f
461457

462458

463459
function publishNpmPackage(projectRoot: string) {
464-
console.log("Publishing npm deno package...")
465-
const denoProjectPath = path.join(projectRoot, "js", "deno");
466-
spawnWithErrors('npm', ['publish'], { cwd: denoProjectPath })
467-
468460
console.log("Publishing npm api package...")
469461
const apiProjectPath = path.join(projectRoot, "js", "api");
470462
spawnWithErrors('npm', ['publish'], { cwd: apiProjectPath })

0 commit comments

Comments
 (0)