chore: fix type issues

This commit is contained in:
Johann Schopplich
2025-11-01 17:15:37 +01:00
parent 0710bd19e7
commit 5f09a14c61
2 changed files with 2 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
import * as fsp from 'node:fs/promises' import * as fsp from 'node:fs/promises'
import * as path from 'node:path' import * as path from 'node:path'
import * as prompts from '@clack/prompts' import * as prompts from '@clack/prompts'
import { encode } from '../../src/index' import { encode } from '../../packages/toon/src'
import githubRepos from '../data/github-repos.json' with { type: 'json' } import githubRepos from '../data/github-repos.json' with { type: 'json' }
import { BENCHMARKS_DIR, FORMATTER_DISPLAY_NAMES, ROOT_DIR } from '../src/constants' import { BENCHMARKS_DIR, FORMATTER_DISPLAY_NAMES, ROOT_DIR } from '../src/constants'
import { generateAnalyticsData, generateOrderData } from '../src/datasets' import { generateAnalyticsData, generateOrderData } from '../src/datasets'

View File

@@ -1,7 +1,7 @@
import { stringify as stringifyCSV } from 'csv-stringify/sync' import { stringify as stringifyCSV } from 'csv-stringify/sync'
import { XMLBuilder } from 'fast-xml-parser' import { XMLBuilder } from 'fast-xml-parser'
import { stringify as stringifyYAML } from 'yaml' import { stringify as stringifyYAML } from 'yaml'
import { encode as encodeToon } from '../../src/index' import { encode as encodeToon } from '../../packages/toon/src'
/** /**
* Format converters registry * Format converters registry