@01/launcher 1.0.14 → 1.0.15

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.
@@ -1,8 +1,8 @@
1
1
  /// <reference types="node" />
2
2
  import * as child_process from "child_process";
3
- declare type SpawnOptions = child_process.SpawnOptions;
4
- declare type LaunchMode = "program" | "cli";
5
- declare type Options = {
3
+ type SpawnOptions = child_process.SpawnOptions;
4
+ type LaunchMode = "program" | "cli";
5
+ type Options = {
6
6
  env?: string | string[];
7
7
  cmds?: string[];
8
8
  cwd?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@01/launcher",
3
- "version": "1.0.14",
3
+ "version": "1.0.15",
4
4
  "author": "Nidin Vinayakan <01@01alchemist.com>",
5
5
  "repository": "https://github.com/01alchemist/launcher",
6
6
  "private": false,
@@ -41,25 +41,25 @@
41
41
  },
42
42
  "dependencies": {
43
43
  "chalk": "3.0.0",
44
- "dotenv": "8.2.0",
45
- "minimist": "1.2.5",
46
- "tslib": "1.11.1"
44
+ "dotenv": "^16.3.1",
45
+ "minimist": "^1.2.8",
46
+ "tslib": "^2.6.2"
47
47
  },
48
48
  "devDependencies": {
49
- "@types/jest": "24.0.13",
50
- "@types/minimist": "1.2.0",
51
- "@types/node": "12.6.8",
52
- "clean-webpack-plugin": "3.0.0",
49
+ "@types/jest": "^29.5.1",
50
+ "@types/minimist": "^1.2.2",
51
+ "@types/node": "^20.1.7",
52
+ "clean-webpack-plugin": "^4.0.0",
53
53
  "fs-extra": "8.1.0",
54
- "jest": "24.8.0",
55
- "jest-cli": "24.8.0",
56
- "prettier": "1.17.1",
57
- "prettier-webpack-plugin": "1.2.0",
58
- "ts-jest": "24.0.2",
59
- "ts-loader": "6.0.4",
60
- "typescript": "3.5.1",
61
- "webpack": "4.37.0",
62
- "webpack-cli": "3.3.6",
63
- "webpack-node-externals": "1.7.2"
54
+ "jest": "^29.5.0",
55
+ "jest-cli": "^29.5.0",
56
+ "prettier": "^2.8.8",
57
+ "terser": "^5.17.4",
58
+ "ts-jest": "^29.1.0",
59
+ "ts-loader": "^9.4.2",
60
+ "typescript": "^5.0.4",
61
+ "webpack": "^5.83.1",
62
+ "webpack-cli": "^5.1.1",
63
+ "webpack-node-externals": "^3.0.0"
64
64
  }
65
65
  }