fix(core): update
This commit is contained in:
parent
2f4fd839a1
commit
c34d71238a
@ -25,7 +25,7 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@pushrocks/smartdelay": "^3.0.1",
|
"@pushrocks/smartdelay": "^3.0.1",
|
||||||
"@pushrocks/smartpromise": "^4.0.2",
|
"@pushrocks/smartpromise": "^4.0.2",
|
||||||
"@tsclass/tsclass": "^4.0.40"
|
"@tsclass/tsclass": "^4.0.41"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"ts/**/*",
|
"ts/**/*",
|
||||||
|
12
pnpm-lock.yaml
generated
12
pnpm-lock.yaml
generated
@ -8,8 +8,8 @@ dependencies:
|
|||||||
specifier: ^4.0.2
|
specifier: ^4.0.2
|
||||||
version: 4.0.2
|
version: 4.0.2
|
||||||
'@tsclass/tsclass':
|
'@tsclass/tsclass':
|
||||||
specifier: ^4.0.40
|
specifier: ^4.0.41
|
||||||
version: 4.0.40(typescript@5.0.4)
|
version: 4.0.41(typescript@5.0.4)
|
||||||
|
|
||||||
devDependencies:
|
devDependencies:
|
||||||
'@gitzone/tsbuild':
|
'@gitzone/tsbuild':
|
||||||
@ -461,7 +461,7 @@ packages:
|
|||||||
'@pushrocks/smartrequest': 2.0.15
|
'@pushrocks/smartrequest': 2.0.15
|
||||||
'@pushrocks/smartsitemap': 2.0.1
|
'@pushrocks/smartsitemap': 2.0.1
|
||||||
'@pushrocks/smarttime': 4.0.1
|
'@pushrocks/smarttime': 4.0.1
|
||||||
'@tsclass/tsclass': 4.0.40(typescript@5.0.4)
|
'@tsclass/tsclass': 4.0.41(typescript@5.0.4)
|
||||||
'@types/compression': 1.7.2
|
'@types/compression': 1.7.2
|
||||||
'@types/cors': 2.8.13
|
'@types/cors': 2.8.13
|
||||||
'@types/express': 4.17.17
|
'@types/express': 4.17.17
|
||||||
@ -617,7 +617,7 @@ packages:
|
|||||||
'@pushrocks/smartpromise': 3.1.10
|
'@pushrocks/smartpromise': 3.1.10
|
||||||
'@pushrocks/smartpuppeteer': 2.0.2
|
'@pushrocks/smartpuppeteer': 2.0.2
|
||||||
'@pushrocks/smartunique': 3.0.3
|
'@pushrocks/smartunique': 3.0.3
|
||||||
'@tsclass/tsclass': 4.0.40(typescript@5.0.4)
|
'@tsclass/tsclass': 4.0.41(typescript@5.0.4)
|
||||||
'@types/express': 4.17.17
|
'@types/express': 4.17.17
|
||||||
express: 4.18.2
|
express: 4.18.2
|
||||||
pdf-merger-js: 3.4.0
|
pdf-merger-js: 3.4.0
|
||||||
@ -899,8 +899,8 @@ packages:
|
|||||||
type-fest: 2.19.0
|
type-fest: 2.19.0
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/@tsclass/tsclass@4.0.40(typescript@5.0.4):
|
/@tsclass/tsclass@4.0.41(typescript@5.0.4):
|
||||||
resolution: {integrity: sha512-Kx+h8Q3WFZBYWnE/6DmvOuR316Yzr1mA9o9EwnTBJLYa96wQSsiC347IFGZpCp/GhmOIqnzGyn8BinU9Z0jELQ==}
|
resolution: {integrity: sha512-xiewhxxZNdfhXzDICIXezwmCf8HPEaYe3sBJ0dD9uE3iEKHff2IXaSmUnGrZQIfm1L/BMvypz0DG9GeaRSn1qg==}
|
||||||
dependencies:
|
dependencies:
|
||||||
type-fest: 3.10.0(typescript@5.0.4)
|
type-fest: 3.10.0(typescript@5.0.4)
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@pushrocks/websetup',
|
name: '@pushrocks/websetup',
|
||||||
version: '3.0.18',
|
version: '3.0.19',
|
||||||
description: 'setup basic page properties'
|
description: 'setup basic page properties'
|
||||||
}
|
}
|
||||||
|
@ -14,7 +14,7 @@ export class OpengraphTag extends Tag {
|
|||||||
public static createProductOgTags(productArg: plugins.tsclass.saas.IProduct) {
|
public static createProductOgTags(productArg: plugins.tsclass.saas.IProduct) {
|
||||||
const tagArray: OpengraphTag[] = [];
|
const tagArray: OpengraphTag[] = [];
|
||||||
tagArray.push(new OpengraphTag('og:url', globalThis.location.href));
|
tagArray.push(new OpengraphTag('og:url', globalThis.location.href));
|
||||||
tagArray.push(new OpengraphTag('og:title', productArg.name));
|
tagArray.push(new OpengraphTag('og:title', `${productArg.name} - ${productArg.slogan}`));
|
||||||
tagArray.push(new OpengraphTag('og:site_name', productArg.name))
|
tagArray.push(new OpengraphTag('og:site_name', productArg.name))
|
||||||
tagArray.push(new OpengraphTag('og:description', productArg.description));
|
tagArray.push(new OpengraphTag('og:description', productArg.description));
|
||||||
tagArray.push(new OpengraphTag('og:image', productArg.logoLink));
|
tagArray.push(new OpengraphTag('og:image', productArg.logoLink));
|
||||||
|
Loading…
Reference in New Issue
Block a user