Skip to content

Commit 3bd06de

Browse files
committed
Fix unknown command execSync in dist
THe previous release forgot to compile the changes
1 parent 30b463f commit 3bd06de

3 files changed

Lines changed: 28 additions & 47 deletions

File tree

.github/workflows/ci.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: ci
2+
on:
3+
pull_request:
4+
workflow_dispatch:
5+
push:
6+
branches:
7+
- master
8+
9+
concurrency:
10+
group: ${{ github.workflow }}-${{ github.ref }}
11+
cancel-in-progress: true
12+
13+
jobs:
14+
lint:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v4
18+
- name: Actionlint
19+
uses: eifinger/actionlint-action@23c85443d840cd73bbecb9cddfc933cc21649a38 # v1.9.1
20+
- uses: actions/setup-node@v4
21+
with:
22+
node-version: "20"
23+
- run: npm install
24+
- run: npm run all
25+
- name: Make sure no changes from linters are detected
26+
run: |
27+
git diff --exit-code || (echo "::error::Please run 'npm run all' to fix the issues" && exit 1)

.github/workflows/demo.yml

Lines changed: 0 additions & 46 deletions
This file was deleted.

dist/cleanup.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3658,7 +3658,7 @@ module.exports = require("util");
36583658
/******/
36593659
/************************************************************************/
36603660
var __webpack_exports__ = {};
3661-
const { execFileSync } = __nccwpck_require__(421);
3661+
const { execSync, execFileSync } = __nccwpck_require__(421);
36623662
const { keyFilePrefix } = __nccwpck_require__(334);
36633663
const { gitCmd, homePath, sshAgentCmd } = __nccwpck_require__(644);
36643664
const { alterGitConfigWithRetry } = __nccwpck_require__(561);

0 commit comments

Comments
 (0)