Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 827075b

Browse files
committed
Merge branch 'analyzer-template-2' into tsserver-plugin-next
2 parents 1bc88a2 + 1603bb5 commit 827075b

File tree

293 files changed

+9678
-1848
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

293 files changed

+9678
-1848
lines changed

.changeset/large-beers-kick.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@lit-labs/signals': patch
3+
---
4+
5+
Remove a workaround for a fixed bug in signal-polyfillwq

.changeset/short-lies-do.md

Lines changed: 0 additions & 2 deletions
This file was deleted.

.changeset/tasty-planes-cheat.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
'@lit-internal/test-element-a': patch
3+
'@lit-internal/localize-examples-transform-js': patch
4+
'@lit-internal/localize-examples-transform-ts': patch
5+
'@lit-labs/gen-wrapper-angular': patch
6+
'@lit-labs/gen-wrapper-react': patch
7+
'@lit-labs/gen-wrapper-vue': patch
8+
'@lit-labs/tsserver-plugin': patch
9+
'eslint-plugin-lit': patch
10+
'@lit-labs/cli-localize': patch
11+
'@lit-labs/ssr-dom-shim': patch
12+
'@lit-internal/tests-typescript': patch
13+
'@lit/lit-starter-ts': patch
14+
'@lit/localize-tools': patch
15+
'@lit-labs/analyzer': patch
16+
'@lit-labs/compiler': patch
17+
'@lit-labs/cli': patch
18+
---
19+
20+
Update TypeScript dependencies to version 5.8 with related ARIAMixin changes (ariaColIndexText, ariaRelevant and ariaRowIndexText)

.clinerules

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.github/copilot-instructions.md

.cursorrules

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.github/copilot-instructions.md

.github/copilot-instructions.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Repository Technical Context
2+
3+
This repository is a monorepo that uses Lit for building web components and no other frontend frameworks unless otherwise specified.
4+
5+
## Coding Patterns
6+
7+
- Uses standard ESM imports
8+
- TypeScript imports end with `.js` extension
9+
- Decorators are used, but other TypeScript features that are not standard JavaScript are avoided
10+
- Focuses on native, modern browser features, including custom elements, Shadow DOM, and css custom properties.
11+
12+
## Build System
13+
14+
- Google Wireit orchestrates npm scripts
15+
- Wireit script configurations:
16+
- Declare file inputs and outputs
17+
- Specify script dependencies
18+
- Cache build artifacts in `.wireit` directories
19+
- Prepending `WIREIT_LOGGER=simple npm run <command>` outputs the full logs to the console

.github/workflows/benchmarks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
--json-file reactive-element-list.json
7676
7777
- name: Upload results
78-
uses: actions/upload-artifact@v3
78+
uses: actions/upload-artifact@v4
7979
with:
8080
name: results
8181
path: |

.github/workflows/release-image.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
node_modules/.bin/release-image -m <(sed -n '/# Releases/,$p' release.md)
4949
5050
- name: Upload artifact
51-
uses: actions/upload-artifact@v3
51+
uses: actions/upload-artifact@v4
5252
with:
5353
name: releaseimage
5454
path: release.png

.github/workflows/release.yaml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,10 @@ jobs:
1212
release:
1313
# Don't run on forks. We can and should only release from the main repo.
1414
permissions:
15-
contents: write # for Git to git push
15+
contents: write # for Git to git push
1616
pull-requests: write # to allow creating PR
17+
id-token: write # for npm provenance
18+
1719
if: github.repository == 'lit/lit'
1820

1921
name: Release
@@ -52,7 +54,9 @@ jobs:
5254
# run, and its output will appear in the raw logs). Unknown why this is the case,
5355
# see https://github.com/changesets/action/issues/149 for discussion.
5456
id: cs
55-
uses: changesets/action@v1
57+
# Pinning to v1.5.1 as v1.5.2 introduced a bug with sub directories
58+
# See https://github.com/changesets/action/issues/501
59+
uses: changesets/[email protected]
5660
with:
5761
# The `working-directory` option is only available for steps that use
5862
# `run`. This `cwd` option is the same, but specific to this action.
@@ -66,6 +70,7 @@ jobs:
6670
HUSKY: 0
6771
GITHUB_TOKEN: ${{ secrets.LIT_ROBOT_AUTOMATION_PAT }}
6872
NPM_TOKEN: ${{ secrets.LIT_ROBOT_NPM_PUBLISH_ACCESS_TOKEN }}
73+
NPM_CONFIG_PROVENANCE: true
6974

7075
- name: Checkout dist repo
7176
uses: actions/checkout@v3

.github/workflows/sizecheck.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636

3737
- name: Upload artifacts
3838
if: ${{ success() || failure() }}
39-
uses: actions/upload-artifact@v3
39+
uses: actions/upload-artifact@v4
4040
with:
4141
name: sizecheck
4242
path: |

0 commit comments

Comments
 (0)