From c541d2714955da59cacc078ffbb1bafeac8dc932 Mon Sep 17 00:00:00 2001 From: Chance Snow Date: Fri, 23 Feb 2024 21:55:10 -0600 Subject: [PATCH] Add a shapes example debug task --- .nova/Tasks/Shapes.json | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .nova/Tasks/Shapes.json diff --git a/.nova/Tasks/Shapes.json b/.nova/Tasks/Shapes.json new file mode 100644 index 0000000..d82c424 --- /dev/null +++ b/.nova/Tasks/Shapes.json @@ -0,0 +1,29 @@ +{ + "actions" : { + "build" : { + "postActions" : [ + { + "sound" : "Funk", + "type" : "sound" + } + ], + "preActions" : [ + { + "script" : "#!\/bin\/sh\nsource ~\/dlang\/ldc-1.36.0\/activate\ndub build playdate:shapes", + "type" : "runScript" + } + ] + } + }, + "extension" : { + "identifier" : "com.panic.Playdate", + "name" : "Playdate" + }, + "extensionTemplate" : "simulator", + "extensionValues" : { + "playdate.build-type" : "pdc", + "playdate.main-path" : "examples\/shapes\/dist", + "playdate.product-name" : "app" + }, + "openLogOnRun" : "fail" +}