@maydotinc/q-studio 0.1.1 → 0.8.0

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.
@@ -2,9 +2,10 @@
2
2
  <html lang="en">
3
3
  <head>
4
4
  <meta charset="UTF-8" />
5
- <link rel="icon" href="./assets/favicon.ico" />
6
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
6
  <title>Workbench</title>
7
+ <link rel="icon" href="./app-icon.svg" type="image/svg+xml" />
8
+ <link rel="apple-touch-icon" href="./app-icon.svg" />
8
9
  <!-- Prevent flash of wrong theme by setting dark class immediately -->
9
10
  <script>
10
11
  (() => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maydotinc/q-studio",
3
- "version": "0.1.1",
3
+ "version": "0.8.0",
4
4
  "description": "Q Studio — BullMQ dashboard for Express.",
5
5
  "type": "module",
6
6
  "exports": {
@@ -24,12 +24,14 @@
24
24
  "access": "public"
25
25
  },
26
26
  "scripts": {
27
- "build": "rm -rf dist && pnpm run build:ui && pnpm run build:lib",
28
- "build:ui": "pnpm --dir ../core run build:ui && rm -rf dist/ui && mkdir -p dist && cp -R ../core/dist/ui dist/ui",
29
- "build:lib": "tsup",
30
- "build:core": "pnpm run build",
31
- "build:express": "pnpm run build",
32
- "typecheck": "pnpm --dir ../core run typecheck && pnpm --dir ../express run typecheck",
27
+ "build": "tsup",
28
+ "build:release": "pnpm run build:deps && pnpm run build:ui && pnpm run build:bundle",
29
+ "build:deps": "pnpm --filter @getworkbench/core build && pnpm --filter @getworkbench/express build",
30
+ "build:ui": "rm -rf dist/ui && mkdir -p dist && cp -R ../core/dist/ui dist/ui",
31
+ "build:bundle": "rm -rf dist/index.js dist/index.js.map dist/core.js dist/core.js.map dist/index.d.ts dist/core.d.ts && tsup --config tsup.release.config.ts",
32
+ "prepublishOnly": "pnpm run build:release",
33
+ "dev": "tsup --watch",
34
+ "typecheck": "tsc --noEmit",
33
35
  "lint": "biome check .",
34
36
  "clean": "rm -rf dist .turbo"
35
37
  },
@@ -41,11 +43,16 @@
41
43
  "express": ">=4.18.0"
42
44
  },
43
45
  "devDependencies": {
46
+ "@getworkbench/core": "workspace:*",
47
+ "@getworkbench/express": "workspace:*",
44
48
  "@types/express": "^5.0.0",
45
49
  "@types/node": "^22.10.2",
46
50
  "bullmq": "^5.71.1",
47
51
  "express": "^5.0.0",
48
52
  "tsup": "^8.3.5",
49
53
  "typescript": "^5.7.2"
54
+ },
55
+ "engines": {
56
+ "node": ">=18"
50
57
  }
51
58
  }