Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add examples #68

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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
5 changes: 5 additions & 0 deletions examples/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# citty examples

In this directory you can find some examples of how to use citty.

To learn more, you can read the [citty first hand tutorial on unjs.io](https://unjs.io/resources/learn/citty-101-first-hand).
Empty file added examples/args.ts
Empty file.
31 changes: 31 additions & 0 deletions examples/cleanup-commands.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
import { run } from "node:test";
import { defineCommand, runMain } from "citty";

const log = defineCommand({
meta: {
name: "log",
description: "Log a message",
},
run() {
console.log("Log");
}
});

const main = defineCommand({
meta: {
name: "cleanup",
description: "Cleanup your command after running it",
},
// Run after main or sub commands
cleanup(ctx) {
console.log("Cleanup", ctx); // Access to args, meta, etc.
},
// subCommands: {
// log,
// },
run() {
console.log("Main");
}
})

runMain(main);
14 changes: 14 additions & 0 deletions examples/hello-world.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import { defineCommand, runMain } from 'citty'

const main = defineCommand({
meta: {
name: 'hello-world',
version: '1.0.0',
description: 'The most basic command ever',
},
run() {
console.log('Hello World!')
}
})

runMain(main)
9 changes: 9 additions & 0 deletions examples/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"name": "examples",
"dependencies": {
"citty": "workspace:../src"
},
"devDependencies": {
"jiti": "^1.19.3"
}
}
27 changes: 27 additions & 0 deletions examples/setup-command.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
import { defineCommand, runMain } from "citty";

const log = defineCommand({
meta: {
name: "log",
description: "Log a message",
},
run() {
console.log("Log");
}
});

const main = defineCommand({
meta: {
name: "setup",
description: "Setup your command before running it",
},
// Run before main or sub commands
setup(ctx) {
console.log("Setup", ctx); // Access to args, meta, etc.
},
subCommands: {
log,
}
})

runMain(main);
23 changes: 23 additions & 0 deletions examples/sub-commands.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import { defineCommand, runMain } from "citty";

const log = defineCommand({
meta: {
name: "log",
description: "Log a message",
},
run() {
console.log("Log");
}
});

const main = defineCommand({
meta: {
name: "sub-commands",
description: "Example of sub-commands",
},
subCommands: {
log,
}
});

runMain(main);
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
"scripts": {
"build": "unbuild",
"dev": "vitest dev",
"lint": "eslint --cache --ext .ts,.js,.mjs,.cjs . && prettier -c src test",
"lint:fix": "eslint --cache --ext .ts,.js,.mjs,.cjs . --fix && prettier -c src test -w",
"lint": "eslint --cache --ext .ts,.js,.mjs,.cjs . && prettier -c src test playground examples",
"lint:fix": "eslint --cache --ext .ts,.js,.mjs,.cjs . --fix && prettier -c src test playground examples -w",
"prepack": "pnpm run build",
"play": "jiti ./playground/cli.ts",
"release": "pnpm test && changelogen --release --push && npm publish",
Expand All @@ -46,4 +46,4 @@
"vitest": "^0.34.3"
},
"packageManager": "[email protected]"
}
}
6 changes: 6 additions & 0 deletions playground/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"name": "playground",
"dependencies": {
"citty": "workspace:../src"
}
}
96 changes: 57 additions & 39 deletions pnpm-lock.yaml

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

4 changes: 4 additions & 0 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
packages:
- 'playground'
- 'src'
- 'examples'