-
Notifications
You must be signed in to change notification settings - Fork 226
/
Copy pathmigrate-init
executable file
·60 lines (50 loc) · 1.7 KB
/
migrate-init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/env node
// vim: set ft=javascript:
'use strict'
const program = require('commander')
const mkdirp = require('mkdirp')
const dotenv = require('dotenv')
const path = require('path')
const log = require('../lib/log')
const pkg = require('../package.json')
const registerCompiler = require('../lib/register-compiler')
program
.version(pkg.version)
.option('-f, --state-file <path>', 'Set path to state file', '.migrate')
.option('-s, --store <store>', 'Set the migrations store', path.join(__dirname, '..', 'lib', 'file-store'))
.option('--migrations-dir <dir>', 'Change the migrations directory name', 'migrations')
.option('--compiler <ext:module>', 'Use the given module to compile files')
.option('-c, --chdir [dir]', 'Change the working directory', process.cwd())
.option('--env [name]', 'Use dotenv to load an environment file')
.parse(process.argv)
// Change the working dir
process.chdir(program.chdir)
// Setup environment
if (program.env) {
const e = dotenv.config({
path: typeof program.env === 'string' ? program.env : '.env'
})
if (e && e.error instanceof Error) {
throw e.error
}
}
// Load compiler
if (program.compiler) {
registerCompiler(program.compiler)
}
// Setup store
if (program.store[0] === '.') program.store = path.join(process.cwd(), program.store)
const StoreImport = require(program.store)
const Store = StoreImport.default || StoreImport
const store = new Store(program.stateFile)
// Create migrations dir path
const p = path.resolve(process.cwd(), program.migrationsDir)
log('migrations dir', p)
mkdirp.sync(p)
// Call store init
if (typeof store.init === 'function') {
store.init(function (err) {
if (err) return log.error(err)
log('init')
})
}