small structure update
This commit is contained in:
parent
b79c5fa293
commit
ef00c0d180
3
dist/index.d.ts
vendored
3
dist/index.d.ts
vendored
@ -1,3 +0,0 @@
|
||||
/// <reference path="typings/main.d.ts" />
|
||||
declare var smartenv: any;
|
||||
export = smartenv;
|
9
dist/smartenv.classes.d.ts
vendored
9
dist/smartenv.classes.d.ts
vendored
@ -1,9 +0,0 @@
|
||||
/// <reference path="typings/main.d.ts" />
|
||||
export declare class Environment {
|
||||
runtimeEnv: string;
|
||||
userAgent: string;
|
||||
nodeVersion: string;
|
||||
isBrowser: boolean;
|
||||
isNode: boolean;
|
||||
constructor(runtimeEnvArg: string, userAgentArg?: string);
|
||||
}
|
2
dist/smartenv.environment.d.ts
vendored
2
dist/smartenv.environment.d.ts
vendored
@ -1,2 +0,0 @@
|
||||
/// <reference path="typings/main.d.ts" />
|
||||
export declare var init: (objectArg: any) => void;
|
3
dist/smartenv.objectstorage.d.ts
vendored
3
dist/smartenv.objectstorage.d.ts
vendored
@ -1,3 +0,0 @@
|
||||
/// <reference path="typings/main.d.ts" />
|
||||
export declare var obs: any;
|
||||
export declare var obsItems: any;
|
3
dist/smartenv.plugins.d.ts
vendored
3
dist/smartenv.plugins.d.ts
vendored
@ -1,3 +0,0 @@
|
||||
/// <reference path="typings/main.d.ts" />
|
||||
export declare var beautylog: any;
|
||||
export declare var _: any;
|
9
dist/smartenv.plugins.js
vendored
9
dist/smartenv.plugins.js
vendored
@ -1,7 +1,10 @@
|
||||
#!/usr/bin/env node
|
||||
|
||||
/// <reference path="typings/main.d.ts" />
|
||||
exports.beautylog = require("beautylog");
|
||||
exports._ = require("lodash");
|
||||
var plugins = {
|
||||
beautylog: require("beautylog"),
|
||||
_: require("lodash")
|
||||
};
|
||||
module.exports = plugins;
|
||||
|
||||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInNtYXJ0ZW52LnBsdWdpbnMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsMENBQTBDO0FBQy9CLGlCQUFTLEdBQUcsT0FBTyxDQUFDLFdBQVcsQ0FBQyxDQUFDO0FBQ2pDLFNBQUMsR0FBRyxPQUFPLENBQUMsUUFBUSxDQUFDLENBQUMiLCJmaWxlIjoic21hcnRlbnYucGx1Z2lucy5qcyIsInNvdXJjZXNDb250ZW50IjpbIi8vLyA8cmVmZXJlbmNlIHBhdGg9XCJ0eXBpbmdzL21haW4uZC50c1wiIC8+XG5leHBvcnQgdmFyIGJlYXV0eWxvZyA9IHJlcXVpcmUoXCJiZWF1dHlsb2dcIik7XG5leHBvcnQgdmFyIF8gPSByZXF1aXJlKFwibG9kYXNoXCIpOyJdLCJzb3VyY2VSb290IjoiL3NvdXJjZS8ifQ==
|
||||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInNtYXJ0ZW52LnBsdWdpbnMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsMENBQTBDO0FBQzFDLElBQUksT0FBTyxHQUFHO0lBQ1YsU0FBUyxFQUFFLE9BQU8sQ0FBQyxXQUFXLENBQUM7SUFDL0IsQ0FBQyxFQUFFLE9BQU8sQ0FBQyxRQUFRLENBQUM7Q0FDdkIsQ0FBQztBQUVGLGlCQUFTLE9BQU8sQ0FBQyIsImZpbGUiOiJzbWFydGVudi5wbHVnaW5zLmpzIiwic291cmNlc0NvbnRlbnQiOlsiLy8vIDxyZWZlcmVuY2UgcGF0aD1cInR5cGluZ3MvbWFpbi5kLnRzXCIgLz5cbnZhciBwbHVnaW5zID0ge1xuICAgIGJlYXV0eWxvZzogcmVxdWlyZShcImJlYXV0eWxvZ1wiKSxcbiAgICBfOiByZXF1aXJlKFwibG9kYXNoXCIpXG59O1xuXG5leHBvcnQgPSBwbHVnaW5zOyJdLCJzb3VyY2VSb290IjoiL3NvdXJjZS8ifQ==
|
||||
|
@ -28,6 +28,6 @@
|
||||
"easyserve": "0.0.5",
|
||||
"gulp": "^3.9.1",
|
||||
"gulp-browser": "1.0.10",
|
||||
"npmts": "^3.0.1"
|
||||
"npmts": "^3.0.2"
|
||||
}
|
||||
}
|
||||
|
@ -1,3 +1,7 @@
|
||||
/// <reference path="typings/main.d.ts" />
|
||||
export var beautylog = require("beautylog");
|
||||
export var _ = require("lodash");
|
||||
var plugins = {
|
||||
beautylog: require("beautylog"),
|
||||
_: require("lodash")
|
||||
};
|
||||
|
||||
export = plugins;
|
Loading…
x
Reference in New Issue
Block a user