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

@@ -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"
]
}