File tree Expand file tree Collapse file tree 3 files changed +54
-0
lines changed
Expand file tree Collapse file tree 3 files changed +54
-0
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ import { lit } from './lit';
2020import { lynx } from './lynx' ;
2121import { mdx } from './mdx' ;
2222import { mocha } from './mocha' ;
23+ import { moon } from './moon' ;
2324import { nativescript } from './nativescript' ;
2425import { nextjs } from './nextjs' ;
2526import { nodejs } from './nodejs' ;
@@ -62,6 +63,7 @@ import { yarn } from './yarn';
6263
6364// Export all tools sorted alphabetically by name
6465export const tools : Tool [ ] = [
66+ moon ,
6567 storybook ,
6668 webpack ,
6769 remix ,
Original file line number Diff line number Diff line change 1+ import type { Tool } from '../types' ;
2+
3+ export const moon : Tool = {
4+ icon : 'local' ,
5+ name : 'Moon' ,
6+ description : 'A task runner and monorepo management tool for the web ecosystem, written in Rust.' ,
7+ category : 'Monorepo Management Tool' ,
8+ docsLink : 'https://moonrepo.dev/moon' ,
9+ githubLink : 'https://github.com/moonrepo/moon' ,
10+ } ;
You can’t perform that action at this time.
0 commit comments