From ed4a6f194ac3405a0ec6ecda3b9ee1f8fd73f538 Mon Sep 17 00:00:00 2001 From: Gabriel De Los Rios Date: Sun, 10 Aug 2025 17:56:27 -0300 Subject: [PATCH] refactor: update prefix to shorten mw --- angular.json | 2 +- .../src/lib/molecules/money-text/money-text.component.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/angular.json b/angular.json index 67034af..ff70748 100644 --- a/angular.json +++ b/angular.json @@ -7,7 +7,7 @@ "projectType": "library", "root": "projects/my-wallet-ds", "sourceRoot": "projects/my-wallet-ds/src", - "prefix": "lib", + "prefix": "mw", "architect": { "build": { "builder": "@angular-devkit/build-angular:ng-packagr", diff --git a/projects/my-wallet-ds/src/lib/molecules/money-text/money-text.component.ts b/projects/my-wallet-ds/src/lib/molecules/money-text/money-text.component.ts index 0c2e02a..3ce552d 100644 --- a/projects/my-wallet-ds/src/lib/molecules/money-text/money-text.component.ts +++ b/projects/my-wallet-ds/src/lib/molecules/money-text/money-text.component.ts @@ -3,7 +3,7 @@ import { Component, input } from '@angular/core'; import { TypographyComponent } from './../../atoms/typography/typography.component'; import { TypographyVariants } from './../../types/TypographyVariants'; @Component({ - selector: 'my-wallet-money-text', + selector: 'mw-money-text', standalone: true, imports: [CurrencyPipe, TypographyComponent], templateUrl: './money-text.component.html',