chore: deps

This commit is contained in:
iCrawl
2023-08-22 00:30:08 +02:00
parent 899bc5f78b
commit 5d7c59c301
51 changed files with 1805 additions and 2054 deletions

View File

@@ -43,18 +43,18 @@
"dependencies": {
"commander": "^11.0.0",
"jsdoc-to-markdown": "^8.0.0",
"tslib": "^2.6.1",
"tslib": "^2.6.2",
"typedoc": "^0.24.8"
},
"devDependencies": {
"@favware/cliff-jumper": "^2.1.1",
"@types/jsdoc-to-markdown": "^7.0.3",
"@types/node": "16.18.40",
"@types/node": "16.18.41",
"cross-env": "^7.0.3",
"eslint": "^8.47.0",
"eslint-config-neon": "^0.1.47",
"eslint-formatter-pretty": "^5.0.0",
"prettier": "^2.8.8",
"prettier": "^3.0.2",
"tsup": "^7.2.0",
"turbo": "^1.10.12",
"typescript": "^5.1.6"

View File

@@ -2,7 +2,10 @@ import type { DeclarationReflection } from 'typedoc';
import type { Config, Item } from '../interfaces/index.js';
export class DocumentedItem<T = DeclarationReflection | Item> {
public constructor(public readonly data: T, public readonly config: Config) {}
public constructor(
public readonly data: T,
public readonly config: Config,
) {}
public serialize(): unknown {
try {

View File

@@ -2,6 +2,9 @@ import { createTsupConfig } from '../../tsup.config.js';
export default createTsupConfig({
entry: ['src/index.ts', 'src/cli.ts'],
minify: true,
dts: false,
format: 'esm',
minify: 'terser',
keepNames: false,
sourcemap: false,
});