Skip to content

Commit 6c618dd

Browse files
committed
chore: bump version to 0.3.1 and update tsup entry configuration to use named entries
1 parent f2a40ec commit 6c618dd

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to apcore-cli (TypeScript SDK) will be documented in this fi
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.3.1] - 2026-03-28
9+
10+
### Changed
11+
- Update `tsup.config.ts` entry configuration to use named entries (`{ index: "src/index.ts", "bin/apcore-cli": "bin/apcore-cli.ts" }`) instead of an array.
12+
813
## [0.3.0] - 2026-03-27
914

1015
### Added

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "apcore-cli",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"description": "CLI wrapper for the apcore core SDK — exposes apcore modules as CLI commands",
55
"type": "module",
66
"main": "./dist/index.js",

tsup.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { defineConfig } from "tsup";
22

33
export default defineConfig({
4-
entry: ["src/index.ts", "bin/apcore-cli.ts"],
4+
entry: { index: "src/index.ts", "bin/apcore-cli": "bin/apcore-cli.ts" },
55
format: ["esm"],
66
dts: true,
77
sourcemap: true,

0 commit comments

Comments
 (0)