First version: 20231229.0.0 (#2)
All checks were successful
continuous-integration/drone/push Build is passing

Co-authored-by: Julien Valverdé <julien.valverde@mailo.com>
Reviewed-on: https://git.jvalver.de/Thilawyn/thilatrait/pulls/2
This commit was merged in pull request #2.
This commit is contained in:
Julien Valverdé
2023-12-29 01:07:06 +01:00
parent c6de7004d2
commit c794c899e5
12 changed files with 602 additions and 227 deletions

View File

@@ -1,4 +1,5 @@
import { defineConfig } from "rollup"
import cleanup from "rollup-plugin-cleanup"
import ts from "rollup-plugin-ts"
import pkg from "./package.json" assert { type: "json" }
@@ -6,8 +7,6 @@ import pkg from "./package.json" assert { type: "json" }
export default defineConfig({
input: "src/index.ts",
plugins: [ ts() ],
output: [
{
file: pkg.exports["."].import.default,
@@ -19,4 +18,13 @@ export default defineConfig({
format: "cjs",
},
],
plugins: [
ts(),
cleanup({
comments: "jsdoc",
extensions: ["ts"],
}),
],
})