Compare commits
10 Commits
Author | SHA1 | Date | |
---|---|---|---|
5efd905068 | |||
ae01679474 | |||
f0bdfa9a65 | |||
a88cf067a1 | |||
c5cd30e20e | |||
02eb0c5435 | |||
6ab3ed21e0 | |||
2f5374be50 | |||
1577265f6b | |||
3b9532bb70 |
20
package.json
20
package.json
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gitzone/tsrun",
|
||||
"version": "1.2.41",
|
||||
"name": "@git.zone/tsrun",
|
||||
"version": "1.2.46",
|
||||
"description": "run typescript programs efficiently",
|
||||
"main": "dist_ts/index.js",
|
||||
"typings": "dist_ts/index.d.ts",
|
||||
@ -17,16 +17,16 @@
|
||||
"buildDocs": "tsdoc"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@gitzone/tsbuild": "^2.1.63",
|
||||
"@pushrocks/smartcli": "^4.0.6",
|
||||
"@types/node": "^20.2.5",
|
||||
"node-fetch": "^3.3.1"
|
||||
"@git.zone/tsbuild": "^2.1.69",
|
||||
"@push.rocks/smartcli": "^4.0.8",
|
||||
"@types/node": "^20.5.6",
|
||||
"node-fetch": "^3.3.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"@pushrocks/smartfile": "^10.0.7",
|
||||
"@pushrocks/smartshell": "^2.0.30",
|
||||
"ts-node": "^10.8.1",
|
||||
"typescript": "^5.1.3"
|
||||
"@push.rocks/smartfile": "^10.0.30",
|
||||
"@push.rocks/smartshell": "^3.0.3",
|
||||
"ts-node": "^10.9.1",
|
||||
"typescript": "5.1.6"
|
||||
},
|
||||
"private": false,
|
||||
"files": [
|
||||
|
885
pnpm-lock.yaml
generated
885
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@ -2,7 +2,7 @@ const textToPost: string = 'Test runs!';
|
||||
console.log(textToPost);
|
||||
|
||||
const run = async () => {
|
||||
const smartcli = await import('@pushrocks/smartcli');
|
||||
const smartcli = await import('@push.rocks/smartcli');
|
||||
const smartcliInstance = new smartcli.Smartcli();
|
||||
console.log(process.argv);
|
||||
smartcliInstance.addCommand('sayhello').subscribe(async (argvArg) => {
|
||||
|
@ -2,7 +2,7 @@
|
||||
* autocreated commitinfo by @pushrocks/commitinfo
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@gitzone/tsrun',
|
||||
version: '1.2.41',
|
||||
name: '@git.zone/tsrun',
|
||||
version: '1.2.46',
|
||||
description: 'run typescript programs efficiently'
|
||||
}
|
||||
|
@ -10,7 +10,7 @@ const defaultTsNodeOptions: plugins.tsNode.CreateOptions = {
|
||||
esModuleInterop: true,
|
||||
strictNullChecks: false,
|
||||
moduleResolution: <any>'nodenext',
|
||||
module: <any>'ESNext',
|
||||
module: <any>'nodenext',
|
||||
verbatimModuleSyntax: true,
|
||||
} as CompilerOptions,
|
||||
esm: true,
|
||||
|
@ -5,7 +5,7 @@ import * as url from 'url';
|
||||
export { path, url };
|
||||
|
||||
// @pushrocks scope
|
||||
import * as smartshell from '@pushrocks/smartshell';
|
||||
import * as smartshell from '@push.rocks/smartshell';
|
||||
|
||||
export { smartshell };
|
||||
|
||||
|
Reference in New Issue
Block a user