File tree Expand file tree Collapse file tree 19 files changed +1968
-37
lines changed Expand file tree Collapse file tree 19 files changed +1968
-37
lines changed Original file line number Diff line number Diff line change 1+ # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+ # dependencies
4+ /node_modules
5+ /.pnp
6+ .pnp.js
7+
8+ # testing
9+ /coverage
10+
11+ # next.js
12+ /.next /
13+ /out /
14+
15+ # production
16+ /build
17+
18+ # misc
19+ .DS_Store
20+ * .pem
21+
22+ # debug
23+ npm-debug.log *
24+ yarn-debug.log *
25+ yarn-error.log *
26+
27+ # local env files
28+ .env * .local
29+
30+ # vercel
31+ .vercel
32+
33+ # typescript
34+ * .tsbuildinfo
35+ next-env.d.ts
Original file line number Diff line number Diff line change 1+ const withNextra = require ( 'nextra' ) ( {
2+ theme : 'nextra-theme-docs' ,
3+ themeConfig : './theme.config.tsx' ,
4+ } ) ;
5+
6+ module . exports = withNextra ( ) ;
Original file line number Diff line number Diff line change 1+ {
2+ "name" : " commandkit-docs" ,
3+ "version" : " 0.0.0" ,
4+ "private" : true ,
5+ "scripts" : {
6+ "dev" : " next dev" ,
7+ "build" : " next build" ,
8+ "start" : " next start" ,
9+ "lint" : " next lint"
10+ },
11+ "dependencies" : {
12+ "@types/node" : " ^20.5.9" ,
13+ "@types/react" : " 18.2.22" ,
14+ "@types/react-dom" : " 18.2.7" ,
15+ "autoprefixer" : " 10.4.16" ,
16+ "next" : " 13.5.2" ,
17+ "nextra" : " ^2.12.3" ,
18+ "nextra-theme-docs" : " ^2.12.3" ,
19+ "postcss" : " 8.4.30" ,
20+ "react" : " 18.2.0" ,
21+ "react-dom" : " 18.2.0" ,
22+ "tailwindcss" : " 3.3.3" ,
23+ "typescript" : " ^5.1.6"
24+ }
25+ }
Original file line number Diff line number Diff line change 1+ import type { AppProps } from 'next/app' ;
2+ import '@/styles/globals.css' ;
3+
4+ export default function App ( { Component, pageProps } : AppProps ) {
5+ return < Component { ...pageProps } /> ;
6+ }
Original file line number Diff line number Diff line change 1+ import { Html , Head , Main , NextScript } from 'next/document' ;
2+
3+ export default function Document ( ) {
4+ return (
5+ < Html lang = "en" >
6+ < Head />
7+ < body >
8+ < Main />
9+ < NextScript />
10+ </ body >
11+ </ Html >
12+ ) ;
13+ }
Original file line number Diff line number Diff line change 1+ {
2+ "installation" : " Installation" ,
3+ "commandkit-setup" : " CommandKit Setup" ,
4+ "command-file-setup" : " Commands Setup" ,
5+ "event-file-setup" : " Events Setup" ,
6+ "validation-file-setup" : " Validations Setup" ,
7+ "migrating-from-djs-commander" : " Migrate from DJS-Commander"
8+ }
Original file line number Diff line number Diff line change 1+ # Commands Setup
Original file line number Diff line number Diff line change 1+ # CommandKit Setup
Original file line number Diff line number Diff line change 1+ # Events Setup
Original file line number Diff line number Diff line change 1+ # Guides
2+
3+ Welcome to the Command Kit guide
You can’t perform that action at this time.
0 commit comments