Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ module.exports = {
sourceType: 'module',
},
rules: {
'comma-dangle': 'always-multiline',
'comma-dangle': ['error', 'always-multiline'],
},
}
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ repos:
- id: check-added-large-files
args:
- --maxkb=100
exclude: (dist/index.mjs|package-lock.json)
exclude: (dist/index.mjs|pnpm-lock.yaml)
- id: check-case-conflict
- id: check-executables-have-shebangs
- id: check-json
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ Thanks for your work [Siddhartha Varma](https://github.com/BRO3886).
## What's new

- First implementation is currently tested
- Runtime upgraded to Node 24 (GitHub Action runtime and package engine)
- `zx` upgraded to latest major (8.x)

## Usage

Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ outputs:
sha:
description: The commit sha for further referencing in your workflow
runs:
using: node16
using: node24
main: dist/index.mjs
104 changes: 104 additions & 0 deletions dist/c6f95349f0c3847fd34f.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
"use strict";
import "./deno.js"
import * as __module__ from "./index.cjs"
const {
VERSION,
YAML,
argv,
dotenv,
echo,
expBackoff,
fetch,
fs,
glob,
globby,
minimist,
nothrow,
parseArgv,
question,
quiet,
retry,
sleep,
spinner,
stdin,
tempdir,
tempfile,
tmpdir,
tmpfile,
updateArgv,
version,
versions,
$,
Fail,
ProcessOutput,
ProcessPromise,
bus,
cd,
chalk,
defaults,
kill,
log,
os,
path,
ps,
quote,
quotePowerShell,
resolveDefaults,
syncProcessCwd,
useBash,
usePowerShell,
usePwsh,
which,
within
} = globalThis.Deno ? globalThis.require("./index.cjs") : __module__
export {
VERSION,
YAML,
argv,
dotenv,
echo,
expBackoff,
fetch,
fs,
glob,
globby,
minimist,
nothrow,
parseArgv,
question,
quiet,
retry,
sleep,
spinner,
stdin,
tempdir,
tempfile,
tmpdir,
tmpfile,
updateArgv,
version,
versions,
$,
Fail,
ProcessOutput,
ProcessPromise,
bus,
cd,
chalk,
defaults,
kill,
log,
os,
path,
ps,
quote,
quotePowerShell,
resolveDefaults,
syncProcessCwd,
useBash,
usePowerShell,
usePwsh,
which,
within
}

Loading