Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
dd43023
fixed the wireit command to support for windows
hari-silvers Jan 25, 2026
00caff9
typo in the declation on lit
hari-silvers Jan 25, 2026
1ada430
Update renderers/lit/package.json
hari-silvers Jan 26, 2026
3dd9d8b
Update renderers/web_core/package.json
hari-silvers Jan 26, 2026
ad9a080
Added Windows CI web build to prevent regressions
hari-silvers Jan 26, 2026
f159317
commited version for cpy-cli
hari-silvers Jan 26, 2026
49189f2
Merge branch 'fix/windows-supported-frontend' of https://github.com/h…
hari-silvers Jan 26, 2026
1409e96
Fix lit build order and cross-platform copy-spec
hari-silvers Jan 26, 2026
de88063
modified the package.json package
hari-silvers Jan 26, 2026
c9b442b
using npx in web_core package.json
hari-silvers Jan 26, 2026
db3a9a3
modified the web packages
hari-silvers Jan 26, 2026
714da4f
Add CI job to ensure Windows build doesn’t regress
hari-silvers Jan 26, 2026
b34279f
added root dependency path
hari-silvers Jan 26, 2026
95ad193
2nd change
hari-silvers Jan 26, 2026
c9aab20
3rd change
hari-silvers Jan 26, 2026
bba2669
Merge branch 'main' into fix/windows-supported-frontend
hari-silvers Jan 31, 2026
2ef9627
Merge branch 'main' into fix/windows-supported-frontend
hari-silvers Feb 21, 2026
f4eaa34
Merge branch 'main' into fix/windows-supported-frontend
hari-silvers Feb 28, 2026
0fa4261
removed the staged files in the src directory
hari-silvers Feb 28, 2026
b6cfb5d
Merge branch 'fix/windows-supported-frontend' of https://github.com/h…
hari-silvers Feb 28, 2026
1f97906
Merge branch 'main' into fix/windows-supported-frontend
hari-silvers Mar 7, 2026
1654b60
Update package-lock.json to version 0.8.3
hari-silvers Mar 7, 2026
3d56cfa
Update package-lock.json with new dependencies
hari-silvers Mar 7, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
248 changes: 246 additions & 2 deletions renderers/lit/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions renderers/lit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
},
"wireit": {
"copy-spec": {
"command": "mkdir -p src/0.8/schemas && cp ../../specification/v0_8/json/*.json src/0.8/schemas",
"command": "mkdirp src/0.8/schemas && cpy \"../../specification/v0_8/json/*.json\" src/0.8/schemas",
"files": [
"../../specification/v0_8/json/*.json"
],
Expand Down Expand Up @@ -94,16 +94,18 @@
"devDependencies": {
"@types/markdown-it": "^14.1.2",
"@types/node": "^24.10.1",
"cpy-cli": "^6.0.0",
"google-artifactregistry-auth": "^3.5.0",
"mkdirp": "^3.0.1",
"typescript": "^5.8.3",
"wireit": "^0.15.0-pre.2"
},
"dependencies": {
"@a2ui/web_core": "file:../web_core",
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This doesn't look right - we want to rely on the published version, with npm link for local dev.

"@lit-labs/signals": "^0.1.3",
"@lit/context": "^1.1.4",
"lit": "^3.3.1",
"markdown-it": "^14.1.0",
"signal-utils": "^0.21.1",
"@a2ui/web_core": "file:../web_core"
"signal-utils": "^0.21.1"
}
}
Loading