Skip to content

Commit 20217de

Browse files
committed
feat(tools): add Moon tool with SVG icon and update tools list
1 parent bb50a84 commit 20217de

File tree

3 files changed

+54
-0
lines changed

3 files changed

+54
-0
lines changed

src/assets/icons/moon.svg

Lines changed: 42 additions & 0 deletions
Loading

src/data/tools/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ import { lit } from './lit';
2020
import { lynx } from './lynx';
2121
import { mdx } from './mdx';
2222
import { mocha } from './mocha';
23+
import { moon } from './moon';
2324
import { nativescript } from './nativescript';
2425
import { nextjs } from './nextjs';
2526
import { nodejs } from './nodejs';
@@ -62,6 +63,7 @@ import { yarn } from './yarn';
6263

6364
// Export all tools sorted alphabetically by name
6465
export const tools: Tool[] = [
66+
moon,
6567
storybook,
6668
webpack,
6769
remix,

src/data/tools/moon.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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+
};

0 commit comments

Comments
 (0)