Skip to content

Commit 6c258b9

Browse files
Bump version to 1.9.7; update entry points in tsup configuration
1 parent e642fbe commit 6c258b9

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@astx/lib",
3-
"version": "1.9.6",
3+
"version": "1.9.7",
44
"description": "Compiler & Runtime library for a tiny JS AST based binary file format",
55
"main": "./dist/index.js",
66
"module": "./dist/index.mjs",

tsup.config.ts

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,7 @@
66
import { defineConfig } from "tsup";
77

88
export default defineConfig({
9-
entry: [
10-
"src/index.ts",
11-
"src/compiler.ts",
12-
"src/loader/buffer.ts",
13-
"src/loader/file.ts",
14-
"src/runtime/default.ts",
15-
"src/runtime/safe.ts",
16-
],
9+
entry: ["src/index.ts"],
1710
format: ["cjs", "esm"], // Build for commonJS and ESmodules
1811
dts: true, // Generate declaration file (.d.ts)
1912
splitting: false,

0 commit comments

Comments
 (0)