presetter-kernel-module-preset/src/index.ts

34 lines
826 B
TypeScript
Raw Normal View History

2023-06-27 05:59:03 +00:00
import type { PresetAsset } from "presetter-types";
import { PresetContext } from "presetter-types";
import { createRequire } from "node:module";
const require = createRequire(import.meta.url);
2023-06-27 05:59:03 +00:00
/**
* get the list of templates provided by this preset
* @returns list of preset templates
*/
export default async function (context: PresetContext): Promise<PresetAsset> {
const ignores = !context.custom.config?.official
? [".github/workflows/ci.yml"]
: [];
return {
extends: [
"@lumeweb/node-library-preset",
"@lumeweb/presetter-preset-rollup",
],
2023-06-27 05:59:03 +00:00
supplementaryIgnores: ignores,
2023-06-29 21:57:25 +00:00
supplementaryConfig: {
rollup: {
plugins: [
"@apply @rollup/plugin-wasm[default]",
{
2023-06-29 22:18:47 +00:00
targetEnv: "auto-inline",
},
],
2023-06-29 21:57:25 +00:00
},
},
2023-06-27 05:59:03 +00:00
};
}