@copilotkitnext/web-inspector 0.0.0-max-changeset-20260109191053 → 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 128ms
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
@@ -10,13 +14,20 @@
10
14
  CLI Cleaning output folder
11
15
  CJS Build start
12
16
  ESM Build start
13
- CJS dist/index.js 152.17 KB
14
- CJS dist/index.js.map 217.59 KB
15
- CJS ⚡️ Build success in 139ms
16
17
  ESM dist/index.mjs 149.99 KB
17
18
  ESM dist/index.mjs.map 217.56 KB
18
- ESM ⚡️ Build success in 141ms
19
+ ESM ⚡️ Build success in 199ms
20
+ CJS dist/index.js 152.17 KB
21
+ CJS dist/index.js.map 217.59 KB
22
+ CJS ⚡️ Build success in 209ms
19
23
  DTS Build start
20
- DTS ⚡️ Build success in 4838ms
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-20260109191053
3
+ ## 0.0.0-max-changeset-20260109200053
4
4
 
5
5
  ### Patch Changes
6
6
 
7
7
  - 6da0e74: Update versioning strategy
8
8
  - Updated dependencies [6da0e74]
9
- - @copilotkitnext/core@0.0.0-max-changeset-20260109191053
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-20260109191053",
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-20260109191053"
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-20260109191053",
36
- "@copilotkitnext/typescript-config": "0.0.0-max-changeset-20260109191053",
37
- "@copilotkitnext/eslint-config": "0.0.0-max-changeset-20260109191053"
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",