First version: 20231229.0.0 #2

Merged
Thilawyn merged 21 commits from next into master 2023-12-29 01:07:07 +01:00
3 changed files with 11 additions and 2 deletions
Showing only changes of commit fcfed14306 - Show all commits

BIN
bun.lockb

Binary file not shown.

View File

@@ -27,6 +27,7 @@
"devDependencies": {
"bun-types": "latest",
"rollup": "^4.7.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-ts": "^3.4.5",
"typescript": "^5.3.3"
}

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"],
}),
],
})