svelte-log-view 4.2.29 → 4.2.31

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "svelte-log-view",
3
- "version": "4.2.29",
3
+ "version": "4.2.31",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -39,19 +39,20 @@
39
39
  "@semantic-release/commit-analyzer": "^10.0.1",
40
40
  "@semantic-release/exec": "^6.0.3",
41
41
  "@semantic-release/release-notes-generator": "^11.0.4",
42
- "@sveltejs/vite-plugin-svelte": "^2.4.2",
42
+ "@sveltejs/vite-plugin-svelte": "^2.4.3",
43
43
  "documentation": "^14.0.2",
44
44
  "mf-styling": "^3.0.2",
45
- "npm-pkgbuild": "^11.9.1",
45
+ "npm-pkgbuild": "^11.10.6",
46
46
  "reader-line-iterator": "^1.1.6",
47
47
  "semantic-release": "^21.0.7",
48
- "svelte": "^4.0.5",
49
- "testcafe": "^3.0.1",
50
- "vite": "^4.4.4"
48
+ "svelte": "^4.1.2",
49
+ "testcafe": "^3.1.0",
50
+ "vite": "^4.4.7",
51
+ "vite-plugin-compression2": "^0.10.3"
51
52
  },
52
53
  "optionalDependencies": {
53
54
  "mf-hosting-cloudflare": "^1.0.5",
54
- "mf-hosting-frontend": "^1.11.3"
55
+ "mf-hosting-frontend": "^2.0.0"
55
56
  },
56
57
  "repository": {
57
58
  "type": "git",
@@ -10,12 +10,12 @@
10
10
  export let start = 0; // first visible entry
11
11
 
12
12
  let content;
13
- let rows;
13
+ // let rows;
14
14
 
15
15
  onDestroy(() => source.abort());
16
16
 
17
17
  onMount(async () => {
18
- rows = content.getElementsByTagName("log-row");
18
+ // rows = content.getElementsByTagName("log-row");
19
19
  fetchFollow();
20
20
  });
21
21