forked from gitopia/gitopia-mvp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmigrator.js
executable file
·38 lines (36 loc) · 1.14 KB
/
migrator.js
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
#!/usr/bin/env node
const fs = require("fs")
const path = require("path")
const { execSync } = require("child_process")
const prettier = require("prettier")
try {
execSync("yarn jest __tests__/checkWeNeedMigration.test.ts", {
cwd: path.resolve(__dirname, "..")
})
} catch (e) {
if (e.status === 1) {
const migratorPath = path.join(__dirname, "../src/migrator.json")
const jsonStr = fs.readFileSync(migratorPath).toString()
const migrator = JSON.parse(jsonStr)
const versions = Object.keys(migrator.migrations).map(n => Number(n))
const latest = Math.max(...versions)
const nextVersion = latest + 1
const newMigrator = {
version: nextVersion,
migrations: {
...migrator.migrations,
[nextVersion]: ["reuseConfigInState"]
}
}
fs.writeFileSync(
migratorPath,
prettier.format(JSON.stringify(newMigrator), { parser: "json" })
)
console.log("----")
console.log("created new migrator:", nextVersion, ["reuseConfigInState"])
console.log("----")
execSync("yarn jest __tests__/checkWeNeedMigration.test.ts -u", {
cwd: path.resolve(__dirname, "..")
})
}
}