ets-fe-ng-sdk 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,24 @@
1
+ # EtsFeNgSdk
2
+
3
+ This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 15.0.0.
4
+
5
+ ## Code scaffolding
6
+
7
+ Run `ng generate component component-name --project ets-fe-ng-sdk` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project ets-fe-ng-sdk`.
8
+ > Note: Don't forget to add `--project ets-fe-ng-sdk` or else it will be added to the default project in your `angular.json` file.
9
+
10
+ ## Build
11
+
12
+ Run `ng build ets-fe-ng-sdk` to build the project. The build artifacts will be stored in the `dist/` directory.
13
+
14
+ ## Publishing
15
+
16
+ After building your library with `ng build ets-fe-ng-sdk`, go to the dist folder `cd dist/ets-fe-ng-sdk` and run `npm publish`.
17
+
18
+ ## Running unit tests
19
+
20
+ Run `ng test ets-fe-ng-sdk` to execute the unit tests via [Karma](https://karma-runner.github.io).
21
+
22
+ ## Further help
23
+
24
+ To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
@@ -0,0 +1,7 @@
1
+ {
2
+ "$schema": "../../node_modules/ng-packagr/ng-package.schema.json",
3
+ "dest": "../../dist/ets-fe-ng-sdk",
4
+ "lib": {
5
+ "entryFile": "src/public-api.ts"
6
+ }
7
+ }
package/package.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "ets-fe-ng-sdk",
3
+ "version": "0.0.1",
4
+ "peerDependencies": {
5
+ "@angular/common": "^15.0.0",
6
+ "@angular/core": "^15.0.0"
7
+ },
8
+ "dependencies": {
9
+ "tslib": "^2.3.0"
10
+ },
11
+ "private":false
12
+ }
@@ -0,0 +1,23 @@
1
+ import { ComponentFixture, TestBed } from '@angular/core/testing';
2
+
3
+ import { EtsFeNgSdkComponent } from './ets-fe-ng-sdk.component';
4
+
5
+ describe('EtsFeNgSdkComponent', () => {
6
+ let component: EtsFeNgSdkComponent;
7
+ let fixture: ComponentFixture<EtsFeNgSdkComponent>;
8
+
9
+ beforeEach(async () => {
10
+ await TestBed.configureTestingModule({
11
+ declarations: [ EtsFeNgSdkComponent ]
12
+ })
13
+ .compileComponents();
14
+
15
+ fixture = TestBed.createComponent(EtsFeNgSdkComponent);
16
+ component = fixture.componentInstance;
17
+ fixture.detectChanges();
18
+ });
19
+
20
+ it('should create', () => {
21
+ expect(component).toBeTruthy();
22
+ });
23
+ });
@@ -0,0 +1,15 @@
1
+ import { Component } from '@angular/core';
2
+
3
+ @Component({
4
+ selector: 'lib-ets-fe-ng-sdk',
5
+ template: `
6
+ <p>
7
+ ets-fe-ng-sdk works!
8
+ </p>
9
+ `,
10
+ styles: [
11
+ ]
12
+ })
13
+ export class EtsFeNgSdkComponent {
14
+
15
+ }
@@ -0,0 +1,16 @@
1
+ import { NgModule } from '@angular/core';
2
+ import { EtsFeNgSdkComponent } from './ets-fe-ng-sdk.component';
3
+
4
+
5
+
6
+ @NgModule({
7
+ declarations: [
8
+ EtsFeNgSdkComponent
9
+ ],
10
+ imports: [
11
+ ],
12
+ exports: [
13
+ EtsFeNgSdkComponent
14
+ ]
15
+ })
16
+ export class EtsFeNgSdkModule { }
@@ -0,0 +1,16 @@
1
+ import { TestBed } from '@angular/core/testing';
2
+
3
+ import { EtsFeNgSdkService } from './ets-fe-ng-sdk.service';
4
+
5
+ describe('EtsFeNgSdkService', () => {
6
+ let service: EtsFeNgSdkService;
7
+
8
+ beforeEach(() => {
9
+ TestBed.configureTestingModule({});
10
+ service = TestBed.inject(EtsFeNgSdkService);
11
+ });
12
+
13
+ it('should be created', () => {
14
+ expect(service).toBeTruthy();
15
+ });
16
+ });
@@ -0,0 +1,9 @@
1
+ import { Injectable } from '@angular/core';
2
+
3
+ @Injectable({
4
+ providedIn: 'root'
5
+ })
6
+ export class EtsFeNgSdkService {
7
+
8
+ constructor() { }
9
+ }
@@ -0,0 +1,7 @@
1
+ /*
2
+ * Public API Surface of ets-fe-ng-sdk
3
+ */
4
+
5
+ export * from './lib/ets-fe-ng-sdk.service';
6
+ export * from './lib/ets-fe-ng-sdk.component';
7
+ export * from './lib/ets-fe-ng-sdk.module';
@@ -0,0 +1,14 @@
1
+ /* To learn more about this file see: https://angular.io/config/tsconfig. */
2
+ {
3
+ "extends": "../../tsconfig.json",
4
+ "compilerOptions": {
5
+ "outDir": "../../out-tsc/lib",
6
+ "declaration": true,
7
+ "declarationMap": true,
8
+ "inlineSources": true,
9
+ "types": []
10
+ },
11
+ "exclude": [
12
+ "**/*.spec.ts"
13
+ ]
14
+ }
@@ -0,0 +1,10 @@
1
+ /* To learn more about this file see: https://angular.io/config/tsconfig. */
2
+ {
3
+ "extends": "./tsconfig.lib.json",
4
+ "compilerOptions": {
5
+ "declarationMap": false
6
+ },
7
+ "angularCompilerOptions": {
8
+ "compilationMode": "partial"
9
+ }
10
+ }
@@ -0,0 +1,14 @@
1
+ /* To learn more about this file see: https://angular.io/config/tsconfig. */
2
+ {
3
+ "extends": "../../tsconfig.json",
4
+ "compilerOptions": {
5
+ "outDir": "../../out-tsc/spec",
6
+ "types": [
7
+ "jasmine"
8
+ ]
9
+ },
10
+ "include": [
11
+ "**/*.spec.ts",
12
+ "**/*.d.ts"
13
+ ]
14
+ }