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", "root": "projects/nls-guilloche",
"sourceRoot": "projects/nls-guilloche/src", "sourceRoot": "projects/nls-guilloche/src",
"projectType": "library", "projectType": "library",
"prefix": "lib", "prefix": "nls",
"architect": { "architect": {
"build": { "build": {
"builder": "@angular-devkit/build-ng-packagr:build", "builder": "@angular-devkit/build-ng-packagr:build",

View File

@@ -1,6 +1,6 @@
{ {
"$schema": "../../node_modules/ng-packagr/ng-package.schema.json", "$schema": "../../node_modules/ng-packagr/ng-package.schema.json",
"dest": "../../dist/lib", "dest": "../../dist/nls",
"lib": { "lib": {
"entryFile": "src/public_api.ts" "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 * Public API Surface of nls-guilloche
*/ */
export * from './lib/components/graphs.component'; export * from './nls/components/graphs.component';
export * from './lib/directives/guilloche.directive'; export * from './nls/directives/guilloche.directive';
export * from './lib/models/config.model'; export * from './nls/models/config.model';
export * from './lib/models/graph.model'; export * from './nls/models/graph.model';
export * from './lib/models/param.model'; export * from './nls/models/param.model';
export * from './lib/models/point.model'; export * from './nls/models/point.model';
export * from './lib/services/animation.service'; export * from './nls/services/animation.service';
export * from './lib/services/canvas.service'; export * from './nls/services/canvas.service';
export * from './lib/services/graph.service'; export * from './nls/services/graph.service';
export * from './lib/services/history.service'; export * from './nls/services/history.service';
export * from './lib/services/math.service'; export * from './nls/services/math.service';

View File

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

View File

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

View File

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

View File

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