Skip to content

Commit 0b2742f

Browse files
committed
fix(lint): fix linting
1 parent f642c81 commit 0b2742f

File tree

3 files changed

+4
-297
lines changed

3 files changed

+4
-297
lines changed

src/formats.ts

Lines changed: 0 additions & 295 deletions
This file was deleted.

src/formats/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ import { treeWalker } from './references'
44
import { tokenHelpers } from './tokenHelpers'
55
import { DesignTokensType, DesignTokenType, TokenHelperOptionsType, getFunction } from './types-strings'
66

7+
export { treeWalker }
8+
79
/**
810
* Formats
911
*/

src/utils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import chalk from 'chalk'
22
import { kebabCase } from 'scule'
3-
import Consola from 'consola'
3+
import consola from 'consola'
44
import { name, version } from '../package.json'
55
import type { ModuleOptions } from './index'
66
import { DesignTokensPaths } from '#design-tokens/types'
@@ -19,7 +19,7 @@ export const MODULE_DEFAULTS: ModuleOptions = {
1919

2020
// Logging
2121
// Do not import @nuxt/kit here
22-
const _logger = Consola
22+
const _logger = consola
2323
function useLogger (scope) {
2424
return scope ? _logger.withScope(scope) : logger
2525
}

0 commit comments

Comments
 (0)