-
Notifications
You must be signed in to change notification settings - Fork 985
Fix/windows supported frontend #548
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
hari-silvers
wants to merge
23
commits into
google:main
Choose a base branch
from
hari-silvers:fix/windows-supported-frontend
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+804
−22
Open
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 00caff9
typo in the declation on lit
hari-silvers 1ada430
Update renderers/lit/package.json
hari-silvers 3dd9d8b
Update renderers/web_core/package.json
hari-silvers ad9a080
Added Windows CI web build to prevent regressions
hari-silvers f159317
commited version for cpy-cli
hari-silvers 49189f2
Merge branch 'fix/windows-supported-frontend' of https://github.com/h…
hari-silvers 1409e96
Fix lit build order and cross-platform copy-spec
hari-silvers de88063
modified the package.json package
hari-silvers c9b442b
using npx in web_core package.json
hari-silvers db3a9a3
modified the web packages
hari-silvers 714da4f
Add CI job to ensure Windows build doesn’t regress
hari-silvers b34279f
added root dependency path
hari-silvers 95ad193
2nd change
hari-silvers c9aab20
3rd change
hari-silvers bba2669
Merge branch 'main' into fix/windows-supported-frontend
hari-silvers 2ef9627
Merge branch 'main' into fix/windows-supported-frontend
hari-silvers f4eaa34
Merge branch 'main' into fix/windows-supported-frontend
hari-silvers 0fa4261
removed the staged files in the src directory
hari-silvers b6cfb5d
Merge branch 'fix/windows-supported-frontend' of https://github.com/h…
hari-silvers 1f97906
Merge branch 'main' into fix/windows-supported-frontend
hari-silvers 1654b60
Update package-lock.json to version 0.8.3
hari-silvers 3d56cfa
Update package-lock.json with new dependencies
hari-silvers File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -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" | ||
| ], | ||
|
|
@@ -94,16 +94,18 @@ | |
| "devDependencies": { | ||
| "@types/markdown-it": "^14.1.2", | ||
| "@types/node": "^24.10.1", | ||
| "cpy-cli": "^6.0.0", | ||
hari-silvers marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| "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", | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 |
||
| "@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" | ||
| } | ||
| } | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.