@ms-cloudpack/cli 0.23.13 → 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.
Files changed (42) hide show
  1. package/lib/commands/start/appServer/createRoutes.d.ts +14 -0
  2. package/lib/commands/start/appServer/createRoutes.js +69 -0
  3. package/lib/commands/start/appServer/createRoutes.js.map +1 -0
  4. package/lib/commands/start/appServer/error.d.ts +1 -0
  5. package/lib/commands/start/appServer/error.js +4 -0
  6. package/lib/commands/start/appServer/error.js.map +1 -0
  7. package/lib/commands/start/appServer/exitIfPortUnavailable.d.ts +4 -0
  8. package/lib/commands/start/appServer/exitIfPortUnavailable.js +15 -0
  9. package/lib/commands/start/appServer/exitIfPortUnavailable.js.map +1 -0
  10. package/lib/commands/start/appServer/getDefaultHtmlResponse.d.ts +5 -0
  11. package/lib/commands/start/appServer/getDefaultHtmlResponse.js +18 -0
  12. package/lib/commands/start/appServer/getDefaultHtmlResponse.js.map +1 -0
  13. package/lib/commands/start/appServer/getHtmlResponse.d.ts +5 -0
  14. package/lib/commands/start/appServer/getHtmlResponse.js +108 -0
  15. package/lib/commands/start/appServer/getHtmlResponse.js.map +1 -0
  16. package/lib/commands/start/appServer/handleSessionVersion.d.ts +7 -0
  17. package/lib/commands/start/appServer/handleSessionVersion.js +12 -0
  18. package/lib/commands/start/appServer/handleSessionVersion.js.map +1 -0
  19. package/lib/commands/start/{inlineScripts.d.ts → appServer/inlineScripts.d.ts} +0 -0
  20. package/lib/commands/start/{inlineScripts.js → appServer/inlineScripts.js} +0 -0
  21. package/lib/commands/start/appServer/inlineScripts.js.map +1 -0
  22. package/lib/commands/start/appServer/log.d.ts +1 -0
  23. package/lib/commands/start/appServer/log.js +5 -0
  24. package/lib/commands/start/appServer/log.js.map +1 -0
  25. package/lib/commands/start/appServer/setHeaders.d.ts +10 -0
  26. package/lib/commands/start/appServer/setHeaders.js +13 -0
  27. package/lib/commands/start/appServer/setHeaders.js.map +1 -0
  28. package/lib/commands/start/{startAppServer.d.ts → appServer/startAppServer.d.ts} +5 -5
  29. package/lib/commands/start/appServer/startAppServer.js +48 -0
  30. package/lib/commands/start/appServer/startAppServer.js.map +1 -0
  31. package/lib/commands/start/createBundleTask.js +0 -1
  32. package/lib/commands/start/createBundleTask.js.map +1 -1
  33. package/lib/commands/start/start.js +12 -3
  34. package/lib/commands/start/start.js.map +1 -1
  35. package/lib/index.d.ts +1 -0
  36. package/lib/types.d.ts +65 -2
  37. package/package.json +11 -9
  38. package/CHANGELOG.json +0 -2142
  39. package/CHANGELOG.md +0 -804
  40. package/lib/commands/start/inlineScripts.js.map +0 -1
  41. package/lib/commands/start/startAppServer.js +0 -155
  42. 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.13",
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,20 +16,21 @@
16
16
  "cloudpack": "./bin/cloudpack.js"
17
17
  },
18
18
  "dependencies": {
19
- "@ms-cloudpack/bundler": "^0.9.2",
20
- "@ms-cloudpack/create-express-app": "^1.1.4",
21
- "@ms-cloudpack/data-bus": "^0.1.0",
19
+ "@ms-cloudpack/bundler": "^0.9.4",
20
+ "@ms-cloudpack/create-express-app": "^1.1.6",
21
+ "@ms-cloudpack/data-bus": "^0.1.1",
22
22
  "@ms-cloudpack/json-utilities": "^0.0.4",
23
- "@ms-cloudpack/overlay": "^0.11.2",
24
- "@ms-cloudpack/package-utilities": "^2.3.0",
25
- "@ms-cloudpack/path-utilities": "^2.0.0",
26
- "@ms-cloudpack/path-string-parsing": "^1.0.0",
23
+ "@ms-cloudpack/overlay": "^0.11.3",
24
+ "@ms-cloudpack/package-utilities": "^2.3.1",
25
+ "@ms-cloudpack/path-utilities": "^2.0.1",
26
+ "@ms-cloudpack/path-string-parsing": "^1.0.1",
27
27
  "chokidar": "^3.5.3",
28
28
  "commander": "^9.1.0",
29
29
  "es-module-lexer": "^1.0.3",
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"
@@ -59,6 +61,6 @@
59
61
  "test": "cloudpack-scripts test"
60
62
  },
61
63
  "files": [
62
- "/lib"
64
+ "lib/**/!(*.test.*)"
63
65
  ]
64
66
  }