@netlify/build-info
Version:
Build info utility
23 lines • 681 B
JavaScript
import { BaseFramework, Category } from './framework.js';
export class Wintersmith extends BaseFramework {
id = 'wintersmith';
name = 'Wintersmith';
npmDependencies = ['wintersmith'];
configFiles = ['config.json'];
category = Category.SSG;
dev = {
command: 'wintersmith preview',
port: 8080,
pollingStrategies: [{ name: 'TCP' }],
};
build = {
command: 'wintersmith build',
directory: 'build',
};
logo = {
default: '/logos/wintersmith/default.svg',
light: '/logos/wintersmith/default.svg',
dark: '/logos/wintersmith/default.svg',
};
}
//# sourceMappingURL=wintersmith.js.map