@dbos-inc/create 1.20.21 → 1.21.8-preview
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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dbos-inc/create",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.21.8-preview",
|
|
4
4
|
"description": "Tool for performing project initialization from template",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@inquirer/prompts": "^5.3.8",
|
|
29
|
-
"axios": "^1.
|
|
29
|
+
"axios": "^1.7.4",
|
|
30
30
|
"chalk": "4.1.2",
|
|
31
31
|
"commander": "^12.0.0",
|
|
32
32
|
"fast-glob": "^3.3.2",
|
|
@@ -13,7 +13,7 @@ export class Hello {
|
|
|
13
13
|
static async readme(_ctxt: HandlerContext) {
|
|
14
14
|
const readme = `<html><body><p>
|
|
15
15
|
Welcome to the DBOS Hello App!<br><br>
|
|
16
|
-
Visit the route /greeting/:name to be greeted!<br>
|
|
16
|
+
Visit the route /greeting/:name to be greeted!<br>
|
|
17
17
|
For example, visit <a href="/greeting/dbos">/greeting/dbos</a>.<br>
|
|
18
18
|
The counter increments with each page visit.<br>
|
|
19
19
|
If you visit a new name like <a href="/greeting/alice">/greeting/alice</a>, the counter starts at 1.
|