Skip to content

Commit b0eb94d

Browse files
authored
build(dev-deps): drop tsx (#1908)
* build(dev-deps): drop tsx * ci: trigger new CI run
1 parent 56f519f commit b0eb94d

4 files changed

Lines changed: 6 additions & 311 deletions

File tree

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
matrix:
1717
node-version:
18-
- '22.12.x'
18+
- '22.22.x'
1919
os:
2020
- macos-latest
2121
- ubuntu-latest
@@ -43,7 +43,7 @@ jobs:
4343
path: ~/.cache/electron
4444
key: v1-electron-cache-${{ matrix.os }}
4545
- name: Download Electron binaries
46-
run: yarn tsx test/ci/download-electron.ts
46+
run: node test/ci/download-electron.ts
4747
- name: Lint
4848
run: yarn run lint
4949
- name: Test

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@
6767
"oxfmt": "^0.44.0",
6868
"oxlint": "^1.59.0",
6969
"oxlint-tsgolint": "^0.20.0",
70-
"tsx": "^4.20.4",
7170
"typedoc": "~0.28.0",
7271
"typescript": "^6.0.2",
7372
"vitest": "^3.2.4"

test/ci/download-electron.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
import { isPlatformMac } from '../../src/common.js';
1+
import { isPlatformMac } from '../../dist/common.js';
22
import {
33
createDownloadCombos,
44
downloadElectronZip as packagerDownloadElectronZip,
5-
} from '../../src/download.js';
5+
} from '../../dist/download.js';
66
import { downloadArtifact } from '@electron/get';
77
import os from 'node:os';
88
import path from 'node:path';
99
import config from '../config.json' with { type: 'json' };
10-
import { Options } from '../../src/types.js';
11-
import { officialArchs, officialPlatforms } from '../../src/targets.js';
10+
import type { Options } from '../../src/types.js';
11+
import { officialArchs, officialPlatforms } from '../../dist/targets.js';
1212

1313
/**
1414
* Skip testing darwin/mas target on Windows since Electron Packager itself skips it

0 commit comments

Comments
 (0)