1
0
mirror of https://github.com/thangisme/notes.git synced 2025-10-14 14:14:32 -04:00

Initial commit

This commit is contained in:
Patrick Marsceill
2017-03-09 13:16:08 -05:00
commit b7b0d0d7bf
4147 changed files with 401224 additions and 0 deletions

27
node_modules/electron-to-chromium/automated-update.js generated vendored Normal file
View File

@@ -0,0 +1,27 @@
require('shelljs/global');
if (!which('git')) {
echo('Sorry, this script requires git');
exit(1);
}
if (!which('npm')) {
echo('Sorry, this script requires npm');
exit(1);
}
exec('npm run build', {silent:true});
exec('git status', {silent:true}, function(code, stdout, stderr) {
const indexHasUpdated = stdout.split('\n')[2] !== 'nothing to commit, working directory clean';
if(indexHasUpdated) {
exec('git add versions.js full-versions.js', {silent:true});
exec('git commit -m "generate new version"', {silent:true});
exec('npm version patch', {silent:true});
exec('git push origin master', {silent:true});
exec('git push --tags', {silent:true});
exec('npm publish', {silent:true});
echo('new version released.');
} else {
echo('nothing to do.');
exit(0);
}
});