ソースを参照

Fix linter error

Nicolás Venturo 6 年 前
コミット
571fa7f4e7
1 ファイル変更1 行追加1 行削除
  1. 1 1
      scripts/release/synchronize-versions.js

+ 1 - 1
scripts/release/synchronize-versions.js

@@ -10,7 +10,7 @@ const cp = require('child_process');
 setVersion('contracts/package.json');
 setVersion('ethpm.json');
 
-function setVersion(file) {
+function setVersion (file) {
   const json = JSON.parse(fs.readFileSync(file));
   json.version = process.env.npm_package_version;
   fs.writeFileSync(file, JSON.stringify(json, null, 2) + '\n');