generator-cloudcms
Version:
A generator for bootstrapping a new Cloud CMS project for a client engagement.
41 lines • 1.31 kB
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": "app-assets.js",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/importer/app-assets.js",
"cwd": "${workspaceFolder}/importer",
"args": [
"./input-data/categories.json",
"./input-data/EXCELfinalart.xlsx",
"test_group",
"test_artifact",
"test_version"
]
},
{
"type": "node",
"request": "launch",
"name": "app-categories.js",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/importer/app-categories.js",
"cwd": "${workspaceFolder}/importer",
"args": [
"./input-data/categories.json",
"test_group",
"test_artifact",
"test_version"
]
}
]
}