fix(core): update
This commit is contained in:
@ -36,6 +36,10 @@ export class Smartenv {
|
||||
return this.runtimeEnv === 'node';
|
||||
}
|
||||
|
||||
public get isWsl(): boolean {
|
||||
return plugins.isWsl;
|
||||
}
|
||||
|
||||
public get nodeVersion(): string {
|
||||
return process.version;
|
||||
}
|
||||
|
@ -1,4 +1,12 @@
|
||||
import * as smartparam from '@pushrocks/smartparam';
|
||||
import * as smartq from '@pushrocks/smartpromise';
|
||||
import * as smartpromise from '@pushrocks/smartpromise';
|
||||
|
||||
export { smartparam, smartq };
|
||||
export { smartparam, smartpromise };
|
||||
|
||||
// third party scope
|
||||
|
||||
import isWsl from 'is-wsl';
|
||||
|
||||
export {
|
||||
isWsl
|
||||
};
|
||||
|
Reference in New Issue
Block a user