Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix ivy build update angular #571

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions packages/core/public-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
/// <reference path="src/ambient.d.ts" />

export {
SkyhookDndModule,
BackendInput,
BackendFactoryInput
SkyhookDndModule,
BackendInput,
BackendFactoryInput,
} from "./src/dnd.module";

export { DragSourceMonitor } from "./src/source-monitor";
Expand All @@ -24,9 +24,10 @@ export { DropTargetSpec } from "./src/drop-target-specification";
export { DragSourceSpec } from "./src/drag-source-specification";

export {
DragSourceDirective,
DropTargetDirective,
DragPreviewDirective
DndDirective,
DragSourceDirective,
DropTargetDirective,
DragPreviewDirective,
} from "./src/dnd.directive";

export { Offset } from "./src/type-ish";
4 changes: 3 additions & 1 deletion packages/multi-backend/public-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@ export {
createTransition,
HTML5DragTransition,
TouchTransition,
MouseTransition
MouseTransition,
} from "dnd-multi-backend";

export { HTML5ToTouch, createDefaultMultiBackend } from "./src/HTML5ToTouch";
export { SkyhookMultiBackendModule } from "./src/module";
export { SkyhookPreviewComponent } from "./src/preview.component";
export { SkyhookPreviewRendererComponent } from "./src/preview-renderer.component";
3 changes: 2 additions & 1 deletion tsconfig.build.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@
"strictMetadataEmit": true,
"fullTemplateTypeCheck": true,
"strictInjectionParameters": true,
"disableTypeScriptVersionCheck": true,
"disableTypeScriptVersionCheck": true,
"enableIvy": false,
"enableResourceInlining": true
}
}