소스 검색

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');