Skip to content

Commit

Permalink
馃┕ fix(none): fix tsconfig.json types for stylelint
Browse files Browse the repository at this point in the history
  • Loading branch information
kellymears committed Jan 28, 2024
1 parent 9a7c393 commit 58cdb62
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sources/create-bud-app/src/tasks/write.tsconfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,12 @@ export default async function writeTsConfig(command: CreateCommand) {
command.support.includes(`sass`) && types.push(`@roots/bud-sass`)
command.support.includes(`tailwindcss`) &&
types.push(`@roots/bud-tailwindcss`)

command.support.includes(`postcss`) && types.push(`@roots/bud-postcss`)
command.support.includes(`vue`) && types.push(`@roots/bud-vue`)
command.support.includes(`react`) && types.push(`@roots/bud-react`)
command.support.includes(`eslint`) && types.push(`@roots/bud-eslint`)
command.support.includes(`stylelint`) && types.push(`@roots/stylelint`)
command.support.includes(`stylelint`) && types.push(`@roots/bud-stylelint`)
command.support.includes(`wordpress`) &&
types.push(`@roots/bud-preset-wordpress`)

Expand Down

0 comments on commit 58cdb62

Please sign in to comment.