49 lines
913 B
JSON
49 lines
913 B
JSON
{
|
|
"name": "heimdall-test",
|
|
"dependencies": [
|
|
"heimdall-core.prj.json"
|
|
],
|
|
"roottask": {
|
|
"name": "all",
|
|
"type": "group",
|
|
"sub": [
|
|
{
|
|
"name": "link",
|
|
"sub": [
|
|
{
|
|
"name": "compile",
|
|
"type": "typescript",
|
|
"parameters": {
|
|
"inputs": [
|
|
"lib/plankton/plankton.d.ts",
|
|
"temp/heimdall-core.d.ts",
|
|
"source/test/test.mocha.ts"
|
|
],
|
|
"target": "es2020",
|
|
"strict": true,
|
|
"output": "temp/heimdall-test.mocha.raw.js"
|
|
}
|
|
}
|
|
],
|
|
"type": "concat",
|
|
"parameters": {
|
|
"inputs": [
|
|
"lib/plankton/plankton.js",
|
|
"temp/heimdall-core.js",
|
|
"temp/heimdall-test.mocha.raw.js"
|
|
],
|
|
"output": "build/heimdall-test.mocha.js"
|
|
}
|
|
},
|
|
{
|
|
"name": "data",
|
|
"type": "copy",
|
|
"parameters": {
|
|
"input": "source/test/data.json",
|
|
"output": "build/test-data.json"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|