diff --git a/build/config.ts b/build/config.ts index b07020ae9b..62b6f05848 100644 --- a/build/config.ts +++ b/build/config.ts @@ -20,7 +20,8 @@ export const packages: PackageDescription[] = fs return false; } - if (path.includes('eslint-plugin')) { + // TODO: Remove signals when released as a stable package + if (path.includes('eslint-plugin') || path.includes('signals')) { return false; } diff --git a/build/copy-schematics-core.ts b/build/copy-schematics-core.ts index 3e1a052eb0..5242857568 100644 --- a/build/copy-schematics-core.ts +++ b/build/copy-schematics-core.ts @@ -8,7 +8,8 @@ const copySchematics = createBuilder([ copySchematics({ scope: '@ngrx', - packages, + // TODO: Remove signals when released as a stable package + packages: [...packages, { name: 'signals' }], }).catch((err) => { console.error(err); process.exit(1); diff --git a/modules/signals/package.json b/modules/signals/package.json index 083c2a8920..0eb2a8e515 100644 --- a/modules/signals/package.json +++ b/modules/signals/package.json @@ -1,7 +1,7 @@ { "name": "@ngrx/signals", "version": "0.0.0", - "description": "Powerful Extensions for Angular Signals", + "description": "Reactive State Management with Angular Signals", "repository": { "type": "git", "url": "https://github.com/ngrx/platform.git"