@plugjs/tsrun 0.5.67 → 0.5.69

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.
Files changed (2) hide show
  1. package/dist/tsrun.mjs +3 -3
  2. package/package.json +3 -3
package/dist/tsrun.mjs CHANGED
@@ -1090,7 +1090,7 @@ function _help() {
1090
1090
  ${$blu}${$und}Options:${$rst}
1091
1091
 
1092
1092
  ${$wht}-h --help ${$rst} Help! You're reading it now!
1093
- ${$wht}-v --version ${$rst} Version! This one: ${"0.5.67"}!
1093
+ ${$wht}-v --version ${$rst} Version! This one: ${"0.5.69"}!
1094
1094
  ${$wht}-e --eval ${$rst} Evaluate the script
1095
1095
  ${$wht}-p --print ${$rst} Evaluate the script and print the result
1096
1096
  ${$wht} --force-esm${$rst} Force transpilation of ".ts" files to EcmaScript modules
@@ -1133,7 +1133,7 @@ main(import.meta.url, (args) => {
1133
1133
  case "help":
1134
1134
  return _help();
1135
1135
  case "version":
1136
- console.log(`v${"0.5.67"}`);
1136
+ console.log(`v${"0.5.69"}`);
1137
1137
  process.exitCode = 1;
1138
1138
  return;
1139
1139
  case "eval":
@@ -1147,7 +1147,7 @@ main(import.meta.url, (args) => {
1147
1147
  }
1148
1148
  if (!_script) {
1149
1149
  return new Promise((resolve2, reject) => {
1150
- console.log(`Welcome to Node.js ${process.version} (tsrun v${"0.5.67"}).`);
1150
+ console.log(`Welcome to Node.js ${process.version} (tsrun v${"0.5.69"}).`);
1151
1151
  console.log('Type ".help" for more information.');
1152
1152
  const repl = _repl.start();
1153
1153
  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.5.67",
3
+ "version": "0.5.69",
4
4
  "type": "module",
5
5
  "module": "./dist/cli.mjs",
6
6
  "types": "./dist/cli.d.mts",
@@ -26,10 +26,10 @@
26
26
  },
27
27
  "devDependencies": {
28
28
  "@plugjs/cov8": "^0.6.39",
29
- "@plugjs/eslint-plugin": "^0.3.16",
29
+ "@plugjs/eslint-plugin": "^0.3.18",
30
30
  "@types/node": "<21",
31
31
  "@types/yargs-parser": "^21.0.3",
32
- "eslint": "^9.22.0",
32
+ "eslint": "^9.23.0",
33
33
  "typescript": "^5.8.2",
34
34
  "yargs-parser": "^21.1.1"
35
35
  },