Skip to content

Commit 20df354

Browse files
committed
update
1 parent b32fd93 commit 20df354

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/cli/src/actions/action-utils.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,8 @@ export function getPkgJsonConfig(startPath: string) {
105105
pkgJson.zenstack.output && typeof pkgJson.zenstack.output === 'string'
106106
? path.resolve(path.dirname(pkgJsonFile), pkgJson.zenstack.output)
107107
: undefined;
108-
result.seed = typeof pkgJson.zenstack.seed === 'string' && pkgJson.zenstack.seed ? pkgJson.seed : undefined;
108+
result.seed =
109+
typeof pkgJson.zenstack.seed === 'string' && pkgJson.zenstack.seed ? pkgJson.zenstack.seed : undefined;
109110
}
110111

111112
return result;

0 commit comments

Comments
 (0)