forked from vercel/next.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added next init command for starting a new project (vercel#15)
* Added next bootstrap command for starting a new project * renamed bootstrap to init and check we are not in a dir called pages * Removed extra empty line
- Loading branch information
1 parent
7a33108
commit 97ad053
Showing
2 changed files
with
57 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
#!/usr/bin/env node | ||
import { resolve, join, basename } from 'path' | ||
import parseArgs from 'minimist' | ||
import { exists, writeFile, mkdir } from 'mz/fs' | ||
|
||
const argv = parseArgs(process.argv.slice(2), { | ||
alias: { | ||
h: 'help' | ||
}, | ||
boolean: ['h'] | ||
}) | ||
|
||
const dir = resolve(argv._[0] || '.') | ||
|
||
exists(join(dir, 'package.json')) | ||
.then(async present => { | ||
if (basename(dir) === 'pages') { | ||
console.warn('Your root directory is named "pages". This looks suspicious. You probably want to go one directory up.') | ||
return | ||
} | ||
|
||
if (!present) { | ||
await writeFile(join(dir, 'package.json'), basePackage) | ||
} | ||
|
||
if (!await exists(join(dir, 'static'))) { | ||
await mkdir(join(dir, 'static')) | ||
} | ||
|
||
if (!await exists(join(dir, 'pages'))) { | ||
await mkdir(join(dir, 'pages')) | ||
await writeFile(join(dir, 'pages', 'index.js'), basePage) | ||
} | ||
}) | ||
.catch((err) => { | ||
console.error(err) | ||
exit(1) | ||
}) | ||
|
||
const basePackage = `{ | ||
"name": "my-app", | ||
"description": "my app", | ||
"dependencies": { | ||
"next": "latest" | ||
}, | ||
"scripts": { | ||
"dev": "next", | ||
"build": "next build", | ||
"start": "next start" | ||
} | ||
}` | ||
|
||
const basePage =` | ||
import React from 'react' | ||
export default () => <p>Hello, world</p> | ||
` |