light-h5-core-lib 2.3.0 → 2.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/{Main.js → LightCore.js} +6 -0
- package/package.json +3 -3
- package/type/index.d.ts +2 -0
package/{Main.js → LightCore.js}
RENAMED
|
@@ -6,6 +6,12 @@ import { FloatDigitUtil } from "./common/util/FloatDigitUtil";
|
|
|
6
6
|
import { RandomNumUtil } from "./common/util/RandomNumUtil";
|
|
7
7
|
import { StringUtil } from "./common/util/StringUtil";
|
|
8
8
|
import { UniqueIDUtil } from "./common/util/UniqueIDUtil";
|
|
9
|
+
var LightCore = /** @class */ (function () {
|
|
10
|
+
function LightCore() {
|
|
11
|
+
}
|
|
12
|
+
return LightCore;
|
|
13
|
+
}());
|
|
14
|
+
export { LightCore };
|
|
9
15
|
export { PoolObj };
|
|
10
16
|
export { BaseSingleton };
|
|
11
17
|
export { BitUtil };
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "light-h5-core-lib",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.4.0",
|
|
4
4
|
"description": "light core lib",
|
|
5
|
-
"main": "./
|
|
5
|
+
"main": "./LightCore.js",
|
|
6
6
|
"types": "./type/index.d.ts",
|
|
7
7
|
"files": [
|
|
8
8
|
"./type/index.d.ts",
|
|
9
|
-
"./
|
|
9
|
+
"./LightCore.js",
|
|
10
10
|
"./common/**/*.js",
|
|
11
11
|
"./pool/pool.js"
|
|
12
12
|
],
|