AdminLTE/build/npm/Publish.js
Abdullah Almsaeed 49fdbb2873 Fix #1689
2018-05-05 17:47:50 -04:00

42 lines
813 B
JavaScript

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()