Skip to content

Commit

Permalink
Add in ZX at version 8.1.9 (#137)
Browse files Browse the repository at this point in the history
  • Loading branch information
asheliahut authored Oct 26, 2024
1 parent 45d2638 commit 0a575bf
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/zx/brioche.lock

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

22 changes: 22 additions & 0 deletions packages/zx/project.bri
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import * as std from "std";
import { npmInstallGlobal } from "nodejs";

export const project = {
name: "zx",
version: "8.1.9",
};

export default function zx() {
const recipe = npmInstallGlobal({
packageName: "zx",
version: project.version,
});

return std.withRunnableLink(recipe, "bin/zx");
}

export function test() {
return std.runBash`
zx --version | tee "$BRIOCHE_OUTPUT"
`.dependencies(zx());
}

0 comments on commit 0a575bf

Please sign in to comment.