@plugjs/tsrun 0.4.16 → 0.4.18

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 +4 -4
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.16"}!
1091
+ ${$wht}-v --version ${$rst} Version! This one: ${"0.4.18"}!
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.16"}`);
1134
+ console.log(`v${"0.4.18"}`);
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.16"}).`);
1148
+ console.log(`Welcome to Node.js ${process.version} (tsrun v${"0.4.18"}).`);
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.16",
3
+ "version": "0.4.18",
4
4
  "type": "module",
5
5
  "module": "./dist/cli.mjs",
6
6
  "types": "./dist/cli.d.mts",
@@ -21,13 +21,13 @@
21
21
  "author": "Juit Developers <developers@juit.com>",
22
22
  "license": "Apache-2.0",
23
23
  "dependencies": {
24
- "esbuild": "^0.18.17"
24
+ "esbuild": "^0.19.0"
25
25
  },
26
26
  "devDependencies": {
27
- "@plugjs/eslint-plugin": "^0.1.8",
27
+ "@plugjs/eslint-plugin": "^0.1.11",
28
28
  "@types/node": "<19",
29
29
  "@types/yargs-parser": "^21.0.0",
30
- "eslint": "^8.45.0",
30
+ "eslint": "^8.46.0",
31
31
  "typescript": "^5.1.6",
32
32
  "yargs-parser": "^21.1.1"
33
33
  },