Skip to content

Commit 3d710ce

Browse files
authored
fix(react): only add release config for publishable librarires (#30474)
1 parent cecd607 commit 3d710ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/react/src/generators/library/library.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ export async function libraryGeneratorInternal(host: Tree, schema: Schema) {
249249
tasks.push(componentTask);
250250
}
251251

252-
if (options.publishable || options.buildable) {
252+
if (options.publishable) {
253253
const projectConfiguration = readProjectConfiguration(host, options.name);
254254
if (options.isUsingTsSolutionConfig) {
255255
await addReleaseConfigForTsSolution(

0 commit comments

Comments
 (0)