diff --git a/packages/knip/package.json b/packages/knip/package.json index ca6d99661..bde0010be 100644 --- a/packages/knip/package.json +++ b/packages/knip/package.json @@ -49,7 +49,7 @@ "release": "release-it", "create-plugin": "bun ./scripts/create-new-plugin.ts", "postcreate-plugin": "biome format --write schema.json schema-jsonc.json src/ConfigurationValidator.ts", - "generate-plugin-defs": "node ./scripts/generate-plugin-defs.js && biome format --write src/plugins/index.ts src/types/PluginNames.ts" + "generate-plugin-defs": "node ./scripts/generate-plugin-defs.js && biome check --write src/plugins/index.ts src/types/PluginNames.ts" }, "files": [ "dist", diff --git a/packages/knip/src/plugins/index.ts b/packages/knip/src/plugins/index.ts index 17b7c2e9a..f6a1356ce 100644 --- a/packages/knip/src/plugins/index.ts +++ b/packages/knip/src/plugins/index.ts @@ -32,17 +32,17 @@ import { default as msw } from './msw/index.js'; import { default as nest } from './nest/index.js'; import { default as netlify } from './netlify/index.js'; import { default as next } from './next/index.js'; -import { default as node } from './node/index.js'; import { default as nodeTestRunner } from './node-test-runner/index.js'; +import { default as node } from './node/index.js'; import { default as nodemon } from './nodemon/index.js'; import { default as npmPackageJsonLint } from './npm-package-json-lint/index.js'; import { default as nuxt } from './nuxt/index.js'; import { default as nx } from './nx/index.js'; import { default as nyc } from './nyc/index.js'; import { default as oclif } from './oclif/index.js'; -import { default as playwright } from './playwright/index.js'; import { default as playwrightCt } from './playwright-ct/index.js'; import { default as playwrightTest } from './playwright-test/index.js'; +import { default as playwright } from './playwright/index.js'; import { default as postcss } from './postcss/index.js'; import { default as preconstruct } from './preconstruct/index.js'; import { default as prettier } from './prettier/index.js';