From 0538ed44afa31418fb3fcf96ed22121bcf09abcf Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Wed, 29 Jan 2025 13:18:04 +0100 Subject: [PATCH] fix(index): Export mod_assets for programmatic use --- changelog.md | 5 +++++ ts/00_commitinfo_data.ts | 2 +- ts/index.ts | 1 + 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/changelog.md b/changelog.md index 691522e..954da2b 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## 2025-01-29 - 2.2.1 - fix(index) +Export mod_assets for programmatic use + +- Added export for mod_assets/index in ts/index.ts to make it usable programmatically. + ## 2025-01-29 - 2.2.0 - feat(AssetsHandler) Add asset handling to the CLI workflow diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index c7fddb2..ae73708 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@git.zone/tsbundle', - version: '2.2.0', + version: '2.2.1', description: 'a bundler using rollup for painless bundling of web projects' } diff --git a/ts/index.ts b/ts/index.ts index e0a8e92..796ced7 100644 --- a/ts/index.ts +++ b/ts/index.ts @@ -9,5 +9,6 @@ early.stop(); // lets make this usable programmatically export * from './tsbundle.class.tsbundle.js'; +export * from './mod_assets/index.js'; export * from './mod_html/index.js'; export { runCli };