Skip to content

Commit

Permalink
Fix bug when import helpers in components
Browse files Browse the repository at this point in the history
  • Loading branch information
vinimarcili committed Aug 26, 2023
1 parent 08240c0 commit 5bd1ff1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/tsconfig.app.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"types": []
},
"files": ["src/main.ts"],
"include": ["src/**/*.d.ts"]
"include": ["src/**/*.d.ts", "../src/helpers/*.ts"]
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@squidit/ngx-css-docs",
"version": "0.0.6",
"version": "0.0.61",
"scripts": {
"postinstall": "npx husky install",
"ng": "ng",
Expand Down
4 changes: 2 additions & 2 deletions src/components/sq-button/sq-button.component.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Component, ElementRef, EventEmitter, Input, Output } from '@angular/core'
import { ColorsHelper } from 'src/helpers/colors.helper'
import { useMemo } from 'src/helpers/memo.helper'
import { ColorsHelper } from '../../helpers/colors.helper'
import { useMemo } from '../../helpers/memo.helper'

@Component({
selector: 'sq-button',
Expand Down
2 changes: 1 addition & 1 deletion src/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@squidit/ngx-css",
"version": "0.0.6",
"version": "0.0.61",
"peerDependencies": {
"@angular/common": ">=15.0.0",
"@angular/core": ">=15.0.0",
Expand Down

0 comments on commit 5bd1ff1

Please sign in to comment.