Skip to content

Commit

Permalink
chore: relative impots removed
Browse files Browse the repository at this point in the history
  • Loading branch information
RaulCatalinas committed Apr 29, 2024
1 parent 7983303 commit f549b48
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/config/cli.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { program } from '../constants/huskybc'
import { VERSION } from '../constants/version'
import { program } from '@/constants/huskybc'
import { VERSION } from '@/constants/version'

export function configureCLI() {
program
Expand Down
6 changes: 4 additions & 2 deletions src/config/options.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
// Constants
import { program } from '../constants/huskybc'
import { program } from '@/constants/huskybc'

// Controllers
import {
handlerOptionBuild,
handlerOptionCollaborate
} from '../controllers/handlers-options'
} from '@/controllers/handlers-options'

export function configureOptions() {
program
Expand Down
2 changes: 1 addition & 1 deletion src/constants/version.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import type { Version } from '../types/version'
import type { Version } from '@/types/version'

export const VERSION: Version = '0.0.1'
5 changes: 4 additions & 1 deletion src/controllers/handlers-options.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
// Constants
import { REPOSITORY } from '@/constants/github'

// Third-Party libraries
import opener from 'opener'
import { REPOSITORY } from '../constants/github'

export const handlerOptionBuild = () => {
console.log("Generating Husky's configuration")
Expand Down

0 comments on commit f549b48

Please sign in to comment.