Skip to content

Commit

Permalink
Fix lint (#135)
Browse files Browse the repository at this point in the history
  • Loading branch information
andykog authored Dec 4, 2024
1 parent 27c4fae commit acf63f1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"lerna": "2.4.0",
"version": "0.9.30",
"version": "0.9.31",
"packages": ["packages/*"]
}
10 changes: 5 additions & 5 deletions scripts/bump-version.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ lernaJson.version = newVersion;
fs.writeFileSync('./lerna.json', JSON.stringify(lernaJson, null, 4), 'utf8');

[
[mobxDevtools, './packages/mobx-devtools/package.json'],
[mobxDevtoolsMst, './packages/mobx-devtools-mst/package.json'],
[playground, './packages/playground/package.json'],
[mobxDevtools, './packages/mobx-devtools/package.json'],
[mobxDevtoolsMst, './packages/mobx-devtools-mst/package.json'],
[playground, './packages/playground/package.json'],
].forEach(([pkg, path]) => {
pkg.version = newVersion;
fs.writeFileSync(path, JSON.stringify(pkg, null, 4), 'utf8');
pkg.version = newVersion;
fs.writeFileSync(path, JSON.stringify(pkg, null, 4), 'utf8');
});

0 comments on commit acf63f1

Please sign in to comment.