mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 14:25:02 +00:00
- Added `jsonScript` property to metadata schema for JSON script entry points. - Refactored `generate-package.ts` to replace Lua scripts with JSON scripts for lifecycle hooks. - Updated test generation to use JSON format for metadata validation. - Modified documentation and comments to reflect the transition from Lua to JSON scripting. - Adjusted Storybook configuration and mock data to align with new JSON script structure. - Renamed relevant files and references from Lua to JSON for consistency across the project.
23 lines
786 B
JSON
23 lines
786 B
JSON
{
|
|
"$schema": "https://metabuilder.dev/schemas/test-parameters.schema.json",
|
|
"schemaVersion": "2.0.0",
|
|
"package": "nerd_mode_ide",
|
|
"description": "Parameterized test data for nerd mode IDE tests",
|
|
|
|
"parameters": {
|
|
"sampleFiles": [
|
|
{ "path": "/index.ts", "language": "typescript" },
|
|
{ "path": "/styles.css", "language": "css" },
|
|
{ "path": "/data.json", "language": "json" },
|
|
{ "path": "/script.script", "language": "script" },
|
|
{ "path": "/README.md", "language": "markdown" }
|
|
],
|
|
"gitOperations": [
|
|
{ "operation": "commit", "requiresMessage": true },
|
|
{ "operation": "push", "requiresRemote": true },
|
|
{ "operation": "pull", "requiresRemote": true }
|
|
],
|
|
"consoleLogTypes": ["info", "warn", "error", "debug"]
|
|
}
|
|
}
|