Skip to content
This repository was archived by the owner on Aug 31, 2022. It is now read-only.

Commit c63b37f

Browse files
committed
fix(install): support yarn workspaces
1 parent e3e9728 commit c63b37f

File tree

1 file changed

+7
-3
lines changed
  • packages/generator-semantic-module/src/generators/app

1 file changed

+7
-3
lines changed

packages/generator-semantic-module/src/generators/app/index.js

+7-3
Original file line numberDiff line numberDiff line change
@@ -161,8 +161,12 @@ You can always run create-semantic-module again and select a different option.`)
161161
}
162162

163163
const packager = this.config.get(options.packager);
164-
this.runInstall(packager, packages, {
165-
[packager === 'yarn' ? 'dev' : 'save-dev']: true
166-
});
164+
const installFlags = packager === 'yarn' ? {
165+
dev: true,
166+
'ignore-workspace-root-check': true
167+
} : {
168+
'save-dev': true
169+
};
170+
this.runInstall(packager, packages, installFlags);
167171
}
168172
};

0 commit comments

Comments
 (0)