@fe-free/core 2.5.2 → 2.5.3

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/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @fe-free/core
2
2
 
3
+ ## 2.5.3
4
+
5
+ ### Patch Changes
6
+
7
+ - feat: core app
8
+ - @fe-free/tool@2.5.3
9
+
3
10
  ## 2.5.2
4
11
 
5
12
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fe-free/core",
3
- "version": "2.5.2",
3
+ "version": "2.5.3",
4
4
  "description": "",
5
5
  "main": "./src/index.ts",
6
6
  "author": "",
@@ -41,7 +41,7 @@
41
41
  "remark-gfm": "^4.0.1",
42
42
  "vanilla-jsoneditor": "^0.23.1",
43
43
  "zustand": "^4.5.4",
44
- "@fe-free/tool": "2.5.2"
44
+ "@fe-free/tool": "2.5.3"
45
45
  },
46
46
  "peerDependencies": {
47
47
  "@ant-design/pro-components": "2.8.9",
@@ -18,7 +18,7 @@ function CheckUpdate({ basename }: { basename: string }) {
18
18
  }
19
19
 
20
20
  async function getMainScriptSrc() {
21
- const res = await fetch(basename);
21
+ const res = await fetch(`${basename}?r=${Date.now()}`);
22
22
  const html = await res.text();
23
23
  const parser = new DOMParser();
24
24
  const doc = parser.parseFromString(html, 'text/html');