From 5f752675c75ce5e7d29e12884e5f4b3fc6f189e9 Mon Sep 17 00:00:00 2001 From: andrew Date: Sat, 20 Jan 2024 11:17:53 +0900 Subject: [PATCH] misc --- extensions/chord.runtime/ExtensionRuntime.cs | 4 ++-- extensions/edks/typescript/chord.json | 3 +-- extensions/edks/typescript/package.json | 1 + 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/extensions/chord.runtime/ExtensionRuntime.cs b/extensions/chord.runtime/ExtensionRuntime.cs index 18e513fb..44247afa 100644 --- a/extensions/chord.runtime/ExtensionRuntime.cs +++ b/extensions/chord.runtime/ExtensionRuntime.cs @@ -30,8 +30,8 @@ public ExtensionRuntime(string engineVersion, IAnsiConsole standardOut, IAnsiCon { _engine = new Engine(new Config() .WithReferenceTypes(false) - .WithDebugInfo(true) - .WithCraneliftDebugVerifier(true) + .WithDebugInfo(false) + .WithCraneliftDebugVerifier(false) .WithCompilerStrategy(CompilerStrategy.Auto) .WithBulkMemory(true) .WithMultiMemory(true) diff --git a/extensions/edks/typescript/chord.json b/extensions/edks/typescript/chord.json index b47d83e7..ba2e448f 100644 --- a/extensions/edks/typescript/chord.json +++ b/extensions/edks/typescript/chord.json @@ -1,7 +1,6 @@ { - "$schema": "../../src/jsonschema.json", "name": "javascript-template", - "private": false, + "private": true, "description": "A template for chords built with javascript", "version": "1.0.1", "repository": "https://github.com/betwixt-labs/bebopc", diff --git a/extensions/edks/typescript/package.json b/extensions/edks/typescript/package.json index 50e5ed7b..143b49c2 100644 --- a/extensions/edks/typescript/package.json +++ b/extensions/edks/typescript/package.json @@ -1,6 +1,7 @@ { "name": "javascript-example", "version": "1.0.0", + "private": true, "type": "module", "main": "index.js", "license": "MIT",