mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-26 23:52:06 +00:00
Delete nuxt-init, use nuxt/starter instead
This commit is contained in:
parent
fc25b2eaa8
commit
a1ae04dad6
@ -1,81 +0,0 @@
|
||||
#!/usr/bin/env node
|
||||
|
||||
const co = require('co')
|
||||
const fs = require('fs-extra')
|
||||
const pify = require('pify')
|
||||
const { resolve, join, basename } = require('path')
|
||||
const { existsSync, writeFile } = require('fs')
|
||||
const mkdirp = pify(fs.mkdirp)
|
||||
|
||||
const rootDir = resolve(process.argv.slice(2)[0] || '.')
|
||||
|
||||
if (basename(rootDir) === 'pages') {
|
||||
console.warn('Your root directory is named "pages". This looks suspicious. You probably want to go one directory up.')
|
||||
process.exit(0)
|
||||
}
|
||||
|
||||
co(function * () {
|
||||
yield new Promise((resolve) => setTimeout(resolve, 0)) // avoid undefined variables basePackage, etc.
|
||||
if (!existsSync(rootDir)) {
|
||||
yield mkdirp(rootDir)
|
||||
}
|
||||
if (!existsSync(join(rootDir, 'package.json'))) {
|
||||
yield pify(writeFile)(join(rootDir, 'package.json'), basePackage.replace(/my-app/g, basename(rootDir)))
|
||||
}
|
||||
if (!existsSync(join(rootDir, 'nuxt.config.js'))) {
|
||||
yield pify(writeFile)(join(rootDir, 'nuxt.config.js'), baseConfig)
|
||||
}
|
||||
if (!existsSync(join(rootDir, 'static'))) {
|
||||
yield mkdirp(join(rootDir, 'static'))
|
||||
}
|
||||
if (!existsSync(join(rootDir, 'pages'))) {
|
||||
yield mkdirp(join(rootDir, 'pages'))
|
||||
yield pify(writeFile)(join(rootDir, 'pages', 'index.vue'), basePage)
|
||||
}
|
||||
})
|
||||
.then(() => {
|
||||
console.log('Nuxt project [' + basename(rootDir) + '] created')
|
||||
})
|
||||
.catch((err) => {
|
||||
console.error(err)
|
||||
process.exit(1)
|
||||
})
|
||||
|
||||
const basePackage = `{
|
||||
"name": "my-app",
|
||||
"description": "",
|
||||
"dependencies": {
|
||||
"nuxt": "latest"
|
||||
},
|
||||
"scripts": {
|
||||
"start": "nuxt"
|
||||
}
|
||||
}
|
||||
`
|
||||
|
||||
const baseConfig = `module.exports = {
|
||||
// Nuxt.js configuration file
|
||||
// Please look at https://nuxtjs.org/guide/configuration
|
||||
}
|
||||
`
|
||||
|
||||
const basePage = `<template>
|
||||
<p>Hello {{ name }}!</p>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data () {
|
||||
return { name: 'world' }
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
p {
|
||||
font-size: 20px;
|
||||
text-align: center;
|
||||
padding: 100px;
|
||||
}
|
||||
</style>
|
||||
`
|
Loading…
Reference in New Issue
Block a user