Skip to content

Commit

Permalink
feat(customer-order)!: move error matcher injection token to state su…
Browse files Browse the repository at this point in the history
…bpackage (#2645)

BREAKING CHANGE: error matcher injection token has moved to state subpackage
  • Loading branch information
griest024 committed Dec 11, 2023
1 parent a6ecaea commit 929e6ac
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion libs/customer-order/src/public_api.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from './injection-tokens/public_api';
export {};
8 changes: 8 additions & 0 deletions libs/customer-order/state/ng-package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"$schema": "../../../node_modules/ng-packagr/ng-package.schema.json",
"dest": "../../dist/customer-order/state",
"deleteDestPath": false,
"lib": {
"entryFile": "src/index.ts"
}
}
1 change: 1 addition & 0 deletions libs/customer-order/state/src/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './public_api';
1 change: 1 addition & 0 deletions libs/customer-order/state/src/public_api.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './injection-tokens/public_api';
3 changes: 3 additions & 0 deletions libs/customer-order/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
"@daffodil/customer-order": [
"libs/customer-order/src"
],
"@daffodil/customer-order/state": [
"libs/customer-order/state/src"
],
"@daffodil/customer-order/driver": [
"libs/customer-order/driver/src"
],
Expand Down

0 comments on commit 929e6ac

Please sign in to comment.