Revert "Applied prettier to code base"

This reverts commit c4f19465a6.
This commit is contained in:
Laurent Cozic
2018-03-09 20:59:12 +00:00
parent 5e8b09f5af
commit 55c5ddedf4
203 changed files with 7882 additions and 13354 deletions
+14 -14
View File
@@ -1,31 +1,31 @@
const { execCommand, githubRelease, handleCommitHook, githubOauthToken } = require("./tool-utils.js");
const path = require("path");
const { execCommand, githubRelease, handleCommitHook, githubOauthToken } = require('./tool-utils.js');
const path = require('path');
const rootDir = path.dirname(__dirname);
const appDir = rootDir + "/ElectronClient/app";
const appDir = rootDir + '/ElectronClient/app';
async function main() {
const oauthToken = await githubOauthToken();
process.chdir(appDir);
console.info("Running from: " + process.cwd());
console.info('Running from: ' + process.cwd());
const version = (await execCommand("npm version patch")).trim();
const version = (await execCommand('npm version patch')).trim();
const tagName = version;
console.info("New version number: " + version);
console.info('New version number: ' + version);
console.info(await execCommand("git add -A"));
console.info(await execCommand('git add -A'));
console.info(await execCommand('git commit -m "Electron release ' + version + '"'));
console.info(await execCommand("git tag " + tagName));
console.info(await execCommand("git push && git push --tags"));
console.info(await execCommand('git tag ' + tagName));
console.info(await execCommand('git push && git push --tags'));
const release = await githubRelease("joplin", tagName, true);
const release = await githubRelease('joplin', tagName, true);
console.info("Created GitHub release: " + release.html_url);
console.info('Created GitHub release: ' + release.html_url);
}
main().catch(error => {
console.error("Fatal error");
main().catch((error) => {
console.error('Fatal error');
console.error(error);
});
});