はじまりの大地
このコミットが含まれているのは:
実行可能ファイル
+41
@@ -0,0 +1,41 @@
|
||||
import { program } from 'commander'
|
||||
import { isAbsolute } from 'path'
|
||||
import { initDatabaseModels } from '../../core/initializers/database.js'
|
||||
import { PluginManager } from '../../core/lib/plugins/plugin-manager.js'
|
||||
|
||||
program
|
||||
.option('-n, --npm-name [npmName]', 'Plugin to install')
|
||||
.option('-v, --plugin-version [pluginVersion]', 'Plugin version to install')
|
||||
.option('-p, --plugin-path [pluginPath]', 'Path of the plugin you want to install')
|
||||
.parse(process.argv)
|
||||
|
||||
const options = program.opts()
|
||||
|
||||
if (!options.npmName && !options.pluginPath) {
|
||||
console.error('You need to specify a plugin name with the desired version, or a plugin path.')
|
||||
process.exit(-1)
|
||||
}
|
||||
|
||||
if (options.pluginPath && !isAbsolute(options.pluginPath)) {
|
||||
console.error('Plugin path should be absolute.')
|
||||
process.exit(-1)
|
||||
}
|
||||
|
||||
run()
|
||||
.then(() => process.exit(0))
|
||||
.catch(err => {
|
||||
console.error(err)
|
||||
process.exit(-1)
|
||||
})
|
||||
|
||||
async function run () {
|
||||
await initDatabaseModels(true)
|
||||
|
||||
const toInstall = options.npmName || options.pluginPath
|
||||
await PluginManager.Instance.install({
|
||||
toInstall,
|
||||
version: options.pluginVersion,
|
||||
fromDisk: !!options.pluginPath,
|
||||
register: false
|
||||
})
|
||||
}
|
||||
実行可能ファイル
+29
@@ -0,0 +1,29 @@
|
||||
import { program } from 'commander'
|
||||
import { initDatabaseModels } from '@server/initializers/database.js'
|
||||
import { PluginManager } from '@server/lib/plugins/plugin-manager.js'
|
||||
|
||||
program
|
||||
.option('-n, --npm-name [npmName]', 'Package name to install')
|
||||
.parse(process.argv)
|
||||
|
||||
const options = program.opts()
|
||||
|
||||
if (!options.npmName) {
|
||||
console.error('You need to specify the plugin name.')
|
||||
process.exit(-1)
|
||||
}
|
||||
|
||||
run()
|
||||
.then(() => process.exit(0))
|
||||
.catch(err => {
|
||||
console.error(err)
|
||||
process.exit(-1)
|
||||
})
|
||||
|
||||
async function run () {
|
||||
|
||||
await initDatabaseModels(true)
|
||||
|
||||
const toUninstall = options.npmName
|
||||
await PluginManager.Instance.uninstall({ npmName: toUninstall, unregister: false })
|
||||
}
|
||||
新しい課題から参照
ユーザをブロックする