1
0
Fork 0
mirror of synced 2024-07-11 17:26:01 +12:00
budibase/packages/cli/.vscode/launch.json
Michael Shanks 11c114a664 Lots of poking around to get apps to run, plux fixing tests (#92)
ixing broken tests on client
typo in buildPage.js
fixing some server tests
local datastore uses fs-extra remove, not rmdir
client - loadBudibase - no longer destructuring arg
updated publishdev script for client (reads apps)
prettier fix
some little bug fixes
bugfix - set screens to empty array when falsy
typo in template page.json
replaced "Shard Factor" for "Estimated Count"
2020-02-12 12:45:24 +00:00

52 lines
1.7 KiB
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "init",
"program": "${workspaceFolder}\\bin\\budi",
"args": ["init", "--config", "dev"],
"console": "integratedTerminal",
"cwd": "${workspaceFolder}/sandbox"
},
{
"type": "node",
"request": "launch",
"name": "new",
"program": "${workspaceFolder}\\bin\\budi",
"args": ["new", "my-app"],
"console": "integratedTerminal",
"cwd": "${workspaceFolder}/sandbox"
},
{
"type": "node",
"request": "launch",
"name": "run",
"program": "${workspaceFolder}\\bin\\budi",
"args": ["run"],
"console": "integratedTerminal",
"cwd": "${workspaceFolder}/sandbox"
},
{
"type": "node",
"request": "launch",
"name": "instance",
"program": "${workspaceFolder}\\bin\\budi",
"args": ["instance", "my-app"],
"console": "integratedTerminal",
"cwd": "${workspaceFolder}/sandbox"
},
{
"type": "node",
"request": "launch",
"name": "budi",
"program": "${workspaceFolder}\\bin\\budi",
"console": "integratedTerminal",
"cwd": "${workspaceFolder}/sandbox"
}
]
}