Skip to content

Commit

Permalink
Merge pull request #111 from Jasonlgrd/fix-build
Browse files Browse the repository at this point in the history
  • Loading branch information
Jasonlgrd authored Apr 5, 2024
2 parents 7313b26 + 47048de commit 57590ae
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
20 changes: 10 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"@types/jest": "^24.0.23",
"@types/node": "^12.7.12",
"@typescript-eslint/parser": "^2.8.0",
"@zeit/ncc": "^0.22.1",
"@vercel/ncc": "^0.38.1",
"eslint": "^5.16.0",
"eslint-plugin-github": "^2.0.0",
"eslint-plugin-jest": "^22.21.0",
Expand Down
6 changes: 3 additions & 3 deletions src/Term.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ import { exec } from "@actions/exec";
import hasYarn from "has-yarn";
import hasPNPM from "has-pnpm";

import process from 'node:process';
import path from 'node:path';
import fs from 'node:fs';
import process from 'process';
import path from 'path';
import fs from 'fs';

function hasBun(cwd = process.cwd()) {
return fs.existsSync(path.resolve(cwd, 'bun.lockb'));
Expand Down

0 comments on commit 57590ae

Please sign in to comment.