fix(core): update

This commit is contained in:
Philipp Kunz 2022-09-27 20:04:46 +02:00
parent 8c2ac4c6c9
commit 13e1d1fcb3
4 changed files with 4244 additions and 1725 deletions

5936
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -13,17 +13,17 @@
"build": "(tsbuild --web)" "build": "(tsbuild --web)"
}, },
"devDependencies": { "devDependencies": {
"@gitzone/tsbuild": "^2.1.25", "@gitzone/tsbuild": "^2.1.65",
"@gitzone/tsbundle": "^2.0.5", "@gitzone/tsbundle": "^2.0.7",
"@gitzone/tstest": "^1.0.44", "@gitzone/tstest": "^1.0.73",
"@pushrocks/tapbundle": "^5.0.3", "@pushrocks/tapbundle": "^5.0.4",
"@types/node": "^18.0.0" "@types/node": "^18.7.23"
}, },
"dependencies": { "dependencies": {
"@happy-dom/global-registrator": "^4.1.0", "@happy-dom/global-registrator": "^6.0.4",
"@pushrocks/smartpromise": "^3.1.7", "@pushrocks/smartpromise": "^3.1.7",
"@types/strip-comments": "^2.0.1", "@types/strip-comments": "^2.0.1",
"lit": "^2.2.6" "lit": "^2.3.1"
}, },
"browserslist": [ "browserslist": [
"last 1 chrome versions" "last 1 chrome versions"

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@pushrocks/smartntml', name: '@pushrocks/smartntml',
version: '1.0.10', version: '1.0.11',
description: 'lit-html for the backend' description: 'lit-html for the backend'
} }

View File

@ -1,6 +1,7 @@
// happy-dom setup // happy-dom setup
import { GlobalRegistrator } from '@happy-dom/global-registrator'; import { GlobalRegistrator } from '@happy-dom/global-registrator';
GlobalRegistrator.register(); GlobalRegistrator.register();
window.location.href = 'http://localhost';
// @pushrocks scope // @pushrocks scope
import * as smartpromise from '@pushrocks/smartpromise'; import * as smartpromise from '@pushrocks/smartpromise';