@effindomv2/fui-as 0.1.5 → 0.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@effindomv2/fui-as",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "private": false,
5
5
  "license": "AGPL-3.0-only OR LicenseRef-EffinDom-Commercial",
6
6
  "description": "EffinDom v2 AssemblyScript frontend framework SDK and browser harness",
@@ -217,6 +217,7 @@ function emitBindingsFile(
217
217
  ): string {
218
218
  const callbackImport = primitivesImportOverride ?? relativeImport(outputPath, path.resolve(PACKAGE_DIR, "src/FuiPrimitives.ts"));
219
219
  const blocks: Array<string> = [
220
+ "// @ts-nocheck",
220
221
  `// Generated by scripts/generate-host-events.ts from ${sourcePathForHeader(sourceModulePath)}#${exportName}.`,
221
222
  `import { Callback0, Callback1, Callback2 } from "${callbackImport}";`,
222
223
  "",
@@ -199,6 +199,7 @@ function emitBindingsFile(
199
199
  ): string {
200
200
  const runtimeImport = primitivesImportOverride ?? relativeImport(outputPath, path.resolve(PACKAGE_DIR, "src/FuiPrimitives.ts"));
201
201
  const blocks: Array<string> = [
202
+ "// @ts-nocheck",
202
203
  `// Generated by scripts/generate-host-services.ts from ${sourcePathForHeader(sourceModulePath)}#${exportName}.`,
203
204
  ];
204
205
  if (methods.some((method) => returnsBufferType(method.returns))) {
@@ -1,3 +1,4 @@
1
+ // @ts-nocheck
1
2
  // Generated by scripts/generate-host-services.ts from ./scripts/framework-host-services.ts#frameworkHostServices.
2
3
 
3
4
  @external("fui_host", "fui_get_accent_color")