core/tools/heimdall-test.prj.json

49 lines
913 B
JSON
Raw Permalink Normal View History

2023-08-03 08:34:33 +02:00
{
"name": "heimdall-test",
"dependencies": [
"heimdall-core.prj.json"
],
"roottask": {
2023-08-31 16:00:36 +02:00
"name": "all",
"type": "group",
2023-08-03 08:34:33 +02:00
"sub": [
{
2023-08-31 16:00:36 +02:00
"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",
2023-08-03 08:34:33 +02:00
"parameters": {
"inputs": [
2023-08-31 16:00:36 +02:00
"lib/plankton/plankton.js",
"temp/heimdall-core.js",
"temp/heimdall-test.mocha.raw.js"
2023-08-03 08:34:33 +02:00
],
2023-08-31 16:00:36 +02:00
"output": "build/heimdall-test.mocha.js"
}
},
{
"name": "data",
"type": "copy",
"parameters": {
"input": "source/test/data.json",
"output": "build/test-data.json"
2023-08-03 08:34:33 +02:00
}
}
2023-08-31 16:00:36 +02:00
]
2023-08-03 08:34:33 +02:00
}
}