Compare commits

..

No commits in common. "master" and "v1.3.2" have entirely different histories.

4 changed files with 6 additions and 7 deletions

View File

@ -1,10 +1,5 @@
# Changelog # 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) ## 2024-10-27 - 1.3.2 - fix(core)
Replace ts-node with tsx for module handling Replace ts-node with tsx for module handling

View File

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

View File

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

View File

@ -9,3 +9,7 @@ import * as smartfile from '@push.rocks/smartfile';
import * as smartshell from '@push.rocks/smartshell'; import * as smartshell from '@push.rocks/smartshell';
export { smartfile, smartshell }; export { smartfile, smartshell };
import { tsImport } from 'tsx/esm/api';
export { tsImport };