Skip to content

Commit

Permalink
fix(stylelint): drop export default (#191)
Browse files Browse the repository at this point in the history
  • Loading branch information
fi3ework committed Dec 19, 2022
1 parent d1c422c commit 82f30b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
@@ -1,6 +1,6 @@
import chokidar from 'chokidar'
import stylelint from 'stylelint'
import translateOptions from './options.js'
import { translateOptions } from './options.js'
import path from 'path'
import { fileURLToPath } from 'url'
import { parentPort } from 'worker_threads'
Expand Down
Expand Up @@ -92,7 +92,7 @@ import type Stylelint from 'stylelint'

const EXIT_CODE_ERROR = 2

export default (command: string) => {
export const translateOptions = (command: string) => {
const result = meow({
autoHelp: false,
autoVersion: false,
Expand Down

0 comments on commit 82f30b1

Please sign in to comment.