Skip to content

Commit 389c398

Browse files
committed
fix(start): fix glitch with writing package.json without spaces
1 parent 1b92f8a commit 389c398

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/ionic/src/lib/project/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -541,7 +541,7 @@ export abstract class Project implements IProject {
541541
pkg.version = version ? version : '0.0.1';
542542
pkg.description = description ? description : 'An Ionic project';
543543

544-
await writeJson(this.packageJsonPath, pkg);
544+
await writeJson(this.packageJsonPath, pkg, { spaces: 2 });
545545

546546
const integrations = await this.getIntegrations();
547547

0 commit comments

Comments
 (0)