library1603
Advanced tools
Comparing version 0.0.1 to 0.0.2
@@ -158,4 +158,39 @@ { | ||
} | ||
}, | ||
"test-library-two": { | ||
"projectType": "library", | ||
"root": "projects/test-library-two", | ||
"sourceRoot": "projects/test-library-two/src", | ||
"prefix": "lib", | ||
"architect": { | ||
"build": { | ||
"builder": "@angular-devkit/build-ng-packagr:build", | ||
"options": { | ||
"tsConfig": "projects/test-library-two/tsconfig.lib.json", | ||
"project": "projects/test-library-two/ng-package.json" | ||
} | ||
}, | ||
"test": { | ||
"builder": "@angular-devkit/build-angular:karma", | ||
"options": { | ||
"main": "projects/test-library-two/src/test.ts", | ||
"tsConfig": "projects/test-library-two/tsconfig.spec.json", | ||
"karmaConfig": "projects/test-library-two/karma.conf.js" | ||
} | ||
}, | ||
"lint": { | ||
"builder": "@angular-devkit/build-angular:tslint", | ||
"options": { | ||
"tsConfig": [ | ||
"projects/test-library-two/tsconfig.lib.json", | ||
"projects/test-library-two/tsconfig.spec.json" | ||
], | ||
"exclude": [ | ||
"**/node_modules/**" | ||
] | ||
} | ||
} | ||
} | ||
}}, | ||
"defaultProject": "library1603" | ||
} |
{ | ||
"name": "library1603", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"scripts": { | ||
@@ -5,0 +5,0 @@ "ng": "ng", |
import { BrowserModule } from '@angular/platform-browser'; | ||
import { NgModule } from '@angular/core'; | ||
import { TestLibraryModule } from 'test-library'; | ||
import { TestLibraryTwoModule } from 'test-library-two'; | ||
import { AppRoutingModule } from './app-routing.module'; | ||
@@ -14,3 +15,4 @@ import { AppComponent } from './app.component'; | ||
AppRoutingModule, | ||
TestLibraryModule | ||
TestLibraryModule, | ||
TestLibraryTwoModule | ||
], | ||
@@ -17,0 +19,0 @@ providers: [], |
@@ -27,2 +27,8 @@ { | ||
"dist/test-library/*" | ||
], | ||
"test-library-two": [ | ||
"dist/test-library-two" | ||
], | ||
"test-library-two/*": [ | ||
"dist/test-library-two/*" | ||
] | ||
@@ -29,0 +35,0 @@ } |
Sorry, the diff of this file is not supported yet
40197
74
1122