startall 0.0.3 → 0.0.9
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/.github/workflows/publish.yml +42 -6
- package/README.md +122 -122
- package/index.js +514 -340
- package/package.json +29 -27
package/package.json
CHANGED
|
@@ -1,33 +1,35 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "startall",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "",
|
|
5
|
-
"main": "index.js",
|
|
6
|
-
"bin": {
|
|
7
|
-
"startall": "
|
|
8
|
-
},
|
|
9
|
-
"scripts": {
|
|
10
|
-
"test": "echo \"Error: no test specified\" && exit 1",
|
|
11
|
-
"start": "bun index.js",
|
|
12
|
-
"demo:frontend": "node -e \"setInterval(() => console.log('Server running...'), 1000)\"",
|
|
13
|
-
"demo:backend": "node -e \"setInterval(() => console.log('API ready... API ready... API ready... API ready... API ready...'), 600)\"",
|
|
14
|
-
"demo:worker": "node -e \"setInterval(() => console.log('Processing jobs...'), 500)\"",
|
|
15
|
-
"demo:worker2": "node -e \"setInterval(() => console.log('Processing jobs...'), 100)\""
|
|
16
|
-
|
|
17
|
-
"
|
|
1
|
+
{
|
|
2
|
+
"name": "startall",
|
|
3
|
+
"version": "0.0.9",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"startall": "index.js"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
11
|
+
"start": "bun index.js",
|
|
12
|
+
"demo:frontend": "node -e \"setInterval(() => console.log('Server running...'), 1000)\"",
|
|
13
|
+
"demo:backend": "node -e \"setInterval(() => console.log('API ready... API ready... API ready... API ready... API ready...'), 600)\"",
|
|
14
|
+
"demo:worker": "node -e \"setInterval(() => console.log('Processing jobs...'), 500)\"",
|
|
15
|
+
"demo:worker2": "node -e \"setInterval(() => console.log('Processing jobs...'), 100)\"",
|
|
16
|
+
"demo:errors": "node -e \"setInterval(() => { console.log('\\x1b[32mOK: All good\\x1b[0m'); console.log('\\x1b[33mWARN: Deprecated API used\\x1b[0m'); console.log('\\x1b[31mERROR: Connection failed\\x1b[0m'); console.log('Normal log message'); }, 2000)\"",
|
|
17
|
+
"demo:build": "node -e \"let i=0; setInterval(() => { i++; if(i%5===0) console.log('\\x1b[31mError: Type mismatch in file.ts:42\\x1b[0m'); else if(i%3===0) console.log('\\x1b[33mWarning: Unused variable\\x1b[0m'); else console.log('\\x1b[36mCompiling module ' + i + '...\\x1b[0m'); }, 800)\""
|
|
18
|
+
},
|
|
19
|
+
"keywords": [],
|
|
18
20
|
"author": "",
|
|
19
21
|
"license": "ISC",
|
|
20
22
|
"repository": {
|
|
21
23
|
"type": "git",
|
|
22
24
|
"url": "git+https://github.com/bzbetty/startall.git"
|
|
23
25
|
},
|
|
24
|
-
"type": "module",
|
|
25
|
-
"dependencies": {
|
|
26
|
-
"@opentui/core": "^0.1.74",
|
|
27
|
-
"@opentui/react": "^0.1.74",
|
|
28
|
-
"chalk": "^5.6.2",
|
|
29
|
-
"react": "^19.2.3",
|
|
30
|
-
"strip-ansi": "^7.1.2",
|
|
31
|
-
"tree-kill": "^1.2.2"
|
|
32
|
-
}
|
|
33
|
-
}
|
|
26
|
+
"type": "module",
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"@opentui/core": "^0.1.74",
|
|
29
|
+
"@opentui/react": "^0.1.74",
|
|
30
|
+
"chalk": "^5.6.2",
|
|
31
|
+
"react": "^19.2.3",
|
|
32
|
+
"strip-ansi": "^7.1.2",
|
|
33
|
+
"tree-kill": "^1.2.2"
|
|
34
|
+
}
|
|
35
|
+
}
|