Compare commits

...

4 Commits

Author SHA1 Message Date
8d355f234f 1.0.62 2020-11-05 20:08:07 +00:00
a5c22ec1db fix(core): update 2020-11-05 20:08:07 +00:00
f5263a0cc4 1.0.61 2020-11-05 18:50:28 +00:00
4a022a7d1d fix(core): update 2020-11-05 18:50:28 +00:00
3 changed files with 8 additions and 7 deletions

9
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "@designestate/dees-domtools",
"version": "1.0.60",
"version": "1.0.62",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
@ -2189,10 +2189,11 @@
}
},
"@pushrocks/websetup": {
"version": "3.0.8",
"resolved": "https://verdaccio.lossless.one/@pushrocks%2fwebsetup/-/websetup-3.0.8.tgz",
"integrity": "sha512-JyuzLMAaMtA3Mwc1ZtN9HdGONaYqwYTOEgLL15oKMqIW0I3lElW+qq4y94F1OXffM6Y9nJvtj+wmh0zqDYPT2A==",
"version": "3.0.10",
"resolved": "https://verdaccio.lossless.one/@pushrocks%2fwebsetup/-/websetup-3.0.10.tgz",
"integrity": "sha512-iP4hs1+IWqoqWHa9Si9aBEkD7puBUdDrPfxM8a/6cJJf0scBjHkHFqPHj5Ig5HQjUsK1hRF6Ys3mlKWHe/9MJA==",
"requires": {
"@pushrocks/smartdelay": "^2.0.10",
"@pushrocks/smartpromise": "^3.1.3",
"@tsclass/tsclass": "^3.0.29"
}

View File

@ -1,6 +1,6 @@
{
"name": "@designestate/dees-domtools",
"version": "1.0.60",
"version": "1.0.62",
"private": false,
"description": "tools to simplify complex css structures",
"main": "dist_ts/index.js",
@ -30,7 +30,7 @@
"@pushrocks/smartrouter": "^1.0.4",
"@pushrocks/smartstate": "^1.0.17",
"@pushrocks/webrequest": "^2.0.13",
"@pushrocks/websetup": "^3.0.8",
"@pushrocks/websetup": "^3.0.10",
"@pushrocks/webstore": "^1.0.16",
"lit-element": "^2.4.0",
"sweet-scroll": "^4.0.0"

View File

@ -149,7 +149,7 @@ export class DomTools {
}
public async setWebsiteInfo(optionsArg: plugins.websetup.IWebSetupConstructorOptions) {
this.websetup.setup(optionsArg);
await this.websetup.setup(optionsArg);
await this.websetup.readyPromise;
}
}