@ms-cloudpack/cli 0.23.14 → 0.23.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.
- package/lib/commands/start/appServer/createRoutes.d.ts +14 -0
- package/lib/commands/start/appServer/createRoutes.js +69 -0
- package/lib/commands/start/appServer/createRoutes.js.map +1 -0
- package/lib/commands/start/appServer/error.d.ts +1 -0
- package/lib/commands/start/appServer/error.js +4 -0
- package/lib/commands/start/appServer/error.js.map +1 -0
- package/lib/commands/start/appServer/exitIfPortUnavailable.d.ts +4 -0
- package/lib/commands/start/appServer/exitIfPortUnavailable.js +15 -0
- package/lib/commands/start/appServer/exitIfPortUnavailable.js.map +1 -0
- package/lib/commands/start/appServer/getDefaultHtmlResponse.d.ts +5 -0
- package/lib/commands/start/appServer/getDefaultHtmlResponse.js +18 -0
- package/lib/commands/start/appServer/getDefaultHtmlResponse.js.map +1 -0
- package/lib/commands/start/appServer/getHtmlResponse.d.ts +5 -0
- package/lib/commands/start/appServer/getHtmlResponse.js +108 -0
- package/lib/commands/start/appServer/getHtmlResponse.js.map +1 -0
- package/lib/commands/start/appServer/handleSessionVersion.d.ts +7 -0
- package/lib/commands/start/appServer/handleSessionVersion.js +12 -0
- package/lib/commands/start/appServer/handleSessionVersion.js.map +1 -0
- package/lib/commands/start/{inlineScripts.d.ts → appServer/inlineScripts.d.ts} +0 -0
- package/lib/commands/start/{inlineScripts.js → appServer/inlineScripts.js} +0 -0
- package/lib/commands/start/appServer/inlineScripts.js.map +1 -0
- package/lib/commands/start/appServer/log.d.ts +1 -0
- package/lib/commands/start/appServer/log.js +5 -0
- package/lib/commands/start/appServer/log.js.map +1 -0
- package/lib/commands/start/appServer/setHeaders.d.ts +10 -0
- package/lib/commands/start/appServer/setHeaders.js +13 -0
- package/lib/commands/start/appServer/setHeaders.js.map +1 -0
- package/lib/commands/start/{startAppServer.d.ts → appServer/startAppServer.d.ts} +5 -5
- package/lib/commands/start/appServer/startAppServer.js +48 -0
- package/lib/commands/start/appServer/startAppServer.js.map +1 -0
- package/lib/commands/start/createBundleTask.js +0 -1
- package/lib/commands/start/createBundleTask.js.map +1 -1
- package/lib/commands/start/start.js +12 -3
- package/lib/commands/start/start.js.map +1 -1
- package/lib/index.d.ts +1 -0
- package/lib/types.d.ts +65 -2
- package/package.json +5 -3
- package/CHANGELOG.json +0 -2199
- package/CHANGELOG.md +0 -819
- package/lib/commands/start/inlineScripts.js.map +0 -1
- package/lib/commands/start/startAppServer.js +0 -155
- package/lib/commands/start/startAppServer.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ms-cloudpack/cli",
|
|
3
|
-
"version": "0.23.
|
|
3
|
+
"version": "0.23.15",
|
|
4
4
|
"description": "The Cloudpack command line interface - a tool for managing fast inner and outer looping in web apps.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -16,8 +16,8 @@
|
|
|
16
16
|
"cloudpack": "./bin/cloudpack.js"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@ms-cloudpack/bundler": "^0.9.
|
|
20
|
-
"@ms-cloudpack/create-express-app": "^1.1.
|
|
19
|
+
"@ms-cloudpack/bundler": "^0.9.4",
|
|
20
|
+
"@ms-cloudpack/create-express-app": "^1.1.6",
|
|
21
21
|
"@ms-cloudpack/data-bus": "^0.1.1",
|
|
22
22
|
"@ms-cloudpack/json-utilities": "^0.0.4",
|
|
23
23
|
"@ms-cloudpack/overlay": "^0.11.3",
|
|
@@ -30,6 +30,7 @@
|
|
|
30
30
|
"filenamify": "^5.1.0",
|
|
31
31
|
"fs-extra": "^10.1.0",
|
|
32
32
|
"glob": "^8.0.0",
|
|
33
|
+
"jsdom": "^21.1.0",
|
|
33
34
|
"object-hash": "^3.0.0",
|
|
34
35
|
"open": "^8.4.0",
|
|
35
36
|
"p-queue": "^7.3.0",
|
|
@@ -43,6 +44,7 @@
|
|
|
43
44
|
"@ms-cloudpack/scripts": "*",
|
|
44
45
|
"@types/chokidar": "2.1.3",
|
|
45
46
|
"@types/glob": "8.0.1",
|
|
47
|
+
"@types/jsdom": "20.0.1",
|
|
46
48
|
"@types/object-hash": "3.0.2",
|
|
47
49
|
"@types/uuid": "9.0.0",
|
|
48
50
|
"@types/ws": "8.5.4"
|