Skip to content

Commit 1f377a9

Browse files
committed
chore: small fixes
1 parent 3f52d12 commit 1f377a9

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

.eslintignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
dist
22
node_modules
3-
src/parser.ts
3+
src/_parser.ts
4+
coverage

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,4 @@ types
66
.DS_Store
77
.eslintcache
88
*.log*
9-
*.conf*
109
*.env*

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const { defineCommand, runMain } = require("citty");
4545
Define main command to run:
4646

4747
```ts
48-
import { defineCommand, runMain } from "../src";
48+
import { defineCommand, runMain } from "citty";
4949

5050
const main = defineCommand({
5151
meta: {

build.config.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import { defineBuildConfig } from "unbuild";
2+
3+
export default defineBuildConfig({
4+
rollup: {
5+
inlineDependencies: true,
6+
},
7+
});

0 commit comments

Comments
 (0)