We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b32fd93 commit 20df354Copy full SHA for 20df354
packages/cli/src/actions/action-utils.ts
@@ -105,7 +105,8 @@ export function getPkgJsonConfig(startPath: string) {
105
pkgJson.zenstack.output && typeof pkgJson.zenstack.output === 'string'
106
? path.resolve(path.dirname(pkgJsonFile), pkgJson.zenstack.output)
107
: undefined;
108
- result.seed = typeof pkgJson.zenstack.seed === 'string' && pkgJson.zenstack.seed ? pkgJson.seed : undefined;
+ result.seed =
109
+ typeof pkgJson.zenstack.seed === 'string' && pkgJson.zenstack.seed ? pkgJson.zenstack.seed : undefined;
110
}
111
112
return result;
0 commit comments