File tree Expand file tree Collapse file tree 5 files changed +4
-5
lines changed
apps/website/docs/guide/14-useful-utilities Expand file tree Collapse file tree 5 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 11node_modules
22
33** /website /docs /api-reference
4+ ** /website /docs /guide.old
45** /website /versioned_docs
56** /website /versioned_sidebars
67.docusaurus
Original file line number Diff line number Diff line change @@ -49,7 +49,6 @@ git checkout -b your-feature-or-bugfix
49493 . 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
Original file line number Diff line number Diff line change @@ -178,7 +178,6 @@ try {
178178
1791791 . ** 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
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ const macro = new MacroTransformer();
55
66export default defineConfig ( {
77 format : [ 'cjs' ] ,
8- entry : [ 'src' ] ,
8+ entry : [ 'src/**/*.ts ' ] ,
99 outDir : './dist' ,
1010 sourcemap : true ,
1111 watch : false ,
Original file line number Diff line number Diff line change 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}
You can’t perform that action at this time.
0 commit comments