Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
36 changes: 36 additions & 0 deletions .github/workflows/windows-web-build.yml
Copy link
Collaborator

Choose a reason for hiding this comment

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

Can this just be added as another job to an existing workflow file, like the web build?

Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Windows Build

on:
pull_request:
push:

jobs:
windows-build:
runs-on: windows-latest

steps:
- name: Checkout repo
uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 18

# --- Build web_core first ---
- name: Install web_core deps
working-directory: renderers/web_core
run: npm install
Copy link
Collaborator

Choose a reason for hiding this comment

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

You'll want to prefer npm ci over install where possible: https://docs.npmjs.com/cli/v8/commands/npm-ci

This command is similar to npm install, except it's meant to be used in automated environments such as test platforms, continuous integration, and deployment [...]

Suggested change
run: npm install
run: npm ci


- name: Build web_core
working-directory: renderers/web_core
run: npm run build

# --- Then build lit ---
- name: Install lit deps
working-directory: renderers/lit
run: npm install
Copy link
Collaborator

Choose a reason for hiding this comment

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

Same here

Suggested change
run: npm install
run: npm ci


- name: Build lit
working-directory: renderers/lit
run: npm run build
Loading