Skip to content

Commit a896e1b

Browse files
authored
Merge pull request #158 from break-stuff/update-jsx-types-messaging
Update-jsx-types-messaging
2 parents 3da36e4 + 71d4c91 commit a896e1b

File tree

6 files changed

+12
-4
lines changed

6 files changed

+12
-4
lines changed

packages/deprecator/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 1.1.2
4+
5+
- Fixed imported function name in `README.md`
6+
37
## 1.1.1
48

59
- Prevent overriding CEM when Analyzer is used

packages/deprecator/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ Ensure the following steps have been taken in your component library prior to us
106106
```js
107107
// custom-elements-manifest.config.js
108108

109-
import { cemInheritancePlugin } from "custom-elements-manifest-deprecator";
109+
import { cemDeprecatorPlugin } from "custom-elements-manifest-deprecator";
110110

111111
const options = {
112112
/* add options here */

packages/deprecator/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "custom-elements-manifest-deprecator",
3-
"version": "1.1.1",
3+
"version": "1.1.2",
44
"description": "A tool for marking Custom Elements Manifest data as 'deprecated'",
55
"main": "index.js",
66
"module": "index.js",

packages/jsx-integration/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

3+
## 1.5.4
4+
5+
- Updated messaging in `README.md` for react wrappers
6+
37
## 1.5.3
48

59
- Updated to use intersection types rather than union types

packages/jsx-integration/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This package is designed to generate types for your custom elements in a project using [JSX](https://www.typescriptlang.org/docs/handbook/jsx.html). These types will generate inline documentation, autocomplete, and type-safe validation for your custom elements in non-react frameworks that use JSX like [Preact](https://preactjs.com/) and [StencilJS](https://stenciljs.com/).
44

5-
> **_NOTE:_** THIS IS FOR NON-REACT PROJECTS THAT USE JSX/TSX TEMPLATES
5+
> **_NOTE:_** If you are using react 18 or below, check out our [react wrappers](https://www.npmjs.com/package/custom-element-react-wrappers).
66
77
![demo of autocomplete features for custom elements in a solidjs project](https://github.com/break-stuff/cem-tools/blob/main/demo/images/solid-js-integration/solid-js-integration.gif?raw=true)
88

packages/jsx-integration/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "custom-element-jsx-integration",
3-
"version": "1.5.3",
3+
"version": "1.5.4",
44
"description": "Tools for integrating custom elements into JSX projects",
55
"main": "index.js",
66
"module": "index.js",

0 commit comments

Comments
 (0)