Skip to content

Commit

Permalink
chore: small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Mar 14, 2023
1 parent 3f52d12 commit 1f377a9
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
dist
node_modules
src/parser.ts
src/_parser.ts
coverage
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,4 @@ types
.DS_Store
.eslintcache
*.log*
*.conf*
*.env*
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const { defineCommand, runMain } = require("citty");
Define main command to run:

```ts
import { defineCommand, runMain } from "../src";
import { defineCommand, runMain } from "citty";

const main = defineCommand({
meta: {
Expand Down
7 changes: 7 additions & 0 deletions build.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { defineBuildConfig } from "unbuild";

export default defineBuildConfig({
rollup: {
inlineDependencies: true,
},
});

0 comments on commit 1f377a9

Please sign in to comment.