diff options
author | bscan <10503608+bscan@users.noreply.github.com> | 2024-04-05 22:22:13 -0400 |
---|---|---|
committer | bscan <10503608+bscan@users.noreply.github.com> | 2024-04-05 22:22:13 -0400 |
commit | 1b71cf36fad0de48d4bb78f673014e107979dd9b (patch) | |
tree | e027b48a9dbe4b68a8600e5006e9cf739e507c44 | |
parent | 69e4af49e4c37fa4b0d30d572347b61a7017b3cc (diff) | |
download | PerlNavigator-1b71cf36fad0de48d4bb78f673014e107979dd9b.zip |
Updated binary building to be webpacked, plus correcting workflow dependencies
-rw-r--r-- | .github/workflows/release.yml | 2 | ||||
-rw-r--r-- | package.json | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 28ca1e3..b1ca355 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -72,7 +72,7 @@ jobs: asset_content_type: application/octet-stream publish-release: - needs: [create-release] + needs: [build-release] runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 diff --git a/package.json b/package.json index fa08ac3..0467622 100644 --- a/package.json +++ b/package.json @@ -383,7 +383,7 @@ "clean": "rm -rf ./node-modules ./server/node-modules ./client/node-modules", "foo": "(cd client && npm ci && cd ../); (cd server && npm c )", "test": "sh ./scripts/e2e.sh", - "build-binary": "tsc -b && pkg .", + "build-binary": "npm run web-compile && pkg .", "open-in-browser": "vscode-test-web --browser=none --extensionDevelopmentPath=. ." }, "devDependencies": { |