Skip to content

Commit 5f16b2e

Browse files
committedNov 1, 2024
Fix up plugin file generator
1 parent 6135754 commit 5f16b2e

File tree

5 files changed

+36
-26
lines changed

5 files changed

+36
-26
lines changed
 

‎packages/knip/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,13 @@
4343
"test": "bun test test/*.test.ts test/**/*.test.ts",
4444
"test:node": "glob -c \"npx -y tsx --test --import ./transform-test.js\" \"test/**/*.test.ts\"",
4545
"watch": "npm link && tsc --watch",
46-
"prebuild": "node rmdir.js dist",
46+
"prebuild": "npm run generate-plugin-defs && node rmdir.js dist",
4747
"build": "tsc",
4848
"qa": "bun lint && bun run build && bun knip && bun knip:production && bun run test",
4949
"release": "release-it",
5050
"create-plugin": "bun ./scripts/create-new-plugin.ts",
5151
"postcreate-plugin": "biome format --write schema.json schema-jsonc.json src/ConfigurationValidator.ts",
52-
"generate-plugin-types": "bun ./scripts/generate-plugin-types.ts"
52+
"generate-plugin-defs": "node ./scripts/generate-plugin-defs.js && biome format --write src/plugins/index.ts src/types/PluginNames.ts"
5353
},
5454
"files": [
5555
"dist",
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
import fs from 'node:fs';
2+
import { EOL } from 'node:os';
3+
// biome-ignore lint/nursery/noRestrictedImports: script
4+
import path from 'node:path';
5+
6+
const cc = str => str.toLowerCase().replace(/[^a-zA-Z0-9]+(.)/g, (_m, char) => char.toUpperCase());
7+
8+
const pluginsDir = path.resolve('src/plugins');
9+
const outputFileTypes = path.resolve('src/types/PluginNames.ts');
10+
const outputFilePlugins = path.resolve('src/plugins/index.ts');
11+
12+
const pluginNames = fs
13+
.readdirSync(pluginsDir, { withFileTypes: true })
14+
.filter(dirent => dirent.isDirectory() && !dirent.name.startsWith('_'))
15+
.map(dirent => dirent.name)
16+
.sort();
17+
18+
const typeDefinition = `export type PluginName = ${pluginNames.map(name => `'${name}'`).join(' | ')};`;
19+
20+
const values = `export const pluginNames = [${pluginNames.map(name => `'${name}'`).join(',')}] as const;`;
21+
22+
fs.writeFileSync(outputFileTypes, typeDefinition + EOL + EOL + values);
23+
24+
const imports = pluginNames.map(name => `import { default as ${cc(name)} } from './${name}/index.js';`).join(EOL);
25+
const pluginsObj = `export const Plugins = {${pluginNames
26+
.map(name => (name === cc(name) ? `${name},` : `'${name}': ${cc(name)},`))
27+
.join(EOL)} };`;
28+
29+
fs.writeFileSync(outputFilePlugins, imports + EOL + EOL + pluginsObj);

‎packages/knip/scripts/generate-plugin-overview.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import fs from 'node:fs/promises';
33
import path from 'node:path';
44
import { fileURLToPath } from 'node:url';
55
import Table from 'easy-table';
6-
import type { Plugin } from '../src/types/plugins.js';
6+
import type { Plugin } from '../src/types/config.js';
77

88
const rootDir = path.join(path.dirname(fileURLToPath(import.meta.url)), '..');
99
const knipDir = path.join(rootDir, '../../packages/knip');

‎packages/knip/scripts/generate-plugin-types.ts

-19
This file was deleted.

‎packages/knip/src/plugins/index.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -32,17 +32,17 @@ import { default as msw } from './msw/index.js';
3232
import { default as nest } from './nest/index.js';
3333
import { default as netlify } from './netlify/index.js';
3434
import { default as next } from './next/index.js';
35-
import { default as nodeTestRunner } from './node-test-runner/index.js';
3635
import { default as node } from './node/index.js';
36+
import { default as nodeTestRunner } from './node-test-runner/index.js';
3737
import { default as nodemon } from './nodemon/index.js';
3838
import { default as npmPackageJsonLint } from './npm-package-json-lint/index.js';
3939
import { default as nuxt } from './nuxt/index.js';
4040
import { default as nx } from './nx/index.js';
4141
import { default as nyc } from './nyc/index.js';
4242
import { default as oclif } from './oclif/index.js';
43+
import { default as playwright } from './playwright/index.js';
4344
import { default as playwrightCt } from './playwright-ct/index.js';
4445
import { default as playwrightTest } from './playwright-test/index.js';
45-
import { default as playwright } from './playwright/index.js';
4646
import { default as postcss } from './postcss/index.js';
4747
import { default as preconstruct } from './preconstruct/index.js';
4848
import { default as prettier } from './prettier/index.js';
@@ -107,8 +107,8 @@ export const Plugins = {
107107
jest,
108108
ladle,
109109
lefthook,
110-
linthtml,
111110
'lint-staged': lintStaged,
111+
linthtml,
112112
'lockfile-lint': lockfileLint,
113113
'lost-pixel': lostPixel,
114114
markdownlint,
@@ -119,8 +119,8 @@ export const Plugins = {
119119
netlify,
120120
next,
121121
node,
122-
nodemon,
123122
'node-test-runner': nodeTestRunner,
123+
nodemon,
124124
'npm-package-json-lint': npmPackageJsonLint,
125125
nuxt,
126126
nx,

0 commit comments

Comments
 (0)
Please sign in to comment.