Compare commits

...

10 Commits

Author SHA1 Message Date
5efd905068 1.2.46 2023-08-26 14:43:08 +02:00
ae01679474 fix(core): update 2023-08-26 14:43:08 +02:00
f0bdfa9a65 1.2.45 2023-08-26 13:32:29 +02:00
a88cf067a1 fix(core): update 2023-08-26 13:32:28 +02:00
c5cd30e20e 1.2.44 2023-07-13 02:53:32 +02:00
02eb0c5435 fix(core): update 2023-07-13 02:53:31 +02:00
6ab3ed21e0 1.2.43 2023-07-13 01:33:17 +02:00
2f5374be50 fix(core): update 2023-07-13 01:33:17 +02:00
1577265f6b 1.2.42 2023-06-03 16:44:04 +02:00
3b9532bb70 fix(core): update 2023-06-03 16:44:04 +02:00
6 changed files with 523 additions and 392 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "@gitzone/tsrun", "name": "@git.zone/tsrun",
"version": "1.2.41", "version": "1.2.46",
"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",
@ -17,16 +17,16 @@
"buildDocs": "tsdoc" "buildDocs": "tsdoc"
}, },
"devDependencies": { "devDependencies": {
"@gitzone/tsbuild": "^2.1.63", "@git.zone/tsbuild": "^2.1.69",
"@pushrocks/smartcli": "^4.0.6", "@push.rocks/smartcli": "^4.0.8",
"@types/node": "^20.2.5", "@types/node": "^20.5.6",
"node-fetch": "^3.3.1" "node-fetch": "^3.3.2"
}, },
"dependencies": { "dependencies": {
"@pushrocks/smartfile": "^10.0.7", "@push.rocks/smartfile": "^10.0.30",
"@pushrocks/smartshell": "^2.0.30", "@push.rocks/smartshell": "^3.0.3",
"ts-node": "^10.8.1", "ts-node": "^10.9.1",
"typescript": "^5.1.3" "typescript": "5.1.6"
}, },
"private": false, "private": false,
"files": [ "files": [

885
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -2,7 +2,7 @@ const textToPost: string = 'Test runs!';
console.log(textToPost); console.log(textToPost);
const run = async () => { const run = async () => {
const smartcli = await import('@pushrocks/smartcli'); const smartcli = await import('@push.rocks/smartcli');
const smartcliInstance = new smartcli.Smartcli(); const smartcliInstance = new smartcli.Smartcli();
console.log(process.argv); console.log(process.argv);
smartcliInstance.addCommand('sayhello').subscribe(async (argvArg) => { smartcliInstance.addCommand('sayhello').subscribe(async (argvArg) => {

View File

@ -2,7 +2,7 @@
* autocreated commitinfo by @pushrocks/commitinfo * autocreated commitinfo by @pushrocks/commitinfo
*/ */
export const commitinfo = { export const commitinfo = {
name: '@gitzone/tsrun', name: '@git.zone/tsrun',
version: '1.2.41', version: '1.2.46',
description: 'run typescript programs efficiently' description: 'run typescript programs efficiently'
} }

View File

@ -10,7 +10,7 @@ const defaultTsNodeOptions: plugins.tsNode.CreateOptions = {
esModuleInterop: true, esModuleInterop: true,
strictNullChecks: false, strictNullChecks: false,
moduleResolution: <any>'nodenext', moduleResolution: <any>'nodenext',
module: <any>'ESNext', module: <any>'nodenext',
verbatimModuleSyntax: true, verbatimModuleSyntax: true,
} as CompilerOptions, } as CompilerOptions,
esm: true, esm: true,

View File

@ -5,7 +5,7 @@ import * as url from 'url';
export { path, url }; export { path, url };
// @pushrocks scope // @pushrocks scope
import * as smartshell from '@pushrocks/smartshell'; import * as smartshell from '@push.rocks/smartshell';
export { smartshell }; export { smartshell };