Merge pull request #39 from trevyn/master

Add PACKAGE_JSON_INDENT setting
This commit is contained in:
Radek 2018-10-27 19:03:28 +01:00 committed by GitHub
commit 5e1783715e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 1 deletions

View File

@ -56,6 +56,7 @@ module.exports = {
SHORT: 'CUSTOM', SHORT: 'CUSTOM',
SILENT: false, SILENT: false,
PACKAGE_JSON_PATH: './package.json', PACKAGE_JSON_PATH: './package.json',
PACKAGE_JSON_INDENT: 4,
components: { components: {
AutoIncreaseVersion: true, AutoIncreaseVersion: true,
InjectAsComment: true, InjectAsComment: true,

View File

@ -113,7 +113,7 @@ export default class AutoIncreaseVersion {
// write new package.json file // write new package.json file
fs.writeFile( fs.writeFile(
path.resolve(this.context.config.PACKAGE_JSON_PATH), path.resolve(this.context.config.PACKAGE_JSON_PATH),
JSON.stringify(this.packageFile, null, 4), (err) => { JSON.stringify(this.packageFile, null, this.context.config.PACKAGE_JSON_INDENT), (err) => {
if (err) { if (err) {
this.reject(err); this.reject(err);
console.log(err); console.log(err);

View File

@ -2,6 +2,7 @@ export default {
SHORT: 'AIV_SHORT', SHORT: 'AIV_SHORT',
SILENT: false, SILENT: false,
PACKAGE_JSON_PATH: './package.json', PACKAGE_JSON_PATH: './package.json',
PACKAGE_JSON_INDENT: 4,
components: { components: {
AutoIncreaseVersion: true, AutoIncreaseVersion: true,
InjectAsComment: true, InjectAsComment: true,