mirror of
https://github.com/mattermost/focalboard.git
synced 2024-11-27 08:31:20 +02:00
42ddbbdd69
* chore: update docs URL for import/export/migrate * chore: reference `.boardarchive` in import scripts & READMEs
17 lines
416 B
TypeScript
17 lines
416 B
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import minimist from 'minimist'
|
|
import {run} from './jiraImporter'
|
|
|
|
async function main() {
|
|
const args: minimist.ParsedArgs = minimist(process.argv.slice(2))
|
|
|
|
const inputFile = args['i']
|
|
const outputFile = args['o'] || 'archive.boardarchive'
|
|
|
|
return run(inputFile, outputFile)
|
|
}
|
|
|
|
main()
|