Compare commits

...

20 Commits

Author SHA1 Message Date
9e55126adf 1.2.37 2022-06-14 21:42:07 +02:00
5271f0153e fix(core): update 2022-06-14 21:42:07 +02:00
ba0aaf2793 1.2.36 2022-06-14 21:33:04 +02:00
1f46e387e7 fix(core): update 2022-06-14 21:33:03 +02:00
03625bfca4 1.2.35 2022-06-02 00:23:45 +02:00
cc92e3e9ca fix(core): update 2022-06-02 00:23:45 +02:00
c1e66d498a 1.2.34 2022-05-25 10:55:36 +02:00
bfbb802e88 fix(core): update 2022-05-25 10:55:35 +02:00
655fd8b92e 1.2.33 2022-05-25 10:11:15 +02:00
a240cdfde1 fix(core): update 2022-05-25 10:11:14 +02:00
2af7682cf0 1.2.32 2022-03-24 18:47:16 +01:00
c62619bd27 fix(core): update 2022-03-24 18:47:16 +01:00
ffaf54f1de 1.2.31 2022-03-13 00:02:20 +01:00
2c6b955819 fix(core): update 2022-03-13 00:02:20 +01:00
9bb13e1ede 1.2.30 2022-03-13 00:01:40 +01:00
d9bd5e5340 fix(core): update 2022-03-13 00:01:40 +01:00
b76de3e04d 1.2.29 2022-03-12 22:54:05 +01:00
808726d1df fix(core): update 2022-03-12 22:54:04 +01:00
d011f10b9b 1.2.28 2022-03-12 21:59:15 +01:00
d1baa20aad fix(core): update 2022-03-12 21:59:14 +01:00
9 changed files with 635 additions and 737 deletions

4
cli.child.ts Normal file
View File

@ -0,0 +1,4 @@
#!/usr/bin/env node
process.env.CLI_CALL = 'true';
import * as cliTool from './ts/index.js';
cliTool.runCli();

View File

@ -1,5 +1,5 @@
#!/usr/bin/env node #!/usr/bin/env node
process.env.CLI_CALL = 'true'; process.env.CLI_CALL = 'true';
await import('@gitzone/tsrun');
const cliTool = await import('./ts/index.js'); import * as tsrun from '@gitzone/tsrun';
cliTool.runCli(); tsrun.runPath('./cli.child.js', import.meta.url);

1305
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{ {
"name": "@gitzone/tsrun", "name": "@gitzone/tsrun",
"version": "1.2.27", "version": "1.2.37",
"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",
@ -16,18 +16,16 @@
"build": "(tsbuild)" "build": "(tsbuild)"
}, },
"devDependencies": { "devDependencies": {
"@gitzone/tsbuild": "^2.1.43", "@gitzone/tsbuild": "^2.1.63",
"@pushrocks/smartcli": "^3.0.14", "@pushrocks/smartcli": "^3.0.14",
"@types/node": "^17.0.21", "@types/node": "^17.0.42",
"node-fetch": "^3.2.2", "node-fetch": "^3.2.6"
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0"
}, },
"dependencies": { "dependencies": {
"@pushrocks/smartfile": "^9.0.6", "@pushrocks/smartfile": "^10.0.2",
"@pushrocks/smartshell": "^2.0.30", "@pushrocks/smartshell": "^2.0.30",
"ts-node": "^10.7.0", "ts-node": "^10.8.1",
"typescript": "4.7.0-dev.20220311" "typescript": "^4.7.3"
}, },
"private": false, "private": false,
"files": [ "files": [

8
ts/00_commitinfo_data.ts Normal file
View File

@ -0,0 +1,8 @@
/**
* autocreated commitinfo by @pushrocks/commitinfo
*/
export const commitinfo = {
name: '@gitzone/tsrun',
version: '1.2.37',
description: 'run typescript programs efficiently'
}

View File

@ -1,11 +1,10 @@
import * as plugins from './plugins.js'; import * as plugins from './plugins.js';
const __dirname = plugins.path.dirname(plugins.url.fileURLToPath(import.meta.url));
import { dirname } from 'path'; export const runPath = async (pathArg: string, fromFileUrl?: string) => {
import { fileURLToPath } from 'url'; pathArg = fromFileUrl
? plugins.path.join(plugins.path.dirname(plugins.url.fileURLToPath(fromFileUrl)), pathArg)
const __dirname = dirname(fileURLToPath(import.meta.url)); : pathArg;
export const runPath = async (pathArg: string) => {
await runCli(pathArg); await runCli(pathArg);
}; };
@ -18,7 +17,10 @@ export const runCli = async (pathArg?: string) => {
? relativePathToTsFile ? relativePathToTsFile
: plugins.path.join(process.cwd(), relativePathToTsFile); : plugins.path.join(process.cwd(), relativePathToTsFile);
process.argv.splice(0, 3); // this ensures transparent arguments for the child process // we want to have command line arguments available in the child process.
// when we have a path sepcified through a function there is one argeument less to pay respect to.
// thus when pathArg is specifed -> we only splice 2
pathArg ? process.argv.splice(0, 2) : process.argv.splice(0, 3); // this ensures transparent arguments for the child process
// lets setup things for execution // lets setup things for execution
const smartshellInstance = new plugins.smartshell.Smartshell({ const smartshellInstance = new plugins.smartshell.Smartshell({

View File

@ -4,11 +4,12 @@ import type { CompilerOptions } from 'typescript';
const defaultTsNodeOptions: plugins.tsNode.CreateOptions = { const defaultTsNodeOptions: plugins.tsNode.CreateOptions = {
compilerOptions: { compilerOptions: {
lib: ['dom'], lib: ['dom'],
target: <any>'es2020', // Script Target should be a string -> 2 is for ES2015 target: <any>'es2022', // Script Target should be a string -> 2 is for ES2015
experimentalDecorators: true, experimentalDecorators: true,
useDefineForClassFields: false,
esModuleInterop: true, esModuleInterop: true,
strictNullChecks: false, strictNullChecks: false,
moduleResolution: <any>'node12', moduleResolution: <any>'nodenext',
module: <any>'ESNext', module: <any>'ESNext',
importsNotUsedAsValues: <any>'preserve', importsNotUsedAsValues: <any>'preserve',
} as CompilerOptions, } as CompilerOptions,

View File

@ -1,8 +1,10 @@
// node native // node native
import * as path from 'path'; import * as path from 'path';
import * as url from 'url';
export { export {
path path,
url
} }
// @pushrocks scope // @pushrocks scope

View File

@ -1,7 +1,9 @@
{ {
"compilerOptions": { "compilerOptions": {
"experimentalDecorators": true,
"useDefineForClassFields": false,
"target": "ES2022",
"module": "ES2022", "module": "ES2022",
"target": "ES2020", "moduleResolution": "nodenext"
"moduleResolution": "Node12"
} }
} }