@copilotkitnext/web-inspector 0.0.0-max-changeset-20260109174803 → 0.0.0-max-changeset-20260109200053

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.
@@ -4,4 +4,4 @@
4
4
 
5
5
  ≈ tailwindcss v4.1.18
6
6
 
7
- Done in 286ms
7
+ Done in 189ms
@@ -1,5 +1,9 @@
1
1
 
2
2
  > @copilotkitnext/web-inspector@0.0.33 build /home/runner/work/CopilotKit/CopilotKit/src/v2.x/packages/web-inspector
3
+ > pnpm run build:ts && pnpm run build:css
4
+
5
+
6
+ > @copilotkitnext/web-inspector@0.0.33 build:ts /home/runner/work/CopilotKit/CopilotKit/src/v2.x/packages/web-inspector
3
7
  > tsup
4
8
 
5
9
  CLI Building entry: src/index.ts
@@ -12,11 +16,18 @@
12
16
  ESM Build start
13
17
  ESM dist/index.mjs 149.99 KB
14
18
  ESM dist/index.mjs.map 217.56 KB
15
- ESM ⚡️ Build success in 160ms
19
+ ESM ⚡️ Build success in 199ms
16
20
  CJS dist/index.js 152.17 KB
17
21
  CJS dist/index.js.map 217.59 KB
18
- CJS ⚡️ Build success in 164ms
22
+ CJS ⚡️ Build success in 209ms
19
23
  DTS Build start
20
- DTS ⚡️ Build success in 5377ms
24
+ DTS ⚡️ Build success in 4326ms
21
25
  DTS dist/index.d.ts 6.30 KB
22
26
  DTS dist/index.d.mts 6.30 KB
27
+
28
+ > @copilotkitnext/web-inspector@0.0.33 build:css /home/runner/work/CopilotKit/CopilotKit/src/v2.x/packages/web-inspector
29
+ > npx @tailwindcss/cli -i ./src/styles/tailwind.css -o ./src/styles/generated.css -m
30
+
31
+ ≈ tailwindcss v4.1.18
32
+
33
+ Done in 124ms
package/CHANGELOG.md CHANGED
@@ -1,9 +1,9 @@
1
1
  # @copilotkitnext/web-inspector
2
2
 
3
- ## 0.0.0-max-changeset-20260109174803
3
+ ## 0.0.0-max-changeset-20260109200053
4
4
 
5
5
  ### Patch Changes
6
6
 
7
- - 9e8c5a7: Update versioning strategy
8
- - Updated dependencies [9e8c5a7]
9
- - @copilotkitnext/core@0.0.0-max-changeset-20260109174803
7
+ - 6da0e74: Update versioning strategy
8
+ - Updated dependencies [6da0e74]
9
+ - @copilotkitnext/core@0.0.0-max-changeset-20260109200053
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@copilotkitnext/web-inspector",
3
- "version": "0.0.0-max-changeset-20260109174803",
3
+ "version": "0.0.0-max-changeset-20260109200053",
4
4
  "description": "Lit-based web component for the CopilotKit web inspector",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -16,7 +16,7 @@
16
16
  },
17
17
  "peerDependencies": {
18
18
  "@ag-ui/client": "0.0.42",
19
- "@copilotkitnext/core": "0.0.0-max-changeset-20260109174803"
19
+ "@copilotkitnext/core": "0.0.0-max-changeset-20260109200053"
20
20
  },
21
21
  "dependencies": {
22
22
  "lit": "^3.2.0",
@@ -32,15 +32,16 @@
32
32
  "tsup": "^8.5.0",
33
33
  "typescript": "5.8.2",
34
34
  "vitest": "^3.0.5",
35
- "@copilotkitnext/core": "0.0.0-max-changeset-20260109174803",
36
- "@copilotkitnext/eslint-config": "0.0.0-max-changeset-20260109174803",
37
- "@copilotkitnext/typescript-config": "0.0.0-max-changeset-20260109174803"
35
+ "@copilotkitnext/core": "0.0.0-max-changeset-20260109200053",
36
+ "@copilotkitnext/eslint-config": "0.0.0-max-changeset-20260109200053",
37
+ "@copilotkitnext/typescript-config": "0.0.0-max-changeset-20260109200053"
38
38
  },
39
39
  "engines": {
40
40
  "node": ">=18"
41
41
  },
42
42
  "scripts": {
43
- "build": "tsup",
43
+ "build": "pnpm run build:ts && pnpm run build:css",
44
+ "build:ts": "tsup",
44
45
  "build:css": "npx @tailwindcss/cli -i ./src/styles/tailwind.css -o ./src/styles/generated.css -m",
45
46
  "dev": "pnpm run build:css && concurrently \"pnpm run dev:css\" \"tsup --watch\"",
46
47
  "dev:css": "npx @tailwindcss/cli -i ./src/styles/tailwind.css -o ./src/styles/generated.css --watch --minify",