Files
myeasycms-v2/turbo/generators/templates/package/generator.ts
Giancarlo Buomprisco f5a961f155 Clean up packages and old references to eslint config (#158)
* Update dependencies and configuration files

- Upgrade Lucide React to version 0.475.0
- Update Markdoc to version 0.5.0
- Bump ESLint to version 9.20.0
- Update Tailwind CSS to version 4.0.5
- Add import-in-the-middle to Sentry package
- Remove import-in-the-middle and require-in-the-middle from web app
- Update browserslist configuration
- Remove eslintConfig from web app package.json
- Add ESLint configuration template for package generator
2025-02-10 11:42:35 +08:00

90 lines
2.5 KiB
TypeScript

import type { PlopTypes } from '@turbo/gen';
import { execSync } from 'node:child_process';
export function createPackageGenerator(plop: PlopTypes.NodePlopAPI) {
plop.setGenerator('package', {
description: 'Generate a new package for the Monorepo',
prompts: [
{
type: 'input',
name: 'name',
message:
'What is the name of the package? (You can skip the `@kit/` prefix)',
},
{
type: 'input',
name: 'deps',
message:
'Enter a space separated list of dependencies you would like to install',
},
],
actions: [
(answers) => {
if ('name' in answers && typeof answers.name === 'string') {
if (answers.name.startsWith('@kit/')) {
answers.name = answers.name.replace('@kit/', '');
}
}
return 'Config sanitized';
},
{
type: 'add',
path: 'packages/{{ name }}/package.json',
templateFile: 'templates/package/package.json.hbs',
},
{
type: 'add',
path: 'packages/{{ name }}/tsconfig.json',
templateFile: 'templates/package/tsconfig.json.hbs',
},
{
type: 'add',
path: 'packages/{{ name }}/eslint.config.mjs',
templateFile: 'templates/package/eslint.config.mjs.hbs',
},
{
type: 'add',
path: 'packages/{{ name }}/index.ts',
template: "export * from './src';",
},
{
type: 'add',
path: 'packages/{{ name }}/src/index.ts',
template: "export const name = '{{ name }}';",
},
{
type: 'modify',
path: 'packages/{{ name }}/package.json',
async transform(content, answers) {
const pkg = JSON.parse(content);
for (const dep of answers.deps.split(' ').filter(Boolean)) {
const version = await fetch(
`https://registry.npmjs.org/-/package/${dep}/dist-tags`,
)
.then((res) => res.json())
.then((json) => json.latest);
pkg.dependencies![dep] = `^${version}`;
}
return JSON.stringify(pkg, null, 2);
},
},
async (answers) => {
/**
* Install deps and format everything
*/
execSync('pnpm manypkg fix', {
stdio: 'inherit',
});
execSync(
`pnpm prettier --write packages/${
(answers as { name: string }).name
}/** --list-different`,
);
return 'Package scaffolded';
},
],
});
}