6 Commits

Author SHA1 Message Date
fd8aa388ad 1.0.5 2022-05-28 20:03:14 +02:00
58db360c79 fix(core): update 2022-05-28 20:03:13 +02:00
bda524348e 1.0.4 2022-05-28 17:59:04 +02:00
b33f7ed33e fix(core): update 2022-05-28 17:59:04 +02:00
69d2434c90 1.0.3 2022-05-28 17:31:30 +02:00
9fd7931a4d fix(core): update 2022-05-28 17:31:29 +02:00
5 changed files with 25 additions and 7 deletions

9
package-lock.json generated
View File

@ -1,15 +1,16 @@
{ {
"name": "@pushrocks/smartntml", "name": "@pushrocks/smartntml",
"version": "1.0.2", "version": "1.0.5",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@pushrocks/smartntml", "name": "@pushrocks/smartntml",
"version": "1.0.2", "version": "1.0.5",
"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

@ -1,6 +1,6 @@
{ {
"name": "@pushrocks/smartntml", "name": "@pushrocks/smartntml",
"version": "1.0.2", "version": "1.0.5",
"private": false, "private": false,
"description": "lit-html for the backend", "description": "lit-html for the backend",
"main": "dist_ts/index.js", "main": "dist_ts/index.js",
@ -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.2', 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
}