Skip to content
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

automated: Add CODEOWNERS file for team @deseretdigital/xp-content-team #347

Open
wants to merge 21 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
.idea
.vscode
node_modules
dist
9 changes: 9 additions & 0 deletions CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# FILE GENERATRED BY gendoc-update-codeowners-and-properties

# This file is used to define code owners for the repository.
# The format is:
# <scope> <team>
# where scope is the directory or file to which the team is assigned.
# For example:
# * @team
* @deseretdigital/xp-content-team
1 change: 1 addition & 0 deletions dist/index.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/index.js.map

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion index.ts
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
export {default} from './src/MUIRichTextEditor'
export {default as Link} from "./src/components/Link"
export {default, findLinkEntities, findDecoWithRegex} from "./src/MUIRichTextEditor"
2,446 changes: 1,213 additions & 1,233 deletions package-lock.json

Large diffs are not rendered by default.

50 changes: 25 additions & 25 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mui-rte",
"version": "1.14.0",
"version": "1.18.5",
"description": "Material-UI Rich Text Editor and Viewer",
"keywords": [
"material-ui",
Expand Down Expand Up @@ -28,37 +28,37 @@
"author": "Erik Lopez",
"license": "MIT",
"devDependencies": {
"@material-ui/core": "^4.5.0",
"@material-ui/icons": "^4.4.3",
"@types/chai": "^4.2.3",
"@types/enzyme": "^3.10.3",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@material-ui/core": "^4.9.7",
"@material-ui/icons": "^4.9.1",
"@types/chai": "^4.2.11",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/mocha": "^5.2.7",
"@types/react": "^16.9.5",
"@types/react-dom": "^16.9.1",
"@types/sinon": "^7.5.0",
"@types/react": "^16.9.25",
"@types/react-dom": "^16.9.5",
"@types/sinon": "^7.5.2",
"awesome-typescript-loader": "^5.2.1",
"chai": "^4.2.0",
"cross-env": "^6.0.3",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^6.5.1",
"jsdom": "^15.1.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"jsdom": "^15.2.1",
"jsdom-global": "^3.0.2",
"mocha": "^6.2.1",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"rollup": "^1.23.1",
"mocha": "^6.2.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rollup": "^1.32.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-uglify": "^6.0.4",
"sinon": "^7.5.0",
"source-map-loader": "^0.2.4",
"ts-node": "^8.4.1",
"typescript": "^3.6.3",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.2"
"ts-node": "^8.8.1",
"typescript": "^3.8.3",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"peerDependencies": {
"@material-ui/core": ">=4.1.0 <5",
Expand All @@ -67,10 +67,10 @@
"react-dom": "^16.8.6"
},
"dependencies": {
"@types/classnames": "^2.2.9",
"@types/draft-js": "^0.10.36",
"@types/classnames": "^2.2.10",
"@types/draft-js": "^0.10.38",
"classnames": "^2.2.6",
"draft-js": "^0.11.1",
"draft-js": "^0.11.4",
"immutable": "^3.8.2"
},
"files": [
Expand Down
Loading