react-ace
Advanced tools
Comparing version 7.0.2 to 7.0.4
@@ -1,1 +0,1 @@ | ||
{"processes":{"22f7a6cd-e499-4114-bc18-f2f662f5bd97":{"parent":null,"children":["6ac0a903-f854-4283-b5aa-dd4fe90bc196"]},"6ac0a903-f854-4283-b5aa-dd4fe90bc196":{"parent":"22f7a6cd-e499-4114-bc18-f2f662f5bd97","children":["eac047bb-2e01-42d6-861f-b63f08de3add"]},"eac047bb-2e01-42d6-861f-b63f08de3add":{"parent":"6ac0a903-f854-4283-b5aa-dd4fe90bc196","children":[]}},"files":{},"externalIds":{}} | ||
{"processes":{"e55f3afa-49f1-46ab-b3b5-8f2ba07f0a2a":{"parent":"f1efcac6-bec8-4069-93b3-02c5d4eae156","children":[]},"f1efcac6-bec8-4069-93b3-02c5d4eae156":{"parent":null,"children":["e55f3afa-49f1-46ab-b3b5-8f2ba07f0a2a"]}},"files":{},"externalIds":{}} |
# Changelog | ||
## 7.0.2 | ||
- Support node 11 in development | ||
- Upgrade dev dependencies | ||
- Add typings for EditorOptions/EditorEvents, remove index signatures #651 | ||
- Fix types #652 | ||
## 7.0.1 | ||
- Fix types #646 | ||
## 7.0.0 | ||
@@ -4,0 +15,0 @@ |
@@ -1,5 +0,6 @@ | ||
import ace from "./ace"; | ||
import diff from "./diff"; | ||
import split from "./split"; | ||
export { split, diff }; | ||
import ace, { IAceEditorProps } from "./ace"; | ||
import diff, { IDiffEditorProps, IDiffEditorState } from "./diff"; | ||
import split, { ISplitEditorProps } from "./split"; | ||
import { IAceOptions, ICommand, ICommandBindKey, ICommandManager, IEditorProps, IMarker } from "./types"; | ||
export { split, diff, IAceOptions, IAceEditorProps, ICommand, ICommandBindKey, ICommandManager, IDiffEditorProps, IDiffEditorState, IEditorProps, IMarker, ISplitEditorProps }; | ||
export default ace; |
{ | ||
"name": "react-ace", | ||
"version": "7.0.2", | ||
"version": "7.0.4", | ||
"description": "A react component for Ace Editor", | ||
@@ -22,3 +22,3 @@ "main": "lib/index.js", | ||
"prepublishOnly": "npm run clean && npm run build", | ||
"test": "mocha --require ts-node/register --require @babel/register --require @babel/polyfill --require tests/setup.js tests/src/*.spec.js --exit", | ||
"test": "mocha --require ts-node/register --require @babel/register --require tests/setup.js tests/src/*.spec.js --exit", | ||
"coverage": "nyc npm run test" | ||
@@ -39,3 +39,3 @@ }, | ||
"@types/mocha": "^5.2.6", | ||
"@types/node": "^12.0.2", | ||
"@types/node": "^12.7.2", | ||
"@types/prop-types": "^15.7.1", | ||
@@ -51,9 +51,9 @@ "@types/react": "^16.8.18", | ||
"enzyme-adapter-react-16": "^1.13.1", | ||
"eslint": "5.16.0", | ||
"eslint": "6.3.0", | ||
"eslint-plugin-import": "^2.17.3", | ||
"eslint-plugin-jsx-a11y": "^6.2.1", | ||
"eslint-plugin-react": "^7.13.0", | ||
"husky": "^2.3.0", | ||
"husky": "^3.0.0", | ||
"jsdom": "^15.1.0", | ||
"mocha": "6.1.4", | ||
"mocha": "6.2.0", | ||
"nyc": "14.1.1", | ||
@@ -65,4 +65,4 @@ "prettier": "^1.17.1", | ||
"react-test-renderer": "^16.8.6", | ||
"rimraf": "2.6.3", | ||
"sinon": "7.3.2", | ||
"rimraf": "3.0.0", | ||
"sinon": "7.4.1", | ||
"ts-loader": "^6.0.1", | ||
@@ -73,5 +73,5 @@ "ts-node": "^8.2.0", | ||
"typescript": "^3.4.5", | ||
"webpack": "4.33.0", | ||
"webpack-cli": "3.3.3", | ||
"webpack-dev-server": "3.7.1" | ||
"webpack": "4.39.3", | ||
"webpack-cli": "3.3.7", | ||
"webpack-dev-server": "3.8.0" | ||
}, | ||
@@ -86,3 +86,2 @@ "keywords": [ | ||
"dependencies": { | ||
"@babel/polyfill": "^7.4.4", | ||
"brace": "^0.11.1", | ||
@@ -89,0 +88,0 @@ "diff-match-patch": "^1.0.4", |
@@ -1,5 +0,26 @@ | ||
import ace from "./ace"; | ||
import diff from "./diff"; | ||
import split from "./split"; | ||
export { split, diff }; | ||
import ace, { IAceEditorProps } from "./ace"; | ||
import diff, { IDiffEditorProps, IDiffEditorState } from "./diff"; | ||
import split, { ISplitEditorProps } from "./split"; | ||
import { | ||
IAceOptions, | ||
ICommand, | ||
ICommandBindKey, | ||
ICommandManager, | ||
IEditorProps, | ||
IMarker | ||
} from "./types"; | ||
export { | ||
split, | ||
diff, | ||
IAceOptions, | ||
IAceEditorProps, | ||
ICommand, | ||
ICommandBindKey, | ||
ICommandManager, | ||
IDiffEditorProps, | ||
IDiffEditorState, | ||
IEditorProps, | ||
IMarker, | ||
ISplitEditorProps | ||
}; | ||
export default ace; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
7
10411
1838816
78
- Removed@babel/polyfill@^7.4.4
- Removed@babel/polyfill@7.12.1(transitive)
- Removedcore-js@2.6.12(transitive)
- Removedregenerator-runtime@0.13.11(transitive)