Skip to content

Commit

Permalink
👷
Browse files Browse the repository at this point in the history
  • Loading branch information
zbeyens committed Oct 1, 2023
2 parents 1952058 + 2d5eca6 commit 2025322
Show file tree
Hide file tree
Showing 125 changed files with 617 additions and 399 deletions.
14 changes: 14 additions & 0 deletions config/eslint/bases/next.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,20 @@ module.exports = {
'import/prefer-default-export': 'off',
},
overrides: [
{
files: ['**/packages/**'],
excludedFiles: ['**/*.test.*', '**/*.spec.*', '**/*.fixtures.*', '**/__tests__/**/*', '**/apps/**/*'],
rules: {
'import/no-extraneous-dependencies': [
'error',
{
devDependencies: false,
includeInternal: false,
includeTypes: false,
},
],
}
},
{
files: ['apps/www/next.config.mjs'],
rules: {
Expand Down
5 changes: 4 additions & 1 deletion config/tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,12 @@ export default defineConfig((opts) => {
...opts,
entry: [INPUT_FILE],
format: ['cjs', 'esm'],
external: [],
skipNodeModulesBundle: true,
dts: true,
// dts: {
// only: true,
// resolve: false,
// },
sourcemap: true,
clean: true,
minify: false,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"gen:package": "yarn plop --plopfile scripts/plop/plopfile.cjs package",
"g:dev": "turbo --filter=www dev",
"g:dev:cli": "yarn workspace @udecode/plate-ui dev",
"g:lint": "turbo lint",
"g:lint": "turbo --filter \"./packages/**\" lint",
"g:lint:fix": "turbo lint:fix",
"g:lint:apps": "turbo --filter=www lint && cd templates/plate-playground-template && pnpm lint",
"g:lint:apps:fix": "turbo --filter=www lint --fix && cd templates/plate-playground-template && pnpm lint:fix",
Expand Down
2 changes: 2 additions & 0 deletions packages/alignment/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @udecode/plate-alignment

## 24.3.1

## 24.3.0

## 24.2.0
Expand Down
5 changes: 3 additions & 2 deletions packages/alignment/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@udecode/plate-alignment",
"version": "24.3.0",
"version": "24.3.1",
"description": "Text alignment plugin for Plate",
"license": "MIT",
"homepage": "https://platejs.org",
Expand Down Expand Up @@ -39,13 +39,14 @@
"typecheck": "yarn p:typecheck"
},
"dependencies": {
"@udecode/plate-common": "24.3.0"
"@udecode/plate-common": "24.3.1"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"slate": ">=0.94.0",
"slate-history": ">=0.93.0",
"slate-hyperscript": ">=0.66.0",
"slate-react": ">=0.95.0"
},
"keywords": [
Expand Down
2 changes: 2 additions & 0 deletions packages/autoformat/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @udecode/plate-autoformat

## 24.3.1

## 24.3.0

## 24.2.0
Expand Down
6 changes: 4 additions & 2 deletions packages/autoformat/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@udecode/plate-autoformat",
"version": "24.3.0",
"version": "24.3.1",
"description": "Autoformatting plugin for Plate",
"license": "MIT",
"homepage": "https://platejs.org",
Expand Down Expand Up @@ -39,13 +39,15 @@
"typecheck": "yarn p:typecheck"
},
"dependencies": {
"@udecode/plate-common": "24.3.0"
"@udecode/plate-common": "24.3.1",
"lodash": "^4.17.21"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"slate": ">=0.94.0",
"slate-history": ">=0.93.0",
"slate-hyperscript": ">=0.66.0",
"slate-react": ">=0.95.0"
},
"keywords": [
Expand Down
2 changes: 2 additions & 0 deletions packages/basic-elements/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @udecode/plate-basic-elements

## 24.3.1

## 24.3.0

## 24.2.0
Expand Down
13 changes: 7 additions & 6 deletions packages/basic-elements/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@udecode/plate-basic-elements",
"version": "24.3.0",
"version": "24.3.1",
"description": "Basic elements plugin for Plate",
"license": "MIT",
"homepage": "https://platejs.org",
Expand Down Expand Up @@ -39,17 +39,18 @@
"typecheck": "yarn p:typecheck"
},
"dependencies": {
"@udecode/plate-block-quote": "24.3.0",
"@udecode/plate-code-block": "24.3.0",
"@udecode/plate-common": "24.3.0",
"@udecode/plate-heading": "24.3.0",
"@udecode/plate-paragraph": "24.3.0"
"@udecode/plate-block-quote": "24.3.1",
"@udecode/plate-code-block": "24.3.1",
"@udecode/plate-common": "24.3.1",
"@udecode/plate-heading": "24.3.1",
"@udecode/plate-paragraph": "24.3.1"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"slate": ">=0.94.0",
"slate-history": ">=0.93.0",
"slate-hyperscript": ">=0.66.0",
"slate-react": ">=0.95.0"
},
"keywords": [
Expand Down
2 changes: 2 additions & 0 deletions packages/basic-marks/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @udecode/plate-basic-marks

## 24.3.1

## 24.3.0

## 24.2.0
Expand Down
5 changes: 3 additions & 2 deletions packages/basic-marks/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@udecode/plate-basic-marks",
"version": "24.3.0",
"version": "24.3.1",
"description": "Basic marks plugin for Plate",
"license": "MIT",
"homepage": "https://platejs.org",
Expand Down Expand Up @@ -38,13 +38,14 @@
"typecheck": "yarn p:typecheck"
},
"dependencies": {
"@udecode/plate-common": "24.3.0"
"@udecode/plate-common": "24.3.1"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"slate": ">=0.94.0",
"slate-history": ">=0.93.0",
"slate-hyperscript": ">=0.66.0",
"slate-react": ">=0.95.0"
},
"keywords": [
Expand Down
2 changes: 2 additions & 0 deletions packages/block-quote/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @udecode/plate-block-quote

## 24.3.1

## 24.3.0

## 24.2.0
Expand Down
5 changes: 3 additions & 2 deletions packages/block-quote/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@udecode/plate-block-quote",
"version": "24.3.0",
"version": "24.3.1",
"description": "Block quote plugin for Plate",
"license": "MIT",
"homepage": "https://platejs.org",
Expand Down Expand Up @@ -39,13 +39,14 @@
"typecheck": "yarn p:typecheck"
},
"dependencies": {
"@udecode/plate-common": "24.3.0"
"@udecode/plate-common": "24.3.1"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"slate": ">=0.94.0",
"slate-history": ">=0.93.0",
"slate-hyperscript": ">=0.66.0",
"slate-react": ">=0.95.0"
},
"keywords": [
Expand Down
2 changes: 2 additions & 0 deletions packages/break/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @udecode/plate-break

## 24.3.1

## 24.3.0

## 24.2.0
Expand Down
5 changes: 3 additions & 2 deletions packages/break/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@udecode/plate-break",
"version": "24.3.0",
"version": "24.3.1",
"description": "Insert break plugins for Plate",
"license": "MIT",
"homepage": "https://platejs.org",
Expand Down Expand Up @@ -39,13 +39,14 @@
"typecheck": "yarn p:typecheck"
},
"dependencies": {
"@udecode/plate-common": "24.3.0"
"@udecode/plate-common": "24.3.1"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"slate": ">=0.94.0",
"slate-history": ">=0.93.0",
"slate-hyperscript": ">=0.66.0",
"slate-react": ">=0.95.0"
},
"keywords": [
Expand Down
2 changes: 2 additions & 0 deletions packages/caption/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @udecode/plate-caption

## 24.3.1

## 24.3.0

## 24.2.0
Expand Down
5 changes: 3 additions & 2 deletions packages/caption/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@udecode/plate-caption",
"version": "24.3.0",
"version": "24.3.1",
"description": "Primitive components for caption.",
"license": "MIT",
"homepage": "https://platejs.org",
Expand Down Expand Up @@ -39,14 +39,15 @@
"typecheck": "yarn p:typecheck"
},
"dependencies": {
"@udecode/plate-common": "24.3.0",
"@udecode/plate-common": "24.3.1",
"react-textarea-autosize": "^8.5.2"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"slate": ">=0.94.0",
"slate-history": ">=0.93.0",
"slate-hyperscript": ">=0.66.0",
"slate-react": ">=0.95.0"
},
"keywords": [
Expand Down
1 change: 1 addition & 0 deletions packages/cli/src/utils/get-package-info.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import path from 'path';
import fs from 'fs-extra';
// eslint-disable-next-line import/no-extraneous-dependencies
import { type PackageJson } from 'type-fest';

/**
Expand Down
2 changes: 2 additions & 0 deletions packages/cloud/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @udecode/plate-cloud

## 24.3.1

## 24.3.0

## 24.2.0
Expand Down
5 changes: 3 additions & 2 deletions packages/cloud/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@udecode/plate-cloud",
"version": "24.3.0",
"version": "24.3.1",
"description": "Plate plugin to add cloud based image and attachment uploads",
"license": "MIT",
"homepage": "https://platejs.org",
Expand Down Expand Up @@ -40,7 +40,7 @@
},
"dependencies": {
"@portive/client": "10.0.3",
"@udecode/plate-common": "24.3.0",
"@udecode/plate-common": "24.3.1",
"delay": "5.0.0",
"p-defer": "^3.0.0"
},
Expand All @@ -49,6 +49,7 @@
"react-dom": ">=16.8.0",
"slate": ">=0.94.0",
"slate-history": ">=0.93.0",
"slate-hyperscript": ">=0.66.0",
"slate-react": ">=0.95.0"
},
"keywords": [
Expand Down
2 changes: 2 additions & 0 deletions packages/code-block/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @udecode/plate-code-block

## 24.3.1

## 24.3.0

## 24.2.0
Expand Down
5 changes: 3 additions & 2 deletions packages/code-block/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@udecode/plate-code-block",
"version": "24.3.0",
"version": "24.3.1",
"description": "Code block plugin for Plate",
"license": "MIT",
"homepage": "https://platejs.org",
Expand Down Expand Up @@ -39,14 +39,15 @@
"typecheck": "yarn p:typecheck"
},
"dependencies": {
"@udecode/plate-common": "24.3.0",
"@udecode/plate-common": "24.3.1",
"prismjs": "^1.29.0"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"slate": ">=0.94.0",
"slate-history": ">=0.93.0",
"slate-hyperscript": ">=0.66.0",
"slate-react": ">=0.95.0"
},
"keywords": [
Expand Down
2 changes: 2 additions & 0 deletions packages/combobox/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @udecode/plate-combobox

## 24.3.1

## 24.3.0

## 24.2.0
Expand Down
5 changes: 3 additions & 2 deletions packages/combobox/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@udecode/plate-combobox",
"version": "24.3.0",
"version": "24.3.1",
"description": "Combobox for Plate",
"license": "MIT",
"homepage": "https://platejs.org",
Expand Down Expand Up @@ -39,14 +39,15 @@
"typecheck": "yarn p:typecheck"
},
"dependencies": {
"@udecode/plate-common": "24.3.0",
"@udecode/plate-common": "24.3.1",
"downshift": "^6.1.12"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"slate": ">=0.94.0",
"slate-history": ">=0.93.0",
"slate-hyperscript": ">=0.66.0",
"slate-react": ">=0.95.0"
},
"keywords": [
Expand Down
2 changes: 2 additions & 0 deletions packages/comments/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @udecode/plate-comments

## 24.3.1

## 24.3.0

## 24.2.0
Expand Down
Loading

0 comments on commit 2025322

Please sign in to comment.