AdminLTE/build/npm/Publish.js

42 lines
813 B
JavaScript
Raw Normal View History

2018-03-17 18:07:55 +01:00
const Plugins = require('./Plugins')
2018-05-05 23:47:50 +02:00
const ncp = require('ncp').ncp
2018-03-17 18:07:55 +01:00
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) => {
2018-05-05 23:47:50 +02:00
ncp(module.from, module.to, error => {
2018-03-17 18:07:55 +01:00
if (error) {
console.error(`Error: ${error}`)
2018-05-05 23:47:50 +02:00
} else if (this.options.verbose) {
console.log(`Copied ${module.from} to ${module.to}`)
2018-03-17 18:07:55 +01:00
}
})
})
}
}
(new Publish()).run()