svelte-log-view 6.3.60 → 6.3.61

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/README.md CHANGED
@@ -1,15 +1,12 @@
1
1
  [![Svelte v5](https://img.shields.io/badge/svelte-v5-orange.svg)](https://svelte.dev)
2
2
  [![npm](https://img.shields.io/npm/v/svelte-log-view.svg)](https://www.npmjs.com/package/svelte-log-view)
3
- [![License](https://img.shields.io/badge/License-0BSD-blue.svg)](https://spdx.org/licenses/0BSD.html)
4
3
  [![bundlejs](https://deno.bundlejs.com/?q=svelte-log-view\&badge=detailed)](https://bundlejs.com/?q=svelte-log-view)
5
4
  [![downloads](http://img.shields.io/npm/dm/svelte-log-view.svg?style=flat-square)](https://npmjs.org/package/svelte-log-view)
6
- [![GitHub Issues](https://img.shields.io/github/issues/arlac77/svelte-log-view.svg?style=flat-square)](https://github.com/arlac77/svelte-log-view/issues)
7
- [![Build Status](https://img.shields.io/endpoint.svg?url=https%3A%2F%2Factions-badge.atrox.dev%2Farlac77%2Fsvelte-log-view%2Fbadge\&style=flat)](https://actions-badge.atrox.dev/arlac77/svelte-log-view/goto)
5
+ [![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](git+https://github.com/arlac77/svelte-log-view.git)
8
6
  [![Styled with prettier](https://img.shields.io/badge/styled_with-prettier-ff69b4.svg)](https://github.com/prettier/prettier)
9
7
  [![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)
10
8
  [![Known Vulnerabilities](https://snyk.io/test/github/arlac77/svelte-log-view/badge.svg)](https://snyk.io/test/github/arlac77/svelte-log-view)
11
- [![Coverage Status](https://coveralls.io/repos/arlac77/svelte-log-view/badge.svg)](https://coveralls.io/github/arlac77/svelte-log-view)
12
- [![Tested with TestCafe](https://img.shields.io/badge/tested%20with-TestCafe-2fa4cf.svg)](https://github.com/DevExpress/testcafe)
9
+ [![Tested with playwright](https://img.shields.io/badge/tested%20with-playwright-2fa4cf.svg)](https://playwright.dev)
13
10
 
14
11
  # svelte-log-view
15
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "svelte-log-view",
3
- "version": "6.3.60",
3
+ "version": "6.3.61",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": true
@@ -45,14 +45,13 @@
45
45
  "@semantic-release/github": "^12.0.2",
46
46
  "@semantic-release/release-notes-generator": "^14.1.0",
47
47
  "@sveltejs/vite-plugin-svelte": "^6.2.1",
48
- "@types/node": "^24.10.1",
49
48
  "documentation": "^14.0.3",
50
49
  "mf-styling": "^3.2.16",
51
50
  "npm-pkgbuild": "^19.0.8",
52
51
  "playwright": "^1.57.0",
53
52
  "reader-line-iterator": "^1.2.3",
54
53
  "semantic-release": "^25.0.2",
55
- "svelte": "^5.45.5",
54
+ "svelte": "^5.45.6",
56
55
  "vite": "^7.2.6",
57
56
  "vite-plugin-compression2": "^2.4.0"
58
57
  },
@@ -131,11 +130,8 @@
131
130
  },
132
131
  "template": {
133
132
  "inheritFrom": [
134
- "arlac77/template-arlac77-github",
135
- "arlac77/template-cloudflare",
136
- "arlac77/template-npm-pkgbuild",
137
- "arlac77/template-svelte-component",
138
- "arlac77/template-vite"
133
+ "arlac77/template-playwright",
134
+ "arlac77/template-svelte-component"
139
135
  ]
140
136
  }
141
137
  }
@@ -1,44 +0,0 @@
1
- // @ts-check
2
- import { defineConfig, devices } from "@playwright/test";
3
-
4
- export default defineConfig({
5
- testDir: "./tests/playwright",
6
- /* Run tests in files in parallel */
7
- fullyParallel: true,
8
- /* Fail the build on CI if you accidentally left test.only in the source code. */
9
- forbidOnly: !!process.env.CI,
10
- /* Retry on CI only */
11
- retries: process.env.CI ? 2 : 0,
12
- /* Opt out of parallel tests on CI. */
13
- workers: process.env.CI ? 1 : undefined,
14
- /* Reporter to use. See https://playwright.dev/docs/test-reporters */
15
- reporter: "html",
16
- /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
17
- use: {
18
- baseURL: "http://localhost:5173/",
19
-
20
- /* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
21
- trace: "on-first-retry"
22
- },
23
-
24
- projects: [
25
- /*{
26
- name: "chromium",
27
- use: { ...devices["Desktop Chrome"] }
28
- },
29
- {
30
- name: "firefox",
31
- use: { ...devices["Desktop Firefox"] }
32
- },*/
33
- {
34
- name: "webkit",
35
- use: { ...devices["Desktop Safari"] }
36
- }
37
- ],
38
-
39
- webServer: {
40
- command: "npx vite",
41
- url: "http://localhost:5173/",
42
- reuseExistingServer: !process.env.CI
43
- }
44
- });