@plugjs/tsrun 0.4.28 → 0.4.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/tsrun.mjs +3 -3
- package/package.json +2 -2
package/dist/tsrun.mjs
CHANGED
|
@@ -1088,7 +1088,7 @@ function _help() {
|
|
|
1088
1088
|
${$blu}${$und}Options:${$rst}
|
|
1089
1089
|
|
|
1090
1090
|
${$wht}-h --help ${$rst} Help! You're reading it now!
|
|
1091
|
-
${$wht}-v --version ${$rst} Version! This one: ${"0.4.
|
|
1091
|
+
${$wht}-v --version ${$rst} Version! This one: ${"0.4.29"}!
|
|
1092
1092
|
${$wht}-e --eval ${$rst} Evaluate the script
|
|
1093
1093
|
${$wht}-p --print ${$rst} Evaluate the script and print the result
|
|
1094
1094
|
${$wht} --force-esm${$rst} Force transpilation of ".ts" files to EcmaScript modules
|
|
@@ -1131,7 +1131,7 @@ main(import.meta.url, (args) => {
|
|
|
1131
1131
|
case "help":
|
|
1132
1132
|
return _help();
|
|
1133
1133
|
case "version":
|
|
1134
|
-
console.log(`v${"0.4.
|
|
1134
|
+
console.log(`v${"0.4.29"}`);
|
|
1135
1135
|
process.exitCode = 1;
|
|
1136
1136
|
return;
|
|
1137
1137
|
case "eval":
|
|
@@ -1145,7 +1145,7 @@ main(import.meta.url, (args) => {
|
|
|
1145
1145
|
}
|
|
1146
1146
|
if (!_script) {
|
|
1147
1147
|
return new Promise((resolve2, reject) => {
|
|
1148
|
-
console.log(`Welcome to Node.js ${process.version} (tsrun v${"0.4.
|
|
1148
|
+
console.log(`Welcome to Node.js ${process.version} (tsrun v${"0.4.29"}).`);
|
|
1149
1149
|
console.log('Type ".help" for more information.');
|
|
1150
1150
|
const repl = _repl.start();
|
|
1151
1151
|
const history = _path.resolve(_os.homedir(), ".node_repl_history");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plugjs/tsrun",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.29",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"module": "./dist/cli.mjs",
|
|
6
6
|
"types": "./dist/cli.d.mts",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"author": "Juit Developers <developers@juit.com>",
|
|
22
22
|
"license": "Apache-2.0",
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"esbuild": "^0.19.
|
|
24
|
+
"esbuild": "^0.19.8"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@plugjs/eslint-plugin": "^0.1.15",
|