2018-03-17 17:07:55 +00:00
|
|
|
const Plugins = require('./Plugins')
|
2019-07-20 08:50:19 +00:00
|
|
|
const fse = require('fs-extra')
|
2018-03-17 17:07:55 +00: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) => {
|
2019-09-19 07:02:07 +00:00
|
|
|
try {
|
2019-10-03 11:51:18 +00:00
|
|
|
if (fse.existsSync(module.from)) {
|
|
|
|
fse.copySync(module.from, module.to)
|
|
|
|
} else {
|
|
|
|
fse.copySync(module.from.replace('node_modules/', '../'), module.to)
|
|
|
|
}
|
2019-09-19 07:02:07 +00:00
|
|
|
|
|
|
|
if (this.options.verbose) {
|
2018-05-05 21:47:50 +00:00
|
|
|
console.log(`Copied ${module.from} to ${module.to}`)
|
2018-03-17 17:07:55 +00:00
|
|
|
}
|
2019-09-19 07:02:07 +00:00
|
|
|
} catch (err) {
|
|
|
|
console.error(`Error: ${err}`)
|
|
|
|
}
|
2018-03-17 17:07:55 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
(new Publish()).run()
|