Compare commits

...

2 Commits

Author SHA1 Message Date
e6a87e408e 1.0.4 2020-02-12 21:38:05 +00:00
637170ecd2 fix(core): update 2020-02-12 21:38:04 +00:00
4 changed files with 4 additions and 4 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "@pushrocks/smartssr",
"version": "1.0.3",
"version": "1.0.4",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "@pushrocks/smartssr",
"version": "1.0.3",
"version": "1.0.4",
"private": false,
"description": "a smart server side renderer supporting shadow dom",
"main": "dist/index.js",

View File

@ -2,3 +2,4 @@ import * as plugins from './smartssr.plugins';
export const packageDir = plugins.path.join(__dirname, '../');
export const noGitDir = plugins.path.join(packageDir, './.nogit');
plugins.smartfile.fs.ensureDirSync(noGitDir);

View File

@ -1,8 +1,7 @@
// node native
import * as path from 'path';
import * as fs from 'fs';
export { path, fs };
export { path };
// @pushrocks scope
import * as smartdelay from '@pushrocks/smartdelay';