mirror of https://github.com/ColorlibHQ/AdminLTE
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
813 B
42 lines
813 B
const Plugins = require('./Plugins')
|
|
const ncp = require('ncp').ncp
|
|
|
|
class Publish {
|
|
constructor() {
|
|
this.options = {
|
|
verbose: false
|
|
}
|
|
|
|
this.getArguments()
|
|
}
|
|
|
|
getArguments() {
|
|
if (process.argv.length > 2) {
|
|
let 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
|
|
Plugins.forEach((module) => {
|
|
ncp(module.from, module.to, error => {
|
|
if (error) {
|
|
console.error(`Error: ${error}`)
|
|
} else if (this.options.verbose) {
|
|
console.log(`Copied ${module.from} to ${module.to}`)
|
|
}
|
|
})
|
|
})
|
|
}
|
|
}
|
|
|
|
(new Publish()).run()
|