gant-core 0.2.25 → 0.2.28
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/lib/cli/config/index.js +1 -1
- package/lib/cli/create/module/index.js +1 -1
- package/lib/cli/index.js +1 -1
- package/lib/cli/utils/index.js +1 -1
- package/lib/cli/webpack/config/browsers.js +2 -0
- package/lib/cli/webpack/config/cssRules.js +1 -1
- package/lib/cli/webpack/config/default.config.js +1 -1
- package/lib/core/cache/index.js +1 -1
- package/lib/core/cache/index.js.map +1 -1
- package/lib/core/theme/index.js +1 -1
- package/lib/core/theme/index.js.map +1 -1
- package/lib/types/index.d.ts +4 -0
- package/package.json +21 -20
package/lib/types/index.d.ts
CHANGED
|
@@ -1935,6 +1935,10 @@ declare class CacheItem {
|
|
|
1935
1935
|
private cache;
|
|
1936
1936
|
get(key: string): any;
|
|
1937
1937
|
set(key: string, value: any): any;
|
|
1938
|
+
clearAll(): void;
|
|
1939
|
+
clear(key: string): {
|
|
1940
|
+
[key: string]: any;
|
|
1941
|
+
};
|
|
1938
1942
|
}
|
|
1939
1943
|
declare class proxyCacheConstructor {
|
|
1940
1944
|
private static instance;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gant-core",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.28",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "lib/core/index.js",
|
|
6
6
|
"types": "lib/types/index.d.ts",
|
|
@@ -35,6 +35,10 @@
|
|
|
35
35
|
"url": "^0.11.3"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
+
"@babel/core": "^7.26.0",
|
|
39
|
+
"@babel/plugin-transform-modules-commonjs": "^7.26.3",
|
|
40
|
+
"@babel/preset-env": "^7.26.0",
|
|
41
|
+
"@babel/register": "^7.25.9",
|
|
38
42
|
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.11",
|
|
39
43
|
"@rollup/plugin-alias": "^5.1.0",
|
|
40
44
|
"@rollup/plugin-commonjs": "^25.0.7",
|
|
@@ -49,35 +53,32 @@
|
|
|
49
53
|
"chokidar": "^3.6.0",
|
|
50
54
|
"compression-webpack-plugin": "^11.1.0",
|
|
51
55
|
"cross-env": "^7.0.3",
|
|
56
|
+
"css-loader": "^6.10.0",
|
|
52
57
|
"css-minimizer-webpack-plugin": "^6.0.0",
|
|
58
|
+
"ejs-loader": "^0.5.0",
|
|
59
|
+
"file-loader": "^6.2.0",
|
|
60
|
+
"html-loader": "^5.0.0",
|
|
53
61
|
"html-webpack-plugin": "^5.0.0",
|
|
62
|
+
"less": "^4.2.0",
|
|
63
|
+
"less-loader": "^12.2.0",
|
|
64
|
+
"loader-utils": "^3.2.1",
|
|
54
65
|
"mini-css-extract-plugin": "^2.8.1",
|
|
66
|
+
"postcss": "^8.4.35",
|
|
67
|
+
"postcss-loader": "^8.1.1",
|
|
68
|
+
"postcss-preset-env": "^9.5.1",
|
|
69
|
+
"postcss-short": "^5.0.0",
|
|
55
70
|
"rollup": "^4.9.6",
|
|
56
71
|
"rollup-plugin-copy": "^3.5.0",
|
|
57
72
|
"rollup-plugin-dts": "^6.1.0",
|
|
58
73
|
"rollup-plugin-typescript2": "^0.36.0",
|
|
59
|
-
"terser-webpack-plugin": "^5.3.10",
|
|
60
|
-
"webpack": "^5.90.3",
|
|
61
|
-
"webpack-bundle-analyzer": "^4.10.1",
|
|
62
|
-
"webpack-dev-server": "^4.7.4",
|
|
63
74
|
"style-loader": "^3.3.4",
|
|
64
|
-
"less": "^4.2.0",
|
|
65
|
-
"less-loader": "^12.2.0",
|
|
66
|
-
"loader-utils": "^3.2.1",
|
|
67
75
|
"swc-loader": "^0.2.6",
|
|
76
|
+
"terser-webpack-plugin": "^5.3.10",
|
|
77
|
+
"ts-node": "^10.9.2",
|
|
68
78
|
"url-loader": "^4.1.1",
|
|
69
79
|
"vue-loader": "^17.4.2",
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"postcss": "^8.4.35",
|
|
74
|
-
"postcss-loader": "^8.1.1",
|
|
75
|
-
"postcss-preset-env": "^9.5.1",
|
|
76
|
-
"postcss-short": "^5.0.0",
|
|
77
|
-
"@babel/core": "^7.26.0",
|
|
78
|
-
"@babel/plugin-transform-modules-commonjs": "^7.26.3",
|
|
79
|
-
"@babel/preset-env": "^7.26.0",
|
|
80
|
-
"@babel/register": "^7.25.9",
|
|
81
|
-
"ts-node": "^10.9.2"
|
|
80
|
+
"webpack": "^5.90.3",
|
|
81
|
+
"webpack-bundle-analyzer": "^4.10.1",
|
|
82
|
+
"webpack-dev-server": "^4.7.4"
|
|
82
83
|
}
|
|
83
84
|
}
|