mirror of
https://github.com/wahyd4/vuepress.git
synced 2026-08-09 05:16:23 +10:00
58 lines
1.7 KiB
JavaScript
58 lines
1.7 KiB
JavaScript
// create package.json and README for packages that don't have one yet
|
|
|
|
const fs = require('fs')
|
|
const { path } = require('@vuepress/shared-utils')
|
|
const baseVersion = require('../packages/@vuepress/core/package.json').version
|
|
|
|
const packagesDir = path.resolve(__dirname, '../packages/@vuepress')
|
|
const files = fs.readdirSync(packagesDir)
|
|
|
|
files.forEach(pkg => {
|
|
if (pkg.charAt(0) === '.') return
|
|
|
|
const isPlugin = /^plugin-/.test(pkg)
|
|
const desc = isPlugin
|
|
? `${pkg.replace('plugin-', '')} plugin for vuepress`
|
|
: `${pkg} for vuepress`
|
|
|
|
const pkgPath = path.join(packagesDir, pkg, `package.json`)
|
|
if (!fs.existsSync(pkgPath)) {
|
|
const json = {
|
|
'name': `@vuepress/${pkg}`,
|
|
'version': baseVersion,
|
|
'description': desc,
|
|
'main': 'index.js',
|
|
'publishConfig': {
|
|
'access': 'public'
|
|
},
|
|
'repository': {
|
|
'type': 'git',
|
|
'url': 'git+https://github.com/vuejs/vuepress.git'
|
|
},
|
|
'keywords': [
|
|
'documentation',
|
|
'vue',
|
|
'vuepress',
|
|
'generator'
|
|
],
|
|
'author': 'ULIVZ <chl814@foxmail.com>',
|
|
'license': 'MIT',
|
|
'bugs': {
|
|
'url': 'https://github.com/vuejs/vuepress/issues'
|
|
},
|
|
'homepage': `https://github.com/vuejs/vuepress/packages/@vuepress/${pkg}#readme`
|
|
}
|
|
fs.writeFileSync(pkgPath, JSON.stringify(json, null, 2))
|
|
}
|
|
|
|
const readmePath = path.join(packagesDir, pkg, `README.md`)
|
|
if (!fs.existsSync(readmePath)) {
|
|
fs.writeFileSync(readmePath, `# @vuepress/${pkg}\n\n> ${desc}`)
|
|
}
|
|
|
|
const npmIgnorePath = path.join(packagesDir, pkg, `.npmignore`)
|
|
if (!fs.existsSync(npmIgnorePath)) {
|
|
fs.writeFileSync(npmIgnorePath, `__tests__\n__mocks__`)
|
|
}
|
|
})
|