-
Notifications
You must be signed in to change notification settings - Fork 4.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Packages: Extract the editor package #8081
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# **core/edit-post**: The Editor's UI Data | ||
# **core/edit-post**: The Editor’s UI Data | ||
|
||
## Selectors | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# **core/editor**: The Editor's Data | ||
# **core/editor**: The Editor’s Data | ||
|
||
## Selectors | ||
|
||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,8 +22,7 @@ | |
"dependencies": { | ||
"@babel/runtime": "^7.0.0-beta.52", | ||
"element-closest": "^2.0.2", | ||
"lodash": "^4.17.10", | ||
"tinymce": "^4.7.2" | ||
"lodash": "^4.17.10" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nice, to see |
||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
package-lock=false |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
{ | ||
"name": "@wordpress/editor", | ||
"version": "1.0.0-alpha.1", | ||
"description": "Building blocks for WordPress editors.", | ||
"author": "The WordPress Contributors", | ||
"license": "GPL-2.0-or-later", | ||
"keywords": [ | ||
"wordpress", | ||
"editor" | ||
], | ||
"homepage": "https://github.com/WordPress/gutenberg/tree/master/packages/editor/README.md", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/WordPress/gutenberg.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/WordPress/gutenberg/issues" | ||
}, | ||
"main": "build/index.js", | ||
"module": "build-module/index.js", | ||
"react-native": "src/index", | ||
"dependencies": { | ||
"@babel/runtime": "^7.0.0-beta.52", | ||
"@wordpress/a11y": "file:../a11y", | ||
"@wordpress/api-fetch": "file:../api-fetch", | ||
"@wordpress/blob": "file:../blob", | ||
"@wordpress/blocks": "file:../blocks", | ||
"@wordpress/components": "file:../components", | ||
"@wordpress/compose": "file:../compose", | ||
"@wordpress/core-data": "file:../core-data", | ||
"@wordpress/data": "file:../data", | ||
"@wordpress/date": "file:../date", | ||
"@wordpress/deprecated": "file:../deprecated", | ||
"@wordpress/dom": "file:../dom", | ||
"@wordpress/element": "file:../element", | ||
"@wordpress/hooks": "file:../hooks", | ||
"@wordpress/html-entities": "file:../html-entities", | ||
"@wordpress/i18n": "file:../i18n", | ||
"@wordpress/is-shallow-equal": "file:../is-shallow-equal", | ||
"@wordpress/keycodes": "file:../keycodes", | ||
"@wordpress/nux": "file:../nux", | ||
"@wordpress/url": "file:../url", | ||
"@wordpress/viewport": "file:../viewport", | ||
"@wordpress/wordcount": "file:../wordcount", | ||
"classnames": "^2.2.5", | ||
"dom-react": "^2.2.1", | ||
"dom-scroll-into-view": "^1.2.1", | ||
"element-closest": "^2.0.2", | ||
"lodash": "^4.17.10", | ||
"memize": "^1.0.5", | ||
"querystring": "^0.2.0", | ||
"querystringify": "^1.0.0", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We use multiple There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. And Gutenberg itself also requires |
||
"react-autosize-textarea": "^3.0.2", | ||
"redux-multi": "^0.1.12", | ||
"redux-optimist": "^1.0.0", | ||
"refx": "^3.0.0", | ||
"rememo": "^3.0.0", | ||
"tinycolor2": "^1.4.1", | ||
"tinymce": "^4.7.2", | ||
"uuid": "^3.1.0" | ||
}, | ||
"devDependencies": { | ||
"deep-freeze": "^0.0.1", | ||
"enzyme": "^3.3.0", | ||
"react-dom": "^16.4.1", | ||
"react-test-renderer": "^16.4.1" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When checking listed deps I discovered it is no longer used in
blocks
🤷♂️