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",
"scripts": {
"test": "tstest test/",
"build": "tsbuild element --allowimplicitany --skiplibcheck && tsbundle element --allowimplicitany",
"build": "tsbuild element --allowimplicitany && tsbundle element --allowimplicitany",
"watch": "tswatch element",
"buildDocs": "tsdoc"
},
"author": "Lossless GmbH",
"license": "UNLICENSED",
"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-wcctools": "^1.0.78",
"@git.zone/tsrun": "^1.2.46",
"@losslessone_private/loint-pubapi": "^1.0.13",
"@push.rocks/smartmarkdown": "^3.0.1",
"@webcontainer/api": "^1.1.5",
"@webcontainer/api": "^1.1.7",
"monaco-editor": "^0.43.0",
"xterm": "^5.3.0",
"xterm-addon-fit": "^0.8.0"
@ -32,7 +32,7 @@
"@git.zone/tstest": "^1.0.81",
"@git.zone/tswatch": "^2.0.13",
"@push.rocks/projectinfo": "^5.0.2",
"@push.rocks/tapbundle": "^5.0.8"
"@push.rocks/tapbundle": "^5.0.15"
},
"files": [
"ts/**/*",

File diff suppressed because it is too large Load Diff

View File

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

View File

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