@dbos-inc/create 1.8.13-preview → 1.8.16-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.8.13-preview",
3
+ "version": "1.8.16-preview",
4
4
  "description": "Tool for performing project initialization from template",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -0,0 +1,7 @@
1
+ {
2
+ // Automatically recommend the DBOS extension to VSCode users.
3
+ // Documentation on extensions.json: http://go.microsoft.com/fwlink/?LinkId=827846
4
+ "recommendations": [
5
+ "dbos-inc.dbos-ttdbg"
6
+ ]
7
+ }
@@ -0,0 +1,21 @@
1
+ {
2
+ // Automatically configure the VSCode debugger for DBOS projects.
3
+ // Documentation on launch.json: https://go.microsoft.com/fwlink/?linkid=830387
4
+ "version": "0.2.0",
5
+ "configurations": [
6
+ {
7
+ "type": "node-terminal",
8
+ "request": "launch",
9
+ "name": "Local Debug",
10
+ "command": "npx dbos start",
11
+ "preLaunchTask": "npm: build",
12
+ },
13
+ {
14
+ "type": "node-terminal",
15
+ "request": "launch",
16
+ "name": "Time Travel Debug",
17
+ "command": "npx dbos debug -x ${command:dbos-ttdbg.get-proxy-url} -u ${command:dbos-ttdbg.pick-workflow-id}",
18
+ "preLaunchTask": "npm: build"
19
+ }
20
+ ]
21
+ }
@@ -0,0 +1,19 @@
1
+ {
2
+ // Configure the build command for DBOS projects using VSCode.
3
+ // Documentation on tasks.json: https://code.visualstudio.com/docs/editor/tasks
4
+ "version": "2.0.0",
5
+ "tasks": [
6
+ {
7
+ "label": "npm: build",
8
+ "type": "npm",
9
+ "script": "build",
10
+ "group": {
11
+ "kind": "build",
12
+ "isDefault": true
13
+ },
14
+ "problemMatcher": [
15
+ "$tsc"
16
+ ]
17
+ }
18
+ ]
19
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ // Automatically recommend the DBOS extension to VSCode users.
3
+ // Documentation on extensions.json: http://go.microsoft.com/fwlink/?LinkId=827846
4
+ "recommendations": [
5
+ "dbos-inc.dbos-ttdbg"
6
+ ]
7
+ }
@@ -0,0 +1,21 @@
1
+ {
2
+ // Automatically configure the VSCode debugger for DBOS projects.
3
+ // Documentation on launch.json: https://go.microsoft.com/fwlink/?linkid=830387
4
+ "version": "0.2.0",
5
+ "configurations": [
6
+ {
7
+ "type": "node-terminal",
8
+ "request": "launch",
9
+ "name": "Local Debug",
10
+ "command": "npx dbos start",
11
+ "preLaunchTask": "npm: build",
12
+ },
13
+ {
14
+ "type": "node-terminal",
15
+ "request": "launch",
16
+ "name": "Time Travel Debug",
17
+ "command": "npx dbos debug -x ${command:dbos-ttdbg.get-proxy-url} -u ${command:dbos-ttdbg.pick-workflow-id}",
18
+ "preLaunchTask": "npm: build"
19
+ }
20
+ ]
21
+ }
@@ -0,0 +1,19 @@
1
+ {
2
+ // Configure the build command for DBOS projects using VSCode.
3
+ // Documentation on tasks.json: https://code.visualstudio.com/docs/editor/tasks
4
+ "version": "2.0.0",
5
+ "tasks": [
6
+ {
7
+ "label": "npm: build",
8
+ "type": "npm",
9
+ "script": "build",
10
+ "group": {
11
+ "kind": "build",
12
+ "isDefault": true
13
+ },
14
+ "problemMatcher": [
15
+ "$tsc"
16
+ ]
17
+ }
18
+ ]
19
+ }