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

41 lines
957 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";
/**
* 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: [
2023-06-30 07:00:44 +00:00
"@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: {
release: {
plugins: {
2023-06-30 10:07:28 +00:00
"3": ["@semantic-release/npm", { npmPublish: false }],
},
},
rollup: {
plugins: {
"1": {
"1": {
dedupe: [
"@lumeweb/libkernel",
"@lumeweb/libweb",
"@lumeweb/libportal",
],
},
},
},
},
2023-06-29 21:57:25 +00:00
},
2023-06-27 05:59:03 +00:00
};
}