Skip to content

Commit 060b28d

Browse files
authoredNov 25, 2024··
Add plop plugin (#851)
1 parent 031bc20 commit 060b28d

File tree

8 files changed

+86
-0
lines changed

8 files changed

+86
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"name": "@fixtures/plop",
3+
"version": "*",
4+
"type": "module",
5+
"scripts": {
6+
"plop": "plop"
7+
},
8+
"dependencies": {
9+
"plop": "*"
10+
}
11+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
const page = {
2+
description: 'Create a documentation page',
3+
4+
prompts: [
5+
{
6+
type: 'input',
7+
name: 'name',
8+
message: 'What is the page name',
9+
},
10+
],
11+
12+
actions(prompts) {
13+
return [
14+
{
15+
type: 'add',
16+
path: `./doc/{{ dashCase name }}.md`,
17+
templateFile: 'template.hbs',
18+
},
19+
];
20+
},
21+
};
22+
23+
function plopConfig(plop) {
24+
plop.setGenerator('Page', page);
25+
}
26+
27+
export default plopConfig;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# {{ name }}

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

+2
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ import { default as oclif } from './oclif/index.js';
4545
import { default as playwrightCt } from './playwright-ct/index.js';
4646
import { default as playwrightTest } from './playwright-test/index.js';
4747
import { default as playwright } from './playwright/index.js';
48+
import { default as plop } from './plop/index.js';
4849
import { default as postcss } from './postcss/index.js';
4950
import { default as preconstruct } from './preconstruct/index.js';
5051
import { default as prettier } from './prettier/index.js';
@@ -132,6 +133,7 @@ export const Plugins = {
132133
playwright,
133134
'playwright-ct': playwrightCt,
134135
'playwright-test': playwrightTest,
136+
plop,
135137
postcss,
136138
preconstruct,
137139
prettier,
+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import type { IsPluginEnabled, Plugin } from '../../types/config.js';
2+
import { hasDependency } from '../../util/plugin.js';
3+
4+
// https://github.com/plopjs/plop/blob/main/README.md
5+
6+
const title = 'Plop';
7+
8+
const enablers = ['plop'];
9+
10+
const isEnabled: IsPluginEnabled = ({ dependencies }) => hasDependency(dependencies, enablers);
11+
12+
const config = ['plopfile.{cjs,mjs,js,ts}'];
13+
14+
export default {
15+
title,
16+
enablers,
17+
isEnabled,
18+
config,
19+
} satisfies Plugin;

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

+1
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ export const pluginsSchema = z.object({
5959
playwright: pluginSchema,
6060
'playwright-ct': pluginSchema,
6161
'playwright-test': pluginSchema,
62+
plop: pluginSchema,
6263
postcss: pluginSchema,
6364
preconstruct: pluginSchema,
6465
prettier: pluginSchema,

‎packages/knip/src/types/PluginNames.ts

+2
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ export type PluginName =
4646
| 'playwright'
4747
| 'playwright-ct'
4848
| 'playwright-test'
49+
| 'plop'
4950
| 'postcss'
5051
| 'preconstruct'
5152
| 'prettier'
@@ -133,6 +134,7 @@ export const pluginNames = [
133134
'playwright',
134135
'playwright-ct',
135136
'playwright-test',
137+
'plop',
136138
'postcss',
137139
'preconstruct',
138140
'prettier',
+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
import { test } from 'bun:test';
2+
import assert from 'node:assert/strict';
3+
import { main } from '../../src/index.js';
4+
import { resolve } from '../../src/util/path.js';
5+
import baseArguments from '../helpers/baseArguments.js';
6+
import baseCounters from '../helpers/baseCounters.js';
7+
8+
const cwd = resolve('fixtures/plugins/plop');
9+
10+
test('Find dependencies with the plop plugin', async () => {
11+
const { counters } = await main({
12+
...baseArguments,
13+
cwd,
14+
});
15+
16+
assert.deepEqual(counters, {
17+
...baseCounters,
18+
binaries: 1,
19+
dependencies: 1,
20+
processed: 1,
21+
total: 1,
22+
});
23+
});

0 commit comments

Comments
 (0)
Please sign in to comment.