Prettify JSON files
This commit is contained in:
@@ -15,7 +15,7 @@ var electron = require('electron-connect').server.create({
|
||||
});
|
||||
var packager = require('electron-packager');
|
||||
|
||||
var sources = ['**/*.js', '**/*.css', '**/*.html', '!**/node_modules/**', '!dist/**', '!release/**'];
|
||||
var sources = ['**/*.js', '**/*.json', '**/*.css', '**/*.html', '!**/node_modules/**', '!dist/**', '!release/**', '!**/test_config.json'];
|
||||
|
||||
gulp.task('prettify', ['prettify:sources', 'prettify:jsx']);
|
||||
gulp.task('prettify:verify', ['prettify:sources:verify', 'prettify:jsx:verify'])
|
||||
|
@@ -60,7 +60,7 @@
|
||||
"synopsis": "Mattermost Desktop"
|
||||
}
|
||||
},
|
||||
"directories":{
|
||||
"directories": {
|
||||
"buildResources": "resources",
|
||||
"app": "dist",
|
||||
"output": "release"
|
||||
|
@@ -13,7 +13,7 @@ const electron_binary_path = (function() {
|
||||
return path.join(source_root_dir, 'node_modules/electron-prebuilt/dist/electron' + exe_extension);
|
||||
}
|
||||
})();
|
||||
const config_file_path = path.join(source_root_dir, 'test_config.json');
|
||||
const config_file_path = path.join(source_root_dir, 'test/test_config.json');
|
||||
const mattermost_url = 'http://example.com/team';
|
||||
|
||||
var options = {
|
||||
|
Reference in New Issue
Block a user