Skip to content

Commit

Permalink
fix: eject failed because config.styl not exist (#874)
Browse files Browse the repository at this point in the history
  • Loading branch information
ekoeryanto authored and ulivz committed Sep 28, 2018
1 parent 89d8a7a commit 6222170
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions packages/@vuepress/core/lib/eject.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,5 @@ module.exports = async (dir) => {
const source = require.resolve('@vuepress/theme-default')
const target = path.resolve(dir, '.vuepress/theme')
await fs.copy(source, target)
// remove the import to default theme override
const styleConfig = path.resolve(target, 'styles/config.styl')
const content = await fs.readFile(styleConfig, 'utf-8')
const transformed = content.split('\n').slice(0, -2).join('\n')
await fs.writeFile(styleConfig, transformed)
logger.success(`\nCopied default theme into ${chalk.cyan(target)}.\n`)
}

0 comments on commit 6222170

Please sign in to comment.