continue test integration

This commit is contained in:
Edouard DUPIN 2024-04-02 22:48:31 +02:00
parent 0e609cb755
commit ef0cba3b2a
4 changed files with 14 additions and 14 deletions

View File

@ -1,6 +1,7 @@
{ {
"name": "@kangaroo-and-rabbit/kar-cw", "name": "@kangaroo-and-rabbit/kar-cw",
"version": "0.1.5", "version": "0.1.5",
"rootDir": "src",
"peerDependencies": { "peerDependencies": {
"@angular/common": "^17.3.0", "@angular/common": "^17.3.0",
"@angular/core": "^17.3.0" "@angular/core": "^17.3.0"
@ -8,5 +9,6 @@
"dependencies": { "dependencies": {
"tslib": "^2.3.0" "tslib": "^2.3.0"
}, },
"sideEffects": false "sideEffects": false,
"exports": "./src/**/*"
} }

View File

@ -11,13 +11,14 @@ import { ALL_COMPONENTS } from "./kar-cw.component";
import { ALL_SCENES } from "./kar-cw.scene"; import { ALL_SCENES } from "./kar-cw.scene";
import { ALL_SERVICES } from "./kar-cw.service"; import { ALL_SERVICES } from "./kar-cw.service";
import { ALL_GUARDS } from "./kar-cw.guard"; import { ALL_GUARDS } from "./kar-cw.guard";
import { DataStore, DataTools } from "./utils";
@NgModule({ @NgModule({
declarations: [ declarations: [
...ALL_COMPONENTS, ...ALL_COMPONENTS,
...ALL_SCENES ...ALL_SCENES,
], ],
imports: [ imports: [
FormsModule, FormsModule,

View File

@ -2,14 +2,4 @@
* Public API Surface of kar-cw * Public API Surface of kar-cw
*/ */
export * from './kar-cw.service'; export * from './public-api';
export * from './kar-cw.module';
export * from './kar-cw.component';
export * from './kar-cw.scene';
export * from './kar-cw.guard';
export * from './utils';
export * from './service';
export * from './scene';
export * from './popin';
export * from './model';
export * from './component';

View File

@ -10,5 +10,12 @@
}, },
"exclude": [ "exclude": [
"**/*.spec.ts" "**/*.spec.ts"
] ],
"include": [
"**/*.ts"
],
"scripts": true,
"styles": true,
"hidden": false,
"vendor": true
} }