diff --git a/changelog.md b/changelog.md index 4d97d06..ee4a2bc 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## 2024-10-27 - 1.3.3 - fix(core) +removed unused import statement in ts/plugins.ts + +- Cleanup: Removed an unused import statement for tsImport from tsx/esm/api + ## 2024-10-27 - 1.3.2 - fix(core) Replace ts-node with tsx for module handling diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 668c99a..f92205f 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@git.zone/tsrun', - version: '1.3.2', + version: '1.3.3', description: 'run typescript programs efficiently' } diff --git a/ts/plugins.ts b/ts/plugins.ts index defd7fb..53a6727 100644 --- a/ts/plugins.ts +++ b/ts/plugins.ts @@ -9,7 +9,3 @@ import * as smartfile from '@push.rocks/smartfile'; import * as smartshell from '@push.rocks/smartshell'; export { smartfile, smartshell }; - -import { tsImport } from 'tsx/esm/api'; - -export { tsImport };