Compare commits

...

2 Commits

Author SHA1 Message Date
2bba5f75e6 1.3.3 2024-10-27 19:46:14 +01:00
74bb4a9837 fix(core): removed unused import statement in ts/plugins.ts 2024-10-27 19:46:13 +01:00
4 changed files with 7 additions and 6 deletions

View File

@ -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

View File

@ -1,6 +1,6 @@
{
"name": "@git.zone/tsrun",
"version": "1.3.2",
"version": "1.3.3",
"description": "run typescript programs efficiently",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@git.zone/tsrun',
version: '1.3.2',
version: '1.3.3',
description: 'run typescript programs efficiently'
}

View File

@ -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 };