fix(core): update

This commit is contained in:
Philipp Kunz 2022-05-28 20:03:13 +02:00
parent bda524348e
commit 58db360c79
5 changed files with 22 additions and 4 deletions

5
package-lock.json generated
View File

@ -10,6 +10,7 @@
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@happy-dom/global-registrator": "^4.1.0", "@happy-dom/global-registrator": "^4.1.0",
"@pushrocks/smartpromise": "^3.1.7",
"lit": "^2.2.5" "lit": "^2.2.5"
}, },
"devDependencies": { "devDependencies": {
@ -665,7 +666,6 @@
"version": "3.1.7", "version": "3.1.7",
"resolved": "https://verdaccio.lossless.one/@pushrocks%2fsmartpromise/-/smartpromise-3.1.7.tgz", "resolved": "https://verdaccio.lossless.one/@pushrocks%2fsmartpromise/-/smartpromise-3.1.7.tgz",
"integrity": "sha512-2gLQCeviEJwZ+cHHtK2Ks98brZatGC6dPXKIs1tVgJsiNgRFjnp90fESuJ1Pmoe7RrS+7J3mO4NtsFHAJJ/y5w==", "integrity": "sha512-2gLQCeviEJwZ+cHHtK2Ks98brZatGC6dPXKIs1tVgJsiNgRFjnp90fESuJ1Pmoe7RrS+7J3mO4NtsFHAJJ/y5w==",
"dev": true,
"license": "MIT" "license": "MIT"
}, },
"node_modules/@pushrocks/smartpuppeteer": { "node_modules/@pushrocks/smartpuppeteer": {
@ -6580,8 +6580,7 @@
"@pushrocks/smartpromise": { "@pushrocks/smartpromise": {
"version": "3.1.7", "version": "3.1.7",
"resolved": "https://verdaccio.lossless.one/@pushrocks%2fsmartpromise/-/smartpromise-3.1.7.tgz", "resolved": "https://verdaccio.lossless.one/@pushrocks%2fsmartpromise/-/smartpromise-3.1.7.tgz",
"integrity": "sha512-2gLQCeviEJwZ+cHHtK2Ks98brZatGC6dPXKIs1tVgJsiNgRFjnp90fESuJ1Pmoe7RrS+7J3mO4NtsFHAJJ/y5w==", "integrity": "sha512-2gLQCeviEJwZ+cHHtK2Ks98brZatGC6dPXKIs1tVgJsiNgRFjnp90fESuJ1Pmoe7RrS+7J3mO4NtsFHAJJ/y5w=="
"dev": true
}, },
"@pushrocks/smartpuppeteer": { "@pushrocks/smartpuppeteer": {
"version": "2.0.0", "version": "2.0.0",

View File

@ -21,6 +21,7 @@
}, },
"dependencies": { "dependencies": {
"@happy-dom/global-registrator": "^4.1.0", "@happy-dom/global-registrator": "^4.1.0",
"@pushrocks/smartpromise": "^3.1.7",
"lit": "^2.2.5" "lit": "^2.2.5"
}, },
"browserslist": [ "browserslist": [

View File

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

View File

@ -10,6 +10,16 @@ export class Smartntml {
return smartntml; return smartntml;
} }
private static smartntmlSingletonDeferred: plugins.smartpromise.Deferred<Smartntml>;
public static async createAndInitSingleton() {
if (this.smartntmlSingletonDeferred) {
return this.smartntmlSingletonDeferred.promise;
}
const smartntmlInstance = await this.createAndInit();
this.smartntmlSingletonDeferred.resolve(smartntmlInstance);
return this.smartntmlSingletonDeferred.promise;
}
// INSTANCE // INSTANCE
render: typeof litTypes.render; render: typeof litTypes.render;
html: typeof litTypes.html; html: typeof litTypes.html;

View File

@ -1,2 +1,10 @@
// happy-dom setup
import { GlobalRegistrator } from '@happy-dom/global-registrator'; import { GlobalRegistrator } from '@happy-dom/global-registrator';
GlobalRegistrator.register(); GlobalRegistrator.register();
// @pushrocks scope
import * as smartpromise from '@pushrocks/smartpromise';
export {
smartpromise
}