Skip to content

Commit

Permalink
fix ivy build
Browse files Browse the repository at this point in the history
  • Loading branch information
acb122 committed Apr 25, 2020
1 parent f3ab684 commit 4f5b7eb
Show file tree
Hide file tree
Showing 5 changed files with 451 additions and 149 deletions.
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
"private": true,
"version": "0.0.0",
"devDependencies": {
"@angular/cli": "^8.0.0",
"@angular/common": "^8.0.0",
"@angular/compiler": "^8.0.0",
"@angular/compiler-cli": "^8.0.0",
"@angular/core": "^8.0.0",
"@angular/platform-browser": "^8.0.0",
"@angular/platform-browser-dynamic": "^8.0.0",
"@angular/cli": "^9.1.3",
"@angular/common": "^9.1.3",
"@angular/compiler": "^9.1.3",
"@angular/compiler-cli": "^9.1.3",
"@angular/core": "^9.1.3",
"@angular/platform-browser": "^9.1.3",
"@angular/platform-browser-dynamic": "^9.1.3",
"@compodoc/compodoc": "^1.1.9",
"@types/fs-extra": "^8.0.0",
"@types/jest": "^24.0.6",
Expand Down Expand Up @@ -37,8 +37,8 @@
"tsickle": "^0.36.0",
"tslib": "^1.9.0",
"tslint": "~5.17.0",
"typescript": ">=3.4 <3.5",
"zone.js": "~0.9.1"
"typescript": "3.8.3",
"zone.js": "~0.10.3"
},
"scripts": {
"lerna": "lerna",
Expand Down
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";
56 changes: 23 additions & 33 deletions tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -1,35 +1,25 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"declaration": true,
"paths": {
"@angular-skyhook/*/testing": [
"packages/*/dist/testing"
],
"@angular-skyhook/*": [
"packages/*/dist"
]
}
},
"include": [],
"exclude": [
"node_modules",
"dist",
"**/*.ngfactory.ts",
"**/*.spec.ts"
],
"files": [
"AUTOGENERATED"
],
"angularCompilerOptions": {
"annotateForClosureCompiler": true,
"flatModuleId": "AUTOGENERATED",
"flatModuleOutFile": "AUTOGENERATED",
"skipTemplateCodegen": true,
"strictMetadataEmit": true,
"fullTemplateTypeCheck": true,
"strictInjectionParameters": true,
"disableTypeScriptVersionCheck": true,
"enableResourceInlining": true
}
"extends": "./tsconfig.json",
"compilerOptions": {
"declaration": true,
"paths": {
"@angular-skyhook/*/testing": ["packages/*/dist/testing"],
"@angular-skyhook/*": ["packages/*/dist"]
}
},
"include": [],
"exclude": ["node_modules", "dist", "**/*.ngfactory.ts", "**/*.spec.ts"],
"files": ["AUTOGENERATED"],
"angularCompilerOptions": {
"annotateForClosureCompiler": true,
"enableIvy": false,
"flatModuleId": "AUTOGENERATED",
"flatModuleOutFile": "AUTOGENERATED",
"skipTemplateCodegen": true,
"strictMetadataEmit": true,
"fullTemplateTypeCheck": true,
"strictInjectionParameters": true,
"disableTypeScriptVersionCheck": true,
"enableResourceInlining": true
}
}
Loading

0 comments on commit 4f5b7eb

Please sign in to comment.