Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into experimental-children
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher J Baker committed Jul 12, 2024
2 parents 1334d3d + fa9c8b4 commit d858cfc
Show file tree
Hide file tree
Showing 72 changed files with 4,851 additions and 3,863 deletions.
2 changes: 2 additions & 0 deletions .depcheckrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ ignore-dirs:
ignores:
- "@types/*"
- "@testing-library/jest-dom"
- jsdom
- typescript
- vite
- vite-plugin-dts
- vitest
2 changes: 2 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/packages
/tests
34 changes: 34 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
module.exports = {
root: true,
extends: "@bitovi/eslint-config/react",
settings: {
"import/internal-regex": "^@r2wc/",
},
rules: {
"@typescript-eslint/consistent-type-imports": [
"error",
{
prefer: "no-type-imports",
fixStyle: "inline-type-imports",
},
],
"import/order": [
"error",
{
"newlines-between": "always",
alphabetize: {
order: "asc",
caseInsensitive: true,
},
groups: [
"builtin",
"external",
"internal",
"parent",
"sibling",
"index",
],
},
],
},
}
2 changes: 1 addition & 1 deletion .github/actions/job-publish/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ inputs:
description: "The version segment to increment: major, minor, patch, or prerelease."
required: true
preId:
description: "Appended to the prerelease segment. (default: \"\")"
description: 'Appended to the prerelease segment. (default: "")'

runs:
using: "composite"
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/publish-npm/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ inputs:
description: "The version segment to increment: major, minor, patch, or prerelease."
required: true
preId:
description: "Appended to the prerelease segment. (default: \"\")"
description: 'Appended to the prerelease segment. (default: "")'

runs:
using: "composite"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
description: "The version segment to increment: major, minor, patch, or prerelease."
required: true
preId:
description: "Appended to the prerelease segment. (default: \"\")"
description: 'Appended to the prerelease segment. (default: "")'

jobs:
verify:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/legacy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
description: "The version segment to increment: major, minor, patch, or prerelease."
required: true
preId:
description: "Appended to the prerelease segment. (default: \"\")"
description: 'Appended to the prerelease segment. (default: "")'

jobs:
verify:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/react-to-web-component.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
description: "The version segment to increment: major, minor, patch, or prerelease."
required: true
preId:
description: "Appended to the prerelease segment. (default: \"\")"
description: 'Appended to the prerelease segment. (default: "")'

jobs:
verify:
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
.env.*

# artifacts
.nx/cache
.nx/workspace-data
node_modules
/packages/*/dist
/packages/*/coverage
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18
20
4 changes: 4 additions & 0 deletions .prettierrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
module.exports = {
semi: false,
trailingComma: "all",
}
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,11 @@ We also have a [complete example using a third party library](docs/complete-exam

## Examples

* [Hello World](https://codesandbox.io/s/hello-world-md5oih) - The quintessential software demo!
* [All the Props](https://codesandbox.io/s/all-the-props-n8z5hv) - A demo of all the prop transform types that R2WC supports.
* [Header Example](https://codesandbox.io/s/example-header-blog-7k313l) - An example reusable Header component.
* [MUI Button](https://codesandbox.io/s/example-mui-button-qwidh9) - An example application using an MUI button with theme customization.
* [Checklist Demo](https://codesandbox.io/s/example-checklist-blog-y3nqwx) - An example Checklist application.
- [Hello World](https://codesandbox.io/s/hello-world-md5oih) - The quintessential software demo!
- [All the Props](https://codesandbox.io/s/all-the-props-n8z5hv) - A demo of all the prop transform types that R2WC supports.
- [Header Example](https://codesandbox.io/s/example-header-blog-7k313l) - An example reusable Header component.
- [MUI Button](https://codesandbox.io/s/example-mui-button-qwidh9) - An example application using an MUI button with theme customization.
- [Checklist Demo](https://codesandbox.io/s/example-checklist-blog-y3nqwx) - An example Checklist application.

## Blog Posts

Expand Down
Loading

0 comments on commit d858cfc

Please sign in to comment.