fix(core): update

This commit is contained in:
Philipp Kunz 2023-10-04 08:30:23 +02:00
parent ad02b938b4
commit c0e60e8a64
4 changed files with 271 additions and 278 deletions

View File

@ -8,20 +8,20 @@
"type": "module", "type": "module",
"scripts": { "scripts": {
"test": "tstest test/", "test": "tstest test/",
"build": "tsbuild element --allowimplicitany --skiplibcheck && tsbundle element --allowimplicitany", "build": "tsbuild element --allowimplicitany && tsbundle element --allowimplicitany",
"watch": "tswatch element", "watch": "tswatch element",
"buildDocs": "tsdoc" "buildDocs": "tsdoc"
}, },
"author": "Lossless GmbH", "author": "Lossless GmbH",
"license": "UNLICENSED", "license": "UNLICENSED",
"dependencies": { "dependencies": {
"@design.estate/dees-domtools": "^2.0.34", "@design.estate/dees-domtools": "^2.0.41",
"@design.estate/dees-element": "^2.0.29", "@design.estate/dees-element": "^2.0.29",
"@design.estate/dees-wcctools": "^1.0.78", "@design.estate/dees-wcctools": "^1.0.78",
"@git.zone/tsrun": "^1.2.46", "@git.zone/tsrun": "^1.2.46",
"@losslessone_private/loint-pubapi": "^1.0.13", "@losslessone_private/loint-pubapi": "^1.0.13",
"@push.rocks/smartmarkdown": "^3.0.1", "@push.rocks/smartmarkdown": "^3.0.1",
"@webcontainer/api": "^1.1.5", "@webcontainer/api": "^1.1.7",
"monaco-editor": "^0.43.0", "monaco-editor": "^0.43.0",
"xterm": "^5.3.0", "xterm": "^5.3.0",
"xterm-addon-fit": "^0.8.0" "xterm-addon-fit": "^0.8.0"
@ -32,7 +32,7 @@
"@git.zone/tstest": "^1.0.81", "@git.zone/tstest": "^1.0.81",
"@git.zone/tswatch": "^2.0.13", "@git.zone/tswatch": "^2.0.13",
"@push.rocks/projectinfo": "^5.0.2", "@push.rocks/projectinfo": "^5.0.2",
"@push.rocks/tapbundle": "^5.0.8" "@push.rocks/tapbundle": "^5.0.15"
}, },
"files": [ "files": [
"ts/**/*", "ts/**/*",

File diff suppressed because it is too large Load Diff

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@design.estate/dees-editor', name: '@design.estate/dees-editor',
version: '1.0.73', version: '1.0.74',
description: 'an advanced editor for markdown documents based on monaco.' description: 'an advanced editor for markdown documents based on monaco.'
} }

View File

@ -3,8 +3,8 @@
"experimentalDecorators": true, "experimentalDecorators": true,
"useDefineForClassFields": false, "useDefineForClassFields": false,
"target": "ES2022", "target": "ES2022",
"module": "ES2022", "module": "NodeNext",
"moduleResolution": "nodenext", "moduleResolution": "NodeNext",
"esModuleInterop": true, "esModuleInterop": true,
"verbatimModuleSyntax": true "verbatimModuleSyntax": true
}, },