-
Notifications
You must be signed in to change notification settings - Fork 2
Conversation
Codecov Report
@@ Coverage Diff @@
## master #9 +/- ##
==========================================
+ Coverage 99.67% 99.67% +<.01%
==========================================
Files 18 18
Lines 309 311 +2
Branches 37 37
==========================================
+ Hits 308 310 +2
Misses 1 1
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems that I should be able to write my app-extras.module.ts file like this, and it would work:
import {
NgModule
} from '@angular/core';
import {
SkyListModule,
SkyListToolbarModule
} from '@skyux/list-builder';
import {
SkyListViewGridModule
} from './public';
@NgModule({
exports: [
SkyListModule,
SkyListToolbarModule,
SkyListViewGridModule
]
})
export class AppExtrasModule { }
Is that correct?
@Blackbaud-SteveBrush Yes, that should work as long as you only use what they provide. However I don't think you can realistically use the SkyListViewGridModule without using SkyGridModule Here is the one I used for testing:
Is yours not working? I'll try to reduce mine down and see |
@Blackbaud-SteveBrush I have mine working with just:
You can see it here: https://github.com/blackbaud-conorwright/skyux-spa-my-test I presume your issue is not having SkyGridModule, but I can see a good case for including that in the exports of SkyListViewGridModule. Though it's weird since it isn't in that lib ;p Do you think we should include that in the exports of SkyListViewGridModule? |
The following app-extras.module.ts file will fail to serve (notice the barrel import for
|
@blackbaud-conorwright Looks like we have a few linting errors during the build. |
@Blackbaud-SteveBrush Ah yeah, I meant to move those up, but never pasted them ;p |
Resolves: #6
Docs: N/A