web-sqlite-js 0.0.5 → 0.0.7

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.
Files changed (3) hide show
  1. package/README.md +38 -11
  2. package/dist/index.js +85 -12452
  3. package/package.json +4 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "web-sqlite-js",
3
- "version": "0.0.5",
3
+ "version": "0.0.7",
4
4
  "description": "web-sqlite-js is a friendly, out-of-the-box SQLite database for the web that makes persistent client-side storage simple for every developer.",
5
5
  "workspaces": [
6
6
  "docs"
@@ -28,10 +28,11 @@
28
28
  "scripts": {
29
29
  "test": "npm run build && npm run lint && npm run test:unit && npm run test:e2e ",
30
30
  "test:unit": "vitest run --config vitest.unit.config.ts --coverage",
31
- "http": "tsx scripts/http-service.ts ./docs/.vitepress/dist --port 8399",
31
+ "http": "tsx scripts/http-service.ts ./samples --port 8399",
32
+ "http:docs": "tsx scripts/http-service.ts ./docs/.vitepress/dist --port 8399",
32
33
  "test:e2e": "vitest run --config vitest.e2e.config.ts",
33
34
  "test:debug": "vitest run --config vitest.e2e.config.ts --no-file-parallelism",
34
- "build": "vite build",
35
+ "build": "MINIFY=true vite build",
35
36
  "build:dev": "SOURCE_MAP=true vite build",
36
37
  "build:watch": "vite build --watch",
37
38
  "lint": "eslint . --ext .ts --fix; npm run typecheck && npm run format",