Skip to content

Commit

Permalink
fix: workaround ng-packagr running into max stack size on form package
Browse files Browse the repository at this point in the history
  • Loading branch information
James Salas committed Jan 7, 2019
1 parent a3c10fd commit 26c697b
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/form/src/connect-array/connect-array.module.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { NgModule } from '@angular/core';

import { ConnectArrayDirective } from './connect-array';
import { ConnectArrayDirective } from './connect-array.directive';

const declarations = [ConnectArrayDirective];

Expand Down
2 changes: 1 addition & 1 deletion packages/form/src/connect-array/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export * from './connect-array.module';
export * from './connect-array';
export * from './connect-array.directive';
export * from './connect-array-template';
File renamed without changes.
2 changes: 1 addition & 1 deletion packages/form/src/connect/connect.module.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { NgModule } from '@angular/core';

import { ConnectDirective } from './connect';
import { ConnectDirective } from './connect.directive';
import { ReactiveConnectDirective } from './connect-reactive';

const declarations = [ConnectDirective, ReactiveConnectDirective];
Expand Down
2 changes: 1 addition & 1 deletion packages/form/src/connect/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export * from './connect-base';
export * from './connect-reactive';
export * from './connect.module';
export * from './connect';
export * from './connect.directive';

0 comments on commit 26c697b

Please sign in to comment.