Skip to content

Commit acf63f1

Browse files
authored
Fix lint (#135)
1 parent 27c4fae commit acf63f1

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"lerna": "2.4.0",
3-
"version": "0.9.30",
3+
"version": "0.9.31",
44
"packages": ["packages/*"]
55
}

scripts/bump-version.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ lernaJson.version = newVersion;
1313
fs.writeFileSync('./lerna.json', JSON.stringify(lernaJson, null, 4), 'utf8');
1414

1515
[
16-
[mobxDevtools, './packages/mobx-devtools/package.json'],
17-
[mobxDevtoolsMst, './packages/mobx-devtools-mst/package.json'],
18-
[playground, './packages/playground/package.json'],
16+
[mobxDevtools, './packages/mobx-devtools/package.json'],
17+
[mobxDevtoolsMst, './packages/mobx-devtools-mst/package.json'],
18+
[playground, './packages/playground/package.json'],
1919
].forEach(([pkg, path]) => {
20-
pkg.version = newVersion;
21-
fs.writeFileSync(path, JSON.stringify(pkg, null, 4), 'utf8');
20+
pkg.version = newVersion;
21+
fs.writeFileSync(path, JSON.stringify(pkg, null, 4), 'utf8');
2222
});

0 commit comments

Comments
 (0)