chore: fix json parsing for npm publish (#16318)

This commit is contained in:
Shelley Vohr 2019-01-07 20:37:44 -08:00 коммит произвёл GitHub
Родитель a3e5173c47
Коммит 791d6de8b0
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -41,7 +41,7 @@
"scripts": {
"asar": "asar",
"browserify": "browserify",
"bump-version": "./script/bump-version.py",
"bump-version": "./script/bump-version.js",
"check-tls": "python ./script/tls.py",
"clang-format": "find atom/ chromium_src/ -iname *.h -o -iname *.cc -o -iname *.mm | xargs clang-format -i",
"lint": "node ./script/lint.js && npm run lint:clang-format && npm run lint:docs",

Просмотреть файл

@ -120,7 +120,7 @@ new Promise((resolve, reject) => {
npmTag = `nightly-${currentBranch}`
}
const currentJson = JSON.stringify(fs.readFileSync(path.join(tempDir, 'package.json'), 'utf8'))
const currentJson = JSON.parse(fs.readFileSync(path.join(tempDir, 'package.json'), 'utf8'))
currentJson.name = 'electron-nightly'
rootPackageJson.name = 'electron-nightly'