AdminLTE/build/npm/DocsPublish.js

59 lines
1.2 KiB
JavaScript
Raw Normal View History

2020-06-02 08:39:15 +00:00
#!/usr/bin/env node
2020-05-30 13:44:20 +00:00
'use strict'
2020-05-30 16:27:41 +00:00
const path = require('path')
2020-05-30 13:44:20 +00:00
const fse = require('fs-extra')
2021-02-14 13:27:47 +00:00
const fs = require('fs')
2020-05-30 16:27:41 +00:00
const Plugins = require('./DocsPlugins')
class Publish {
constructor() {
this.options = {
verbose: false
}
this.getArguments()
}
getArguments() {
if (process.argv.length > 2) {
2020-05-30 13:44:20 +00:00
const arg = process.argv[2]
switch (arg) {
case '-v':
case '--verbose':
this.options.verbose = true
break
default:
throw new Error(`Unknown option ${arg}`)
}
}
}
run() {
// Publish files
2020-05-30 13:44:20 +00:00
Plugins.forEach(module => {
try {
2020-05-30 16:27:41 +00:00
fse.copySync(module.from, module.to, {
// Skip copying dot files
filter(src) {
return !path.basename(src).startsWith('.')
}
})
if (this.options.verbose) {
console.log(`Copied ${module.from} to ${module.to}`)
}
2020-05-30 13:44:20 +00:00
} catch (error) {
console.error(`Error: ${error}`)
}
})
2021-02-14 13:27:47 +00:00
const insertText = '---\r\nlayout: page\r\ntitle: \r\n---\r\n'
fs.writeFileSync('docs/how-to-contribute.md', insertText + fs.readFileSync('.github/CONTRIBUTING.md', 'utf8'))
}
}
(new Publish()).run()