opfs-worker 1.1.0 → 1.2.1

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": "opfs-worker",
3
- "version": "1.1.0",
3
+ "version": "1.2.1",
4
4
  "description": "A robust TypeScript library for working with Origin Private File System (OPFS) through Web Workers",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -25,13 +25,13 @@
25
25
  "scripts": {
26
26
  "build": "vite build && tsc -p tsconfig.build.json",
27
27
  "build:demo": "vite build demo --base=./",
28
- "watch": "concurrently \"vite build --watch\" \"tsc -p tsconfig.build.json --watch\"",
28
+ "watch": "concurrently \"vite build --watch --mode development\" \"tsc -p tsconfig.build.json --watch\"",
29
29
  "dev": "vite serve demo",
30
30
  "preview": "vite preview demo",
31
31
  "type-check": "tsc --noEmit",
32
32
  "lint": "eslint src --ext .ts,.tsx",
33
33
  "lint:fix": "eslint src --ext .ts,.tsx --fix",
34
- "test": "vitest",
34
+ "test": "vitest --run",
35
35
  "test:coverage": "vitest --coverage",
36
36
  "prepublishOnly": "npm run build",
37
37
  "version": "changeset && changeset version",