2
0

changes namespace

This commit is contained in:
2018-09-02 15:52:38 +02:00
parent 7397a300ef
commit 563ee0c156
21 changed files with 31 additions and 31 deletions

View File

@@ -125,7 +125,7 @@
"root": "projects/nls-guilloche",
"sourceRoot": "projects/nls-guilloche/src",
"projectType": "library",
"prefix": "lib",
"prefix": "nls",
"architect": {
"build": {
"builder": "@angular-devkit/build-ng-packagr:build",
@@ -163,4 +163,4 @@
}
},
"defaultProject": "nls-ng6-d3js-guilloche"
}
}

View File

@@ -5,4 +5,4 @@
"lib": {
"entryFile": "src/public_api.ts"
}
}
}

View File

@@ -1,7 +1,7 @@
{
"$schema": "../../node_modules/ng-packagr/ng-package.schema.json",
"dest": "../../dist/lib",
"dest": "../../dist/nls",
"lib": {
"entryFile": "src/public_api.ts"
}
}
}

View File

Before

Width:  |  Height:  |  Size: 223 B

After

Width:  |  Height:  |  Size: 223 B

View File

@@ -2,14 +2,14 @@
* Public API Surface of nls-guilloche
*/
export * from './lib/components/graphs.component';
export * from './lib/directives/guilloche.directive';
export * from './lib/models/config.model';
export * from './lib/models/graph.model';
export * from './lib/models/param.model';
export * from './lib/models/point.model';
export * from './lib/services/animation.service';
export * from './lib/services/canvas.service';
export * from './lib/services/graph.service';
export * from './lib/services/history.service';
export * from './lib/services/math.service';
export * from './nls/components/graphs.component';
export * from './nls/directives/guilloche.directive';
export * from './nls/models/config.model';
export * from './nls/models/graph.model';
export * from './nls/models/param.model';
export * from './nls/models/point.model';
export * from './nls/services/animation.service';
export * from './nls/services/canvas.service';
export * from './nls/services/graph.service';
export * from './nls/services/history.service';
export * from './nls/services/math.service';

View File

@@ -1,7 +1,7 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "../../out-tsc/lib",
"outDir": "../../out-tsc/nls",
"target": "es2015",
"module": "es2015",
"moduleResolution": "node",

View File

@@ -4,13 +4,13 @@
"directive-selector": [
true,
"attribute",
"lib",
"nls",
"camelCase"
],
"component-selector": [
true,
"element",
"lib",
"nls",
"kebab-case"
]
}

View File

@@ -22,11 +22,11 @@ import * as moment from 'moment';
import 'moment/min/locales';
import { environment as env } from '../environments/environment';
import { Config } from './../../projects/nls-guilloche/src/lib/models/config.model';
import { Graph } from './../../projects/nls-guilloche/src/lib/models/graph.model';
import { NlsCanvasService } from './../../projects/nls-guilloche/src/lib/services/canvas.service';
import { NlsHistoryService } from './../../projects/nls-guilloche/src/lib/services/history.service';
import { NlsGraphService } from './../../projects/nls-guilloche/src/lib/services/graph.service';
import { Config } from './../../projects/nls-guilloche/src/nls/models/config.model';
import { Graph } from './../../projects/nls-guilloche/src/nls/models/graph.model';
import { NlsCanvasService } from './../../projects/nls-guilloche/src/nls/services/canvas.service';
import { NlsHistoryService } from './../../projects/nls-guilloche/src/nls/services/history.service';
import { NlsGraphService } from './../../projects/nls-guilloche/src/nls/services/graph.service';
@Component({
selector: 'app-root',

View File

@@ -21,13 +21,13 @@ import { ReactiveFormsModule, FormsModule } from '@angular/forms';
import { MomentModule } from 'ngx-moment';
import { AppComponent } from './app.component';
import { NlsGraphsComponent } from './../../projects/nls-guilloche/src/lib/components/graphs.component';
import { NlsGuillocheDirective } from './../../projects/nls-guilloche/src/lib/directives/guilloche.directive';
import { NlsCanvasService } from './../../projects/nls-guilloche/src/lib/services/canvas.service';
import { NlsHistoryService } from './../../projects/nls-guilloche/src/lib/services/history.service';
import { NlsAnimationService } from './../../projects/nls-guilloche/src/lib/services/animation.service';
import { NlsMathService } from './../../projects/nls-guilloche/src/lib/services/math.service';
import { NlsGraphService } from './../../projects/nls-guilloche/src/lib/services/graph.service';
import { NlsGraphsComponent } from './../../projects/nls-guilloche/src/nls/components/graphs.component';
import { NlsGuillocheDirective } from './../../projects/nls-guilloche/src/nls/directives/guilloche.directive';
import { NlsCanvasService } from './../../projects/nls-guilloche/src/nls/services/canvas.service';
import { NlsHistoryService } from './../../projects/nls-guilloche/src/nls/services/history.service';
import { NlsAnimationService } from './../../projects/nls-guilloche/src/nls/services/animation.service';
import { NlsMathService } from './../../projects/nls-guilloche/src/nls/services/math.service';
import { NlsGraphService } from './../../projects/nls-guilloche/src/nls/services/graph.service';
@NgModule({
declarations: [