refactor: update lib exports, removes unused code
This commit is contained in:
2
projects/my-wallet-ds/src/lib/atoms/index.ts
Normal file
2
projects/my-wallet-ds/src/lib/atoms/index.ts
Normal file
@@ -0,0 +1,2 @@
|
||||
export * from './title-bar/title-bar.component'
|
||||
export * from './typography/typography.component'
|
||||
4
projects/my-wallet-ds/src/lib/molecules/index.ts
Normal file
4
projects/my-wallet-ds/src/lib/molecules/index.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
export * from './money-text/money-text.component';
|
||||
export * from './title-bar-base-money/title-bar-base-money.component';
|
||||
export * from './title-bar-category/title-bar-category.component';
|
||||
export * from './title-bar-date/title-bar-date.component'
|
||||
@@ -1,23 +0,0 @@
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { MyWalletDsComponent } from './my-wallet-ds.component';
|
||||
|
||||
describe('MyWalletDsComponent', () => {
|
||||
let component: MyWalletDsComponent;
|
||||
let fixture: ComponentFixture<MyWalletDsComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [MyWalletDsComponent]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(MyWalletDsComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
@@ -1,16 +0,0 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'lib-my-wallet-ds',
|
||||
standalone: true,
|
||||
imports: [],
|
||||
template: `
|
||||
<p>
|
||||
my-wallet-ds works!
|
||||
</p>
|
||||
`,
|
||||
styles: ``
|
||||
})
|
||||
export class MyWalletDsComponent {
|
||||
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
import { TestBed } from '@angular/core/testing';
|
||||
|
||||
import { MyWalletDsService } from './my-wallet-ds.service';
|
||||
|
||||
describe('MyWalletDsService', () => {
|
||||
let service: MyWalletDsService;
|
||||
|
||||
beforeEach(() => {
|
||||
TestBed.configureTestingModule({});
|
||||
service = TestBed.inject(MyWalletDsService);
|
||||
});
|
||||
|
||||
it('should be created', () => {
|
||||
expect(service).toBeTruthy();
|
||||
});
|
||||
});
|
||||
@@ -1,9 +0,0 @@
|
||||
import { Injectable } from '@angular/core';
|
||||
|
||||
@Injectable({
|
||||
providedIn: 'root'
|
||||
})
|
||||
export class MyWalletDsService {
|
||||
|
||||
constructor() { }
|
||||
}
|
||||
0
projects/my-wallet-ds/src/lib/organisms/index.ts
Normal file
0
projects/my-wallet-ds/src/lib/organisms/index.ts
Normal file
0
projects/my-wallet-ds/src/lib/templates/index.ts
Normal file
0
projects/my-wallet-ds/src/lib/templates/index.ts
Normal file
@@ -2,5 +2,5 @@
|
||||
* Public API Surface of my-wallet-ds
|
||||
*/
|
||||
|
||||
export * from './lib/my-wallet-ds.service';
|
||||
export * from './lib/my-wallet-ds.component';
|
||||
export * from './lib/atoms';
|
||||
export * from './lib/molecules';
|
||||
Reference in New Issue
Block a user