fix(core): update

This commit is contained in:
2023-07-27 12:37:27 +02:00
parent b0c6fb662d
commit 5a59abd1df
11 changed files with 1207 additions and 739 deletions

View File

@ -2,7 +2,7 @@
* autocreated commitinfo by @pushrocks/commitinfo
*/
export const commitinfo = {
name: '@pushrocks/smartssr',
version: '1.0.37',
name: '@push.rocks/smartssr',
version: '1.0.38',
description: 'a smart server side renderer supporting shadow dom'
}

View File

@ -1,5 +1,8 @@
import * as plugins from './smartssr.plugins.js';
export const packageDir = plugins.path.join(plugins.smartpath.get.dirnameFromImportMetaUrl(import.meta.url), '../');
export const packageDir = plugins.path.join(
plugins.smartpath.get.dirnameFromImportMetaUrl(import.meta.url),
'../'
);
export const noGitDir = plugins.path.join(packageDir, './.nogit');
plugins.smartfile.fs.ensureDirSync(noGitDir);

View File

@ -4,11 +4,11 @@ import * as path from 'path';
export { path };
// @pushrocks scope
import * as smartdelay from '@pushrocks/smartdelay';
import * as smartfile from '@pushrocks/smartfile';
import * as smartpuppeteer from '@pushrocks/smartpuppeteer';
import * as smartpath from '@pushrocks/smartpath';
import * as smartpromise from '@pushrocks/smartpromise';
import * as smarttime from '@pushrocks/smarttime';
import * as smartdelay from '@push.rocks/smartdelay';
import * as smartfile from '@push.rocks/smartfile';
import * as smartpuppeteer from '@push.rocks/smartpuppeteer';
import * as smartpath from '@push.rocks/smartpath';
import * as smartpromise from '@push.rocks/smartpromise';
import * as smarttime from '@push.rocks/smarttime';
export { smartdelay, smartfile, smartpath, smartpuppeteer, smartpromise, smarttime };