915584ff11
First shared role package. Extracts workspace committer into a reusable package with decorator chain (withDryRun + onFail). Also fixes workflow-utils test types (StartStep shape, TestMeta constraint).
20 lines
272 B
TypeScript
20 lines
272 B
TypeScript
import { defineConfig } from "@rslib/core";
|
|
|
|
export default defineConfig({
|
|
lib: [
|
|
{
|
|
format: "esm",
|
|
dts: true,
|
|
},
|
|
],
|
|
source: {
|
|
entry: {
|
|
index: "src/index.ts",
|
|
},
|
|
},
|
|
output: {
|
|
target: "node",
|
|
cleanDistPath: true,
|
|
},
|
|
});
|