79 lines
2.2 KiB
TypeScript
79 lines
2.2 KiB
TypeScript
/*
|
|
* *** MIT LICENSE ***
|
|
* -------------------------------------------------------------------------
|
|
* This code may be modified and distributed under the MIT license.
|
|
* See the LICENSE file for details.
|
|
* -------------------------------------------------------------------------
|
|
*
|
|
* @summary Collection of preset assets for bundling a project with rollup
|
|
*
|
|
* @author Alvis HT Tang <alvis@hilbert.space>
|
|
* @license MIT
|
|
* @copyright Copyright (c) 2021 - All Rights Reserved.
|
|
* -------------------------------------------------------------------------
|
|
*/
|
|
|
|
import { dirname, resolve } from 'node:path';
|
|
import { fileURLToPath } from 'node:url';
|
|
|
|
import { loadFile, template } from 'presetter';
|
|
|
|
import { getRollupParameter } from './rollup';
|
|
|
|
import type { PresetAsset } from 'presetter-types';
|
|
|
|
import type { RollupConfig } from './rollup';
|
|
|
|
const DIR = fileURLToPath(dirname(import.meta.url));
|
|
|
|
// paths to the template directory
|
|
const TEMPLATES = resolve(DIR, '..', 'templates');
|
|
const CONFIGS = resolve(DIR, '..', 'configs');
|
|
|
|
/** config for this preset */
|
|
export type PresetConfig = {
|
|
rollup?: RollupConfig;
|
|
};
|
|
|
|
/** List of configurable variables */
|
|
export type Variable = {
|
|
/** the directory containing all source code (default: source) */
|
|
source: string;
|
|
/** the directory containing all the compiled files (default: lib) */
|
|
output: string;
|
|
};
|
|
|
|
export const DEFAULT_VARIABLE: Variable = {
|
|
source: 'source',
|
|
output: 'lib',
|
|
};
|
|
|
|
/**
|
|
* get the list of templates provided by this preset
|
|
* @returns list of preset templates
|
|
*/
|
|
export default function (): PresetAsset {
|
|
return {
|
|
template: {
|
|
/* eslint-disable @typescript-eslint/naming-convention */
|
|
'rollup.config.ts': (context) => {
|
|
const content = loadFile(
|
|
resolve(TEMPLATES, 'rollup.config.ts'),
|
|
'text',
|
|
);
|
|
const variable = getRollupParameter(context);
|
|
|
|
return template(content, variable);
|
|
/* eslint-enable @typescript-eslint/naming-convention */
|
|
},
|
|
},
|
|
scripts: resolve(TEMPLATES, 'scripts.yaml'),
|
|
noSymlinks: ['rollup.config.ts'],
|
|
supplementaryConfig: {
|
|
gitignore: ['/rollup.config.ts'],
|
|
rollup: resolve(CONFIGS, 'rollup.yaml'),
|
|
},
|
|
variable: DEFAULT_VARIABLE,
|
|
};
|
|
}
|