Skip to content

Commit

Permalink
Revert "Version Packages (#3506)" (#3507)
Browse files Browse the repository at this point in the history
This reverts commit 5c83a35.
  • Loading branch information
augustjk committed Dec 8, 2022
1 parent 5c83a35 commit b152db2
Show file tree
Hide file tree
Showing 52 changed files with 124 additions and 177 deletions.
2 changes: 2 additions & 0 deletions .changeset/blue-feet-roll.md
@@ -0,0 +1,2 @@
---
---
5 changes: 5 additions & 0 deletions .changeset/cyan-moose-know.md
@@ -0,0 +1,5 @@
---
'@lit-labs/context': patch
---

Make @consume decorator work with optional fields
2 changes: 2 additions & 0 deletions .changeset/dirty-mugs-rhyme.md
@@ -0,0 +1,2 @@
---
---
6 changes: 6 additions & 0 deletions .changeset/dull-months-prove.md
@@ -0,0 +1,6 @@
---
'@lit-labs/analyzer': minor
'@lit-labs/gen-manifest': minor
---

Added support for export, slot, cssPart, and cssProperty to analyzer and manifest generator. Also improved JS project analysis performance.
5 changes: 5 additions & 0 deletions .changeset/early-eggs-doubt.md
@@ -0,0 +1,5 @@
---
'@lit-labs/ssr': minor
---

`ReactiveElement`'s `shadowRootOptions` are now used to configure declarative shadow roots' properties.
5 changes: 5 additions & 0 deletions .changeset/eight-poets-travel.md
@@ -0,0 +1,5 @@
---
'@lit-labs/cli': minor
---

changed lit init --dir flag to --out
6 changes: 6 additions & 0 deletions .changeset/five-falcons-suffer.md
@@ -0,0 +1,6 @@
---
'@lit-labs/analyzer': minor
'@lit-labs/cli': minor
---

Added superclass analysis to ClassDeclaration, along with the ability to query exports of a Module (via `getExport()` and `getResolvedExport()`) and the ability to dereference `Reference`s to the `Declaration` they point to (via `dereference()`). A ClassDeclaration's superClass may be interrogated via `classDeclaration.heritage.superClass.dereference()` (`heritage.superClass` returns a `Reference`, which can be dereferenced to access its superclass's `ClassDeclaration` model.
2 changes: 2 additions & 0 deletions .changeset/fresh-oranges-search.md
@@ -0,0 +1,2 @@
---
---
5 changes: 5 additions & 0 deletions .changeset/fuzzy-gorillas-wait.md
@@ -0,0 +1,5 @@
---
'@lit-labs/ssr': minor
---

Module resolution within SSR now supports package exports (via `package.json`)
5 changes: 5 additions & 0 deletions .changeset/lemon-llamas-rule.md
@@ -0,0 +1,5 @@
---
'@lit-labs/context': minor
---

Rename ContextKey to Context
5 changes: 5 additions & 0 deletions .changeset/light-dragons-serve.md
@@ -0,0 +1,5 @@
---
'@lit-labs/ssr': minor
---

Add support to SSR for loading of modules from packages with export maps
7 changes: 7 additions & 0 deletions .changeset/light-dryers-talk.md
@@ -0,0 +1,7 @@
---
'lit-html': minor
'@lit/reactive-element': minor
'lit': minor
---

`lit-html` and `reactive-element` now include development Node builds with unminified code and dev warnings.
5 changes: 5 additions & 0 deletions .changeset/little-terms-develop.md
@@ -0,0 +1,5 @@
---
'@lit-labs/react': patch
---

Add console warning for reserved react properites found on a wrapped web component in dev mode only.
2 changes: 2 additions & 0 deletions .changeset/many-boxes-help.md
@@ -0,0 +1,2 @@
---
---
2 changes: 2 additions & 0 deletions .changeset/six-buttons-cover.md
@@ -0,0 +1,2 @@
---
---
5 changes: 5 additions & 0 deletions .changeset/tidy-flowers-mate.md
@@ -0,0 +1,5 @@
---
'@lit-labs/react': patch
---

Filter \_\_forwaredRef from build.
5 changes: 5 additions & 0 deletions .changeset/unlucky-lamps-sing.md
@@ -0,0 +1,5 @@
---
'@lit-labs/context': patch
---

Allow ContextProvider to be added lazily and still work with ContextRoot
5 changes: 5 additions & 0 deletions .changeset/unlucky-parents-melt.md
@@ -0,0 +1,5 @@
---
'@lit-labs/context': patch
---

Rename @contextProvided and @contextProvider to @consume and @provide
6 changes: 6 additions & 0 deletions .changeset/wild-pillows-carry.md
@@ -0,0 +1,6 @@
---
'@lit-labs/cli': minor
'@lit-labs/gen-utils': minor
---

Implemented lit init element command
8 changes: 0 additions & 8 deletions packages/labs/analyzer/CHANGELOG.md
@@ -1,13 +1,5 @@
# @lit-labs/analyzer

## 0.5.0

### Minor Changes

- [#3464](https://github.com/lit/lit/pull/3464) [`0260a15e`](https://github.com/lit/lit/commit/0260a15e2087d2b1ea8f5072663a637cedd186d9) - Added support for export, slot, cssPart, and cssProperty to analyzer and manifest generator. Also improved JS project analysis performance.

- [#3380](https://github.com/lit/lit/pull/3380) [`00f59cf5`](https://github.com/lit/lit/commit/00f59cf560a28e24d9751d0d8db2826fd767158b) - Added superclass analysis to ClassDeclaration, along with the ability to query exports of a Module (via `getExport()` and `getResolvedExport()`) and the ability to dereference `Reference`s to the `Declaration` they point to (via `dereference()`). A ClassDeclaration's superClass may be interrogated via `classDeclaration.heritage.superClass.dereference()` (`heritage.superClass` returns a `Reference`, which can be dereferenced to access its superclass's `ClassDeclaration` model.

## 0.4.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/labs/analyzer/package.json
@@ -1,6 +1,6 @@
{
"name": "@lit-labs/analyzer",
"version": "0.5.0",
"version": "0.4.0",
"publishConfig": {
"access": "public"
},
Expand Down
16 changes: 0 additions & 16 deletions packages/labs/cli/CHANGELOG.md
@@ -1,21 +1,5 @@
# @lit-labs/cli

## 0.3.0

### Minor Changes

- [#3456](https://github.com/lit/lit/pull/3456) [`cd46b598`](https://github.com/lit/lit/commit/cd46b5988ccd1c9cd199304043dcac743de82aea) - changed lit init --dir flag to --out

- [#3380](https://github.com/lit/lit/pull/3380) [`00f59cf5`](https://github.com/lit/lit/commit/00f59cf560a28e24d9751d0d8db2826fd767158b) - Added superclass analysis to ClassDeclaration, along with the ability to query exports of a Module (via `getExport()` and `getResolvedExport()`) and the ability to dereference `Reference`s to the `Declaration` they point to (via `dereference()`). A ClassDeclaration's superClass may be interrogated via `classDeclaration.heritage.superClass.dereference()` (`heritage.superClass` returns a `Reference`, which can be dereferenced to access its superclass's `ClassDeclaration` model.

- [#3248](https://github.com/lit/lit/pull/3248) [`9b9bdb0e`](https://github.com/lit/lit/commit/9b9bdb0e7be218b8d6e4478867361aaf14de49d5) - Implemented lit init element command

### Patch Changes

- Updated dependencies [[`0260a15e`](https://github.com/lit/lit/commit/0260a15e2087d2b1ea8f5072663a637cedd186d9), [`00f59cf5`](https://github.com/lit/lit/commit/00f59cf560a28e24d9751d0d8db2826fd767158b), [`9b9bdb0e`](https://github.com/lit/lit/commit/9b9bdb0e7be218b8d6e4478867361aaf14de49d5)]:
- @lit-labs/analyzer@0.5.0
- @lit-labs/gen-utils@0.2.0

## 0.2.1

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/labs/cli/package.json
@@ -1,7 +1,7 @@
{
"name": "@lit-labs/cli",
"description": "Tooling for Lit development",
"version": "0.3.0",
"version": "0.2.1",
"publishConfig": {
"access": "public"
},
Expand Down Expand Up @@ -78,8 +78,8 @@
}
},
"dependencies": {
"@lit-labs/analyzer": "^0.5.0",
"@lit-labs/gen-utils": "^0.2.0",
"@lit-labs/analyzer": "^0.4.0",
"@lit-labs/gen-utils": "^0.1.0",
"@lit/localize-tools": "^0.6.1",
"chalk": "^5.0.1",
"command-line-args": "^5.2.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/labs/cli/src/lib/lit-version.ts
@@ -1 +1 @@
export const litVersion = '2.5.0';
export const litVersion = '2.2.8';
2 changes: 1 addition & 1 deletion packages/labs/cli/test-goldens/init/js-named/package.json
Expand Up @@ -13,7 +13,7 @@
"lit"
],
"dependencies": {
"lit": "^2.5.0"
"lit": "^2.2.8"
},
"devDependencies": {
"@web/dev-server": "^0.1.32"
Expand Down
2 changes: 1 addition & 1 deletion packages/labs/cli/test-goldens/init/js/package.json
Expand Up @@ -13,7 +13,7 @@
"lit"
],
"dependencies": {
"lit": "^2.5.0"
"lit": "^2.2.8"
},
"devDependencies": {
"@web/dev-server": "^0.1.32"
Expand Down
2 changes: 1 addition & 1 deletion packages/labs/cli/test-goldens/init/ts-named/package.json
Expand Up @@ -16,7 +16,7 @@
"lit"
],
"dependencies": {
"lit": "^2.5.0"
"lit": "^2.2.8"
},
"devDependencies": {
"@web/dev-server": "^0.1.32",
Expand Down
18 changes: 0 additions & 18 deletions packages/labs/context/CHANGELOG.md
@@ -1,23 +1,5 @@
# @lit-labs/context

## 0.2.0

### Minor Changes

- [#3404](https://github.com/lit/lit/pull/3404) [`b3e8993a`](https://github.com/lit/lit/commit/b3e8993ad1bb0cc09266f98fb6ffb23a7194adfe) - Rename ContextKey to Context

### Patch Changes

- [#3399](https://github.com/lit/lit/pull/3399) [`0e52919b`](https://github.com/lit/lit/commit/0e52919b6c43a2b30c5b5ba539266d4746fc3198) - Make @consume decorator work with optional fields

- [#3434](https://github.com/lit/lit/pull/3434) [`a6a55913`](https://github.com/lit/lit/commit/a6a5591327a90e9c7d922d1d978627794909c422) - Allow ContextProvider to be added lazily and still work with ContextRoot

- [#3398](https://github.com/lit/lit/pull/3398) [`50f2e424`](https://github.com/lit/lit/commit/50f2e424d3a276b3f6c1b953fc03b7499227079a) - Rename @contextProvided and @contextProvider to @consume and @provide

- Updated dependencies [[`e729f18b`](https://github.com/lit/lit/commit/e729f18be8679f33802409bb89a3e6885af98c0e)]:
- @lit/reactive-element@1.5.0
- lit@2.5.0

## 0.1.3

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/labs/context/package.json
@@ -1,6 +1,6 @@
{
"name": "@lit-labs/context",
"version": "0.2.0",
"version": "0.1.3",
"description": "Helpers and controllers for using Context protocol",
"license": "BSD-3-Clause",
"homepage": "https://lit.dev/",
Expand Down Expand Up @@ -132,8 +132,8 @@
},
"author": "Google LLC",
"dependencies": {
"@lit/reactive-element": "^1.5.0",
"lit": "^2.5.0"
"@lit/reactive-element": "^1.0.0",
"lit": "^2.0.0"
},
"devDependencies": {
"@types/trusted-types": "^2.0.2",
Expand Down
12 changes: 0 additions & 12 deletions packages/labs/gen-manifest/CHANGELOG.md
@@ -1,17 +1,5 @@
# @lit-labs/gen-manifest

## 0.1.0

### Minor Changes

- [#3464](https://github.com/lit/lit/pull/3464) [`0260a15e`](https://github.com/lit/lit/commit/0260a15e2087d2b1ea8f5072663a637cedd186d9) - Added support for export, slot, cssPart, and cssProperty to analyzer and manifest generator. Also improved JS project analysis performance.

### Patch Changes

- Updated dependencies [[`0260a15e`](https://github.com/lit/lit/commit/0260a15e2087d2b1ea8f5072663a637cedd186d9), [`00f59cf5`](https://github.com/lit/lit/commit/00f59cf560a28e24d9751d0d8db2826fd767158b), [`9b9bdb0e`](https://github.com/lit/lit/commit/9b9bdb0e7be218b8d6e4478867361aaf14de49d5)]:
- @lit-labs/analyzer@0.5.0
- @lit-labs/gen-utils@0.2.0

## 0.0.2

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/labs/gen-manifest/package.json
Expand Up @@ -2,7 +2,7 @@
"private": true,
"name": "@lit-labs/gen-manifest",
"description": "Code generator for generating Custom Elements Manifests for Lit components",
"version": "0.1.0",
"version": "0.0.2",
"author": "Google LLC",
"license": "BSD-3-Clause",
"bugs": "https://github.com/lit/lit/issues",
Expand Down Expand Up @@ -48,8 +48,8 @@
}
},
"dependencies": {
"@lit-labs/analyzer": "^0.5.0",
"@lit-labs/gen-utils": "^0.2.0",
"@lit-labs/analyzer": "^0.4.0",
"@lit-labs/gen-utils": "^0.1.0",
"custom-elements-manifest": "^2.0.0"
},
"devDependencies": {
Expand Down
11 changes: 0 additions & 11 deletions packages/labs/gen-utils/CHANGELOG.md
@@ -1,16 +1,5 @@
# @lit-labs/gen-utils

## 0.2.0

### Minor Changes

- [#3248](https://github.com/lit/lit/pull/3248) [`9b9bdb0e`](https://github.com/lit/lit/commit/9b9bdb0e7be218b8d6e4478867361aaf14de49d5) - Implemented lit init element command

### Patch Changes

- Updated dependencies [[`0260a15e`](https://github.com/lit/lit/commit/0260a15e2087d2b1ea8f5072663a637cedd186d9), [`00f59cf5`](https://github.com/lit/lit/commit/00f59cf560a28e24d9751d0d8db2826fd767158b)]:
- @lit-labs/analyzer@0.5.0

## 0.1.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/labs/gen-utils/package.json
@@ -1,7 +1,7 @@
{
"name": "@lit-labs/gen-utils",
"description": "Utilities for lit code generators",
"version": "0.2.0",
"version": "0.1.2",
"publishConfig": {
"access": "public"
},
Expand Down Expand Up @@ -46,7 +46,7 @@
}
},
"dependencies": {
"@lit-labs/analyzer": "^0.5.0"
"@lit-labs/analyzer": "^0.4.0"
},
"devDependencies": {
"@lit-internal/tests": "^0.0.0"
Expand Down
8 changes: 0 additions & 8 deletions packages/labs/gen-wrapper-angular/CHANGELOG.md
@@ -1,13 +1,5 @@
# @lit-labs/gen-wrapper-angular

## 0.0.4

### Patch Changes

- Updated dependencies [[`0260a15e`](https://github.com/lit/lit/commit/0260a15e2087d2b1ea8f5072663a637cedd186d9), [`00f59cf5`](https://github.com/lit/lit/commit/00f59cf560a28e24d9751d0d8db2826fd767158b), [`9b9bdb0e`](https://github.com/lit/lit/commit/9b9bdb0e7be218b8d6e4478867361aaf14de49d5)]:
- @lit-labs/analyzer@0.5.0
- @lit-labs/gen-utils@0.2.0

## 0.0.3

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/labs/gen-wrapper-angular/package.json
Expand Up @@ -2,7 +2,7 @@
"private": true,
"name": "@lit-labs/gen-wrapper-angular",
"description": "Code generator for Angular wrappers for Lit components",
"version": "0.0.4",
"version": "0.0.3",
"publishConfig": {
"access": "public"
},
Expand Down Expand Up @@ -57,8 +57,8 @@
}
},
"dependencies": {
"@lit-labs/analyzer": "^0.5.0",
"@lit-labs/gen-utils": "^0.2.0"
"@lit-labs/analyzer": "^0.4.0",
"@lit-labs/gen-utils": "^0.1.0"
},
"devDependencies": {
"@esm-bundle/chai": "^4.1.5",
Expand Down
8 changes: 0 additions & 8 deletions packages/labs/gen-wrapper-react/CHANGELOG.md
@@ -1,13 +1,5 @@
# @lit-labs/gen-wrapper-react

## 0.2.2

### Patch Changes

- Updated dependencies [[`0260a15e`](https://github.com/lit/lit/commit/0260a15e2087d2b1ea8f5072663a637cedd186d9), [`00f59cf5`](https://github.com/lit/lit/commit/00f59cf560a28e24d9751d0d8db2826fd767158b), [`9b9bdb0e`](https://github.com/lit/lit/commit/9b9bdb0e7be218b8d6e4478867361aaf14de49d5)]:
- @lit-labs/analyzer@0.5.0
- @lit-labs/gen-utils@0.2.0

## 0.2.1

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/labs/gen-wrapper-react/package.json
@@ -1,7 +1,7 @@
{
"name": "@lit-labs/gen-wrapper-react",
"description": "Code generator for React wrapper for Lit components",
"version": "0.2.2",
"version": "0.2.1",
"publishConfig": {
"access": "public"
},
Expand Down Expand Up @@ -60,8 +60,8 @@
}
},
"dependencies": {
"@lit-labs/analyzer": "^0.5.0",
"@lit-labs/gen-utils": "^0.2.0"
"@lit-labs/analyzer": "^0.4.0",
"@lit-labs/gen-utils": "^0.1.0"
},
"devDependencies": {
"@lit-internal/tests": "^0.0.0"
Expand Down
8 changes: 0 additions & 8 deletions packages/labs/gen-wrapper-vue/CHANGELOG.md
@@ -1,13 +1,5 @@
# @lit-labs/gen-wrapper-vue

## 0.2.2

### Patch Changes

- Updated dependencies [[`0260a15e`](https://github.com/lit/lit/commit/0260a15e2087d2b1ea8f5072663a637cedd186d9), [`00f59cf5`](https://github.com/lit/lit/commit/00f59cf560a28e24d9751d0d8db2826fd767158b), [`9b9bdb0e`](https://github.com/lit/lit/commit/9b9bdb0e7be218b8d6e4478867361aaf14de49d5)]:
- @lit-labs/analyzer@0.5.0
- @lit-labs/gen-utils@0.2.0

## 0.2.1

### Patch Changes
Expand Down

0 comments on commit b152db2

Please sign in to comment.