@dbos-inc/create 1.23.8 → 1.24.10-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 +1 -1
- package/templates/hello/eslint.config.js +3 -1
- package/templates/hello/src/operations.ts +2 -2
- package/templates/hello-drizzle/eslint.config.js +3 -1
- package/templates/hello-drizzle/src/operations.ts +1 -1
- package/templates/hello-prisma/eslint.config.js +3 -1
- package/templates/hello-prisma/src/operations.ts +1 -1
- package/templates/hello-typeorm/eslint.config.js +3 -1
- package/templates/hello-typeorm/src/operations.ts +1 -1
package/package.json
CHANGED
|
@@ -52,10 +52,10 @@ export class Hello {
|
|
|
52
52
|
<p class="mt-8 mb-8">` + message + `</p>
|
|
53
53
|
<p class="mb-2">
|
|
54
54
|
To learn how to run this app yourself, visit our
|
|
55
|
-
<a href="https://docs.dbos.dev/
|
|
55
|
+
<a href="https://docs.dbos.dev/quickstart?language=typescript" class="text-blue-600 hover:underline">Quickstart</a>.
|
|
56
56
|
</p><p class="mb-2">
|
|
57
57
|
Then, to learn how to build crashproof apps, continue to our
|
|
58
|
-
<a href="https://docs.dbos.dev/
|
|
58
|
+
<a href="https://docs.dbos.dev/typescript/programming-guide" class="text-blue-600 hover:underline">Programming Guide</a>.<br>
|
|
59
59
|
</p>
|
|
60
60
|
</body>
|
|
61
61
|
</html>`;
|
|
@@ -43,7 +43,7 @@ export class Hello {
|
|
|
43
43
|
<h1 class="text-3xl font-semibold mb-4">Welcome to DBOS!</h1>
|
|
44
44
|
<p class="mt-8 mb-8">` + message + `</p>
|
|
45
45
|
<p class="mb-2">
|
|
46
|
-
This is the Drizzle quickstart template app. Read the documentation for it <a href="https://docs.dbos.dev/tutorials/using-drizzle" class="text-blue-600 hover:underline">here</a>.
|
|
46
|
+
This is the Drizzle quickstart template app. Read the documentation for it <a href="https://docs.dbos.dev/typescript/tutorials/using-drizzle" class="text-blue-600 hover:underline">here</a>.
|
|
47
47
|
</p>
|
|
48
48
|
</body>
|
|
49
49
|
</html>`;
|
|
@@ -47,7 +47,7 @@ export class Hello {
|
|
|
47
47
|
<h1 class="text-3xl font-semibold mb-4">Welcome to DBOS!</h1>
|
|
48
48
|
<p class="mt-8 mb-8">` + message + `</p>
|
|
49
49
|
<p class="mb-2">
|
|
50
|
-
This is the Prisma quickstart template app. Read the documentation for it <a href="https://docs.dbos.dev/tutorials/using-prisma" class="text-blue-600 hover:underline">here</a>.
|
|
50
|
+
This is the Prisma quickstart template app. Read the documentation for it <a href="https://docs.dbos.dev/typescript/tutorials/using-prisma" class="text-blue-600 hover:underline">here</a>.
|
|
51
51
|
</p>
|
|
52
52
|
</body>
|
|
53
53
|
</html>`;
|
|
@@ -45,7 +45,7 @@ export class Hello {
|
|
|
45
45
|
<h1 class="text-3xl font-semibold mb-4">Welcome to DBOS!</h1>
|
|
46
46
|
<p class="mt-8 mb-8">` + message + `</p>
|
|
47
47
|
<p class="mb-2">
|
|
48
|
-
This is the TypeORM quickstart template app. Read the documentation for it <a href="https://docs.dbos.dev/tutorials/using-typeorm" class="text-blue-600 hover:underline">here</a>.
|
|
48
|
+
This is the TypeORM quickstart template app. Read the documentation for it <a href="https://docs.dbos.dev/typescript/tutorials/using-typeorm" class="text-blue-600 hover:underline">here</a>.
|
|
49
49
|
</p>
|
|
50
50
|
</body>
|
|
51
51
|
</html>`;
|