Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
eb9cae4be3 | |||
cd5cee545b | |||
fd8aa388ad | |||
58db360c79 | |||
bda524348e | |||
b33f7ed33e |
9
package-lock.json
generated
9
package-lock.json
generated
@ -1,15 +1,16 @@
|
||||
{
|
||||
"name": "@pushrocks/smartntml",
|
||||
"version": "1.0.3",
|
||||
"version": "1.0.6",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "@pushrocks/smartntml",
|
||||
"version": "1.0.3",
|
||||
"version": "1.0.6",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@happy-dom/global-registrator": "^4.1.0",
|
||||
"@pushrocks/smartpromise": "^3.1.7",
|
||||
"lit": "^2.2.5"
|
||||
},
|
||||
"devDependencies": {
|
||||
@ -665,7 +666,6 @@
|
||||
"version": "3.1.7",
|
||||
"resolved": "https://verdaccio.lossless.one/@pushrocks%2fsmartpromise/-/smartpromise-3.1.7.tgz",
|
||||
"integrity": "sha512-2gLQCeviEJwZ+cHHtK2Ks98brZatGC6dPXKIs1tVgJsiNgRFjnp90fESuJ1Pmoe7RrS+7J3mO4NtsFHAJJ/y5w==",
|
||||
"dev": true,
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/@pushrocks/smartpuppeteer": {
|
||||
@ -6580,8 +6580,7 @@
|
||||
"@pushrocks/smartpromise": {
|
||||
"version": "3.1.7",
|
||||
"resolved": "https://verdaccio.lossless.one/@pushrocks%2fsmartpromise/-/smartpromise-3.1.7.tgz",
|
||||
"integrity": "sha512-2gLQCeviEJwZ+cHHtK2Ks98brZatGC6dPXKIs1tVgJsiNgRFjnp90fESuJ1Pmoe7RrS+7J3mO4NtsFHAJJ/y5w==",
|
||||
"dev": true
|
||||
"integrity": "sha512-2gLQCeviEJwZ+cHHtK2Ks98brZatGC6dPXKIs1tVgJsiNgRFjnp90fESuJ1Pmoe7RrS+7J3mO4NtsFHAJJ/y5w=="
|
||||
},
|
||||
"@pushrocks/smartpuppeteer": {
|
||||
"version": "2.0.0",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@pushrocks/smartntml",
|
||||
"version": "1.0.3",
|
||||
"version": "1.0.6",
|
||||
"private": false,
|
||||
"description": "lit-html for the backend",
|
||||
"main": "dist_ts/index.js",
|
||||
@ -21,6 +21,7 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@happy-dom/global-registrator": "^4.1.0",
|
||||
"@pushrocks/smartpromise": "^3.1.7",
|
||||
"lit": "^2.2.5"
|
||||
},
|
||||
"browserslist": [
|
||||
|
@ -3,6 +3,6 @@
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@pushrocks/smartntml',
|
||||
version: '1.0.3',
|
||||
version: '1.0.6',
|
||||
description: 'lit-html for the backend'
|
||||
}
|
||||
|
11
ts/index.ts
11
ts/index.ts
@ -1,6 +1,7 @@
|
||||
import * as plugins from './smartntml.plugins.js';
|
||||
|
||||
import type * as litTypes from 'lit';
|
||||
export type { TemplateResult } from 'lit';
|
||||
|
||||
export class Smartntml {
|
||||
// STATIC
|
||||
@ -10,6 +11,16 @@ export class 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
|
||||
render: typeof litTypes.render;
|
||||
html: typeof litTypes.html;
|
||||
|
@ -1,2 +1,10 @@
|
||||
// happy-dom setup
|
||||
import { GlobalRegistrator } from '@happy-dom/global-registrator';
|
||||
GlobalRegistrator.register();
|
||||
|
||||
// @pushrocks scope
|
||||
import * as smartpromise from '@pushrocks/smartpromise';
|
||||
|
||||
export {
|
||||
smartpromise
|
||||
}
|
||||
|
Reference in New Issue
Block a user