Skip to content

Commit

Permalink
Merge pull request #5 from raegen/releases/v5
Browse files Browse the repository at this point in the history
v0.0.5
  • Loading branch information
raegen authored Jan 7, 2024
2 parents 821ce24 + d67ec27 commit 81a5e65
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
6 changes: 5 additions & 1 deletion dist/setup.js

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

4 changes: 2 additions & 2 deletions package-lock.json

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

6 changes: 5 additions & 1 deletion src/setup.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
import { execSync } from 'node:child_process'
import { dirname, resolve } from 'node:path';

Check failure on line 2 in src/setup.ts

View workflow job for this annotation

GitHub Actions / Lint Codebase

Delete `;`

Check failure on line 2 in src/setup.ts

View workflow job for this annotation

GitHub Actions / Lint Codebase

Extra semicolon

execSync('npm install')
execSync(`${resolve(dirname(process.execPath), 'npm')} install`, {
stdio: 'inherit',

Check failure on line 5 in src/setup.ts

View workflow job for this annotation

GitHub Actions / Lint Codebase

Delete `··`
encoding: 'utf-8'

Check failure on line 6 in src/setup.ts

View workflow job for this annotation

GitHub Actions / Lint Codebase

Delete `··`
})

0 comments on commit 81a5e65

Please sign in to comment.