@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/README.md +1 -1
- package/dist/index.js +102 -1043
- package/package.json +32 -26
- package/dist/index.d.ts +0 -1
- package/dist/launch-base.d.ts +0 -14
- package/dist/terminal.d.ts +0 -4
package/package.json
CHANGED
|
@@ -1,10 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@01/launcher",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"author": "
|
|
5
|
-
"
|
|
6
|
-
|
|
7
|
-
|
|
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
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"build": "
|
|
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": "
|
|
45
|
-
"minimist": "1.2.
|
|
46
|
-
"tslib": "
|
|
55
|
+
"dotenv": "^16.3.1",
|
|
56
|
+
"minimist": "^1.2.8",
|
|
57
|
+
"tslib": "^2.6.2"
|
|
47
58
|
},
|
|
48
59
|
"devDependencies": {
|
|
49
|
-
"@
|
|
50
|
-
"@types/
|
|
51
|
-
"@types/
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"jest": "
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
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";
|
package/dist/launch-base.d.ts
DELETED
|
@@ -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;
|
package/dist/terminal.d.ts
DELETED