Skip to content

Commit

Permalink
chore: exclude signals from build/publish flow
Browse files Browse the repository at this point in the history
  • Loading branch information
markostanimirovic committed Aug 12, 2023
1 parent 0fcf137 commit 9e85a20
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion build/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down
3 changes: 2 additions & 1 deletion build/copy-schematics-core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion modules/signals/package.json
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 9e85a20

Please sign in to comment.