-
-
Notifications
You must be signed in to change notification settings - Fork 703
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
113 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# `@plone/blocks` | ||
|
||
This package contains the default blocks provided by Plone. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# `parcel-optimizer-react-client` | ||
|
||
This package is a `parcel` plugin that prepends `use client` to any bundled file. | ||
This is useful to mark a separation of concerns in frameworks that support React Server Components, like Next.JS. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# `tsconfig` | ||
|
||
Base configurations for TypeScript projects. | ||
|
||
## Usage | ||
|
||
In `package.json`: | ||
|
||
```json | ||
"devDependencies": { | ||
"tsconfig": "workspace:*", | ||
} | ||
``` | ||
|
||
```json | ||
{ | ||
"extends": "tsconfig/react-library.json", | ||
"include": ["src", "src/**/*.js"], | ||
"exclude": [ | ||
"node_modules", | ||
"build", | ||
"public", | ||
"coverage", | ||
"src/**/*.test.{js,jsx,ts,tsx}", | ||
"src/**/*.spec.{js,jsx,ts,tsx}", | ||
"src/**/*.stories.{js,jsx,ts,tsx}" | ||
] | ||
} | ||
``` |