fast-vue-multi-pages 1.0.14 → 1.0.15
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.
@@ -37,6 +37,10 @@ define(["require", "exports", "tslib", "lodash", "./http/FastVueMultiHttp", "./o
|
|
37
37
|
* Lodash工具类 https://lodash.com/docs/
|
38
38
|
*/
|
39
39
|
FastVueMultiTool.Lodash = lodash_1.default;
|
40
|
+
/**
|
41
|
+
* crypto-js工具类 https://cryptojs.gitbook.io/docs/
|
42
|
+
*/
|
43
|
+
FastVueMultiTool.Crypto = require("crypto-js");
|
40
44
|
/**
|
41
45
|
* 日期类操作
|
42
46
|
*/
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "fast-vue-multi-pages",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.15",
|
4
4
|
"author": "janesen",
|
5
5
|
"description": "快速搭建VUE项目工具类的基本库,主要用于每个功能页面独立生成html",
|
6
6
|
"main": "./dist/cjs/index.js",
|
@@ -32,7 +32,8 @@
|
|
32
32
|
"@types/lodash": "^4.17.6",
|
33
33
|
"copy-to-clipboard": "^3.3.3",
|
34
34
|
"ip": "^2.0.1",
|
35
|
-
"file64": "^1.0.3"
|
35
|
+
"file64": "^1.0.3",
|
36
|
+
"crypto-js": "^4.2.0"
|
36
37
|
},
|
37
38
|
"devDependencies": {
|
38
39
|
"@typescript-eslint/eslint-plugin": "^7.16.0",
|