Merge pull request #39 from trevyn/master
Add PACKAGE_JSON_INDENT setting
This commit is contained in:
commit
5e1783715e
3 changed files with 3 additions and 1 deletions
|
@ -56,6 +56,7 @@ module.exports = {
|
|||
SHORT: 'CUSTOM',
|
||||
SILENT: false,
|
||||
PACKAGE_JSON_PATH: './package.json',
|
||||
PACKAGE_JSON_INDENT: 4,
|
||||
components: {
|
||||
AutoIncreaseVersion: true,
|
||||
InjectAsComment: true,
|
||||
|
|
|
@ -113,7 +113,7 @@ export default class AutoIncreaseVersion {
|
|||
// write new package.json file
|
||||
fs.writeFile(
|
||||
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) {
|
||||
this.reject(err);
|
||||
console.log(err);
|
||||
|
|
|
@ -2,6 +2,7 @@ export default {
|
|||
SHORT: 'AIV_SHORT',
|
||||
SILENT: false,
|
||||
PACKAGE_JSON_PATH: './package.json',
|
||||
PACKAGE_JSON_INDENT: 4,
|
||||
components: {
|
||||
AutoIncreaseVersion: true,
|
||||
InjectAsComment: true,
|
||||
|
|
Loading…
Reference in a new issue