@euglena/cli
Version:
Command Line Interface to create and manage euglena projects as simple as possible
22 lines • 488 B
JSON
{
"version": "0.1.0",
"command": "npm",
"isShellCommand": true,
"suppressTaskName": true,
"tasks": [
{
// Build task, Ctrl+Shift+B
// "npm run build"
"taskName": "build",
"isBuildCommand": true,
"args": ["run", "build"]
},
{
// Test task, Ctrl+Shift+T
// "npm test"
"taskName": "test",
"isTestCommand": true,
"args": ["test"]
}
]
}