Skip to content

Commit

Permalink
Lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dac09 committed Jun 19, 2023
1 parent 0427f78 commit 9d92c01
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ export const description =

export const handler = () => {
task('Update Theme Config', async ({ setOutput }: TaskInnerAPI) => {
const targetPaths = fg.sync('{chakra,mantine}.config.{js,jsx,tsx,ts}', {
const targetPaths = fg.sync('{chakra,mantine}.config.{js,jsx,tsx,ts}', {
cwd: getPaths().web.config,
absolute: true,
})

await runTransform({
transformPath: path.join(__dirname, 'updateThemeConfig.js'),
targetPaths
targetPaths,
})

setOutput('All done! Run `yarn rw lint --fix` to prettify your code')
Expand Down

0 comments on commit 9d92c01

Please sign in to comment.