Browse Source

Fix linter error

Nicolás Venturo 6 năm trước cách đây
mục cha
commit
571fa7f4e7
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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');