mirror of
https://github.com/litruv/picoGraph.git
synced 2026-07-24 02:36:04 +10:00
Initial commit
moved from private version control
This commit is contained in:
22
scripts/nodes/library/devkit/index.js
Normal file
22
scripts/nodes/library/devkit/index.js
Normal file
@@ -0,0 +1,22 @@
|
||||
import { devkitConfigNode } from "./devkitConfig.js";
|
||||
import { devkitInputReadNode } from "./devkitInputRead.js";
|
||||
import { devkitInputWriteNode } from "./devkitInputWrite.js";
|
||||
|
||||
/**
|
||||
* Node modules covering devkit helpers.
|
||||
*/
|
||||
export const devkitNodes = [
|
||||
devkitConfigNode,
|
||||
devkitInputReadNode,
|
||||
devkitInputWriteNode,
|
||||
];
|
||||
|
||||
/**
|
||||
* Checklist tracking coverage of devkit helpers.
|
||||
* @type {Array<{ function: string, nodeId: string, implemented: boolean }>}
|
||||
*/
|
||||
export const devkitFunctionChecklist = [
|
||||
{ function: "DEVKIT_CONFIG", nodeId: "devkit_config", implemented: true },
|
||||
{ function: "DEVKIT_INPUT (read)", nodeId: "devkit_input_read", implemented: true },
|
||||
{ function: "DEVKIT_INPUT (write)", nodeId: "devkit_input_write", implemented: true },
|
||||
];
|
||||
Reference in New Issue
Block a user