Skip to content

Commit b99d5de

Browse files
committed
fix tsdown entry
1 parent 4258569 commit b99d5de

File tree

5 files changed

+4
-5
lines changed

5 files changed

+4
-5
lines changed

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
node_modules
22

33
**/website/docs/api-reference
4+
**/website/docs/guide.old
45
**/website/versioned_docs
56
**/website/versioned_sidebars
67
.docusaurus

CONTRIBUTING.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ git checkout -b your-feature-or-bugfix
4949
3. Ensure that your changes don't break any existing functionality.
5050
You can test the functionality of your code depending on where
5151
you've made changes:
52-
5352
1. If you've made changes to the CommandKit package, you can use
5453
the "apps/test-bot" project to test your own bot. Just make sure
5554
to create a new `.env` file with the template from the

apps/website/docs/guide/14-useful-utilities/index.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,6 @@ try {
178178

179179
1. **Choose the right tool**: Think about what you're trying to
180180
achieve:
181-
182181
- Need to limit how often something happens? Use a rate limiter
183182
- Need to ensure only one thing accesses a resource? Use a mutex
184183
- Need to limit how many things happen at once? Use a semaphore

packages/commandkit/tsdown.config.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const macro = new MacroTransformer();
55

66
export default defineConfig({
77
format: ['cjs'],
8-
entry: ['src'],
8+
entry: ['src/**/*.ts'],
99
outDir: './dist',
1010
sourcemap: true,
1111
watch: false,

turbo.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
"ui": "tui",
44
"tasks": {
55
"build": {
6-
"dependsOn": ["^build"]
6+
"dependsOn": ["^lint", "^build", "lint"]
77
},
88
"lint": {
9-
"dependsOn": ["^build", "^lint"]
9+
"dependsOn": ["^build"]
1010
}
1111
}
1212
}

0 commit comments

Comments
 (0)