@01/launcher 1.0.14 → 1.0.17

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/package.json CHANGED
@@ -1,10 +1,16 @@
1
1
  {
2
2
  "name": "@01/launcher",
3
- "version": "1.0.14",
4
- "author": "Nidin Vinayakan <01@01alchemist.com>",
5
- "repository": "https://github.com/01alchemist/launcher",
6
- "private": false,
7
- "license": "LICENSE",
3
+ "version": "1.0.17",
4
+ "author": "01 Alchemist <01@01alchemist.com>",
5
+ "publishConfig": {
6
+ "registry": "https://registry.npmjs.org"
7
+ },
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/01alchemist/web-service-lib.git",
11
+ "directory": "packages/launcher"
12
+ },
13
+ "license": "UNLICENSED",
8
14
  "keywords": [
9
15
  "process",
10
16
  "launcher",
@@ -25,9 +31,14 @@
25
31
  "launch": "./cli/index"
26
32
  },
27
33
  "scripts": {
28
- "start": "webpack --watch",
29
- "build.dev": "webpack",
30
- "build": "NODE_ENV=production webpack",
34
+ "yalc:publish": "yalc publish --push --sig",
35
+ "start": "vite",
36
+ "build.dev": "vite build",
37
+ "dev.build": "NODE_ENV=production vite build && yalc push",
38
+ "build": "NODE_ENV=production vite build",
39
+ "yalc.retreat": "yalc retreat --all",
40
+ "publish-pkg2": "../../scripts/publish-package.js $PWD",
41
+ "publish-pkg": "npm publish",
31
42
  "precommit": "lint-staged",
32
43
  "test": "echo no tests",
33
44
  "prettier": "prettier --write '**/*.{js,json,ts,gql,graphql}'",
@@ -41,25 +52,20 @@
41
52
  },
42
53
  "dependencies": {
43
54
  "chalk": "3.0.0",
44
- "dotenv": "8.2.0",
45
- "minimist": "1.2.5",
46
- "tslib": "1.11.1"
55
+ "dotenv": "^16.3.1",
56
+ "minimist": "^1.2.8",
57
+ "tslib": "^2.6.2"
47
58
  },
48
59
  "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",
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"
60
+ "@01/core-tools": "^1.0.1",
61
+ "@types/jest": "^29.5.1",
62
+ "@types/minimist": "^1.2.2",
63
+ "@types/node": "^20.1.7",
64
+ "jest": "^29.5.0",
65
+ "jest-cli": "^29.5.0",
66
+ "prettier": "^2.8.8",
67
+ "terser": "^5.17.4",
68
+ "ts-jest": "^29.1.0",
69
+ "typescript": "^5.0.4"
64
70
  }
65
71
  }
package/dist/index.d.ts DELETED
@@ -1 +0,0 @@
1
- export * from "./launch-base";
@@ -1,14 +0,0 @@
1
- /// <reference types="node" />
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 = {
6
- env?: string | string[];
7
- cmds?: string[];
8
- cwd?: string;
9
- mode?: LaunchMode;
10
- exitProcessOnClose?: boolean;
11
- silent?: boolean;
12
- } & SpawnOptions;
13
- export declare function launch(_options?: Options): Promise<string>;
14
- export default launch;
@@ -1,4 +0,0 @@
1
- export declare const terminal: {
2
- log: (...args: any) => void;
3
- };
4
- export default terminal;