@remirror/core-helpers
Advanced tools
Comparing version 1.0.0-next.1 to 1.0.0-next.4
# @remirror/core-helpers | ||
## 1.0.0-next.4 | ||
> 2020-07-16 | ||
### Patch Changes | ||
- 5d5970ae: Update repository and website field to point to HEAD rather than a specific branch. | ||
- Updated dependencies [5d5970ae] | ||
- @remirror/core-constants@1.0.0-next.4 | ||
- @remirror/core-types@1.0.0-next.4 | ||
## 1.0.0-next.1 | ||
@@ -4,0 +15,0 @@ |
@@ -1034,3 +1034,3 @@ 'use strict'; | ||
[coreConstants.ErrorConstant.REACT_PROVIDER_CONTEXT]: '`useRemirror` was called outside of the `remirror` context. It can only be used within an active remirror context created by the `<RemirrorProvider />`.', | ||
[coreConstants.ErrorConstant.REACT_GET_ROOT_PROPS]: '`getRootProps` has been called MULTIPLE times. It should only be called ONCE during render.', | ||
[coreConstants.ErrorConstant.REACT_GET_ROOT_PROPS]: '`getRootProps` has been attached to the DOM more than once. It should only be attached to the dom once per editor.', | ||
[coreConstants.ErrorConstant.REACT_EDITOR_VIEW]: 'A problem occurred adding the editor view to the dom.', | ||
@@ -1058,3 +1058,3 @@ [coreConstants.ErrorConstant.REACT_CONTROLLED]: 'There is a problem with your controlled editor setup.', | ||
var customMessage = extraMessage ? "".concat(extraMessage, "\n\n") : ''; | ||
return "".concat(prefix).concat(customMessage, "For more information visit ").concat(ERROR_INFORMATION_URL, "#").concat(code); | ||
return "".concat(prefix).concat(customMessage, "For more information visit ").concat(ERROR_INFORMATION_URL, "#").concat(code.toLowerCase()); | ||
} | ||
@@ -1061,0 +1061,0 @@ /** |
@@ -432,3 +432,3 @@ "use strict"; | ||
var message = errorMessageMap[code], prefix = message ? "".concat(message, "\n\n") : "", customMessage = extraMessage ? "".concat(extraMessage, "\n\n") : ""; | ||
return "".concat(prefix).concat(customMessage, "For more information visit ").concat(ERROR_INFORMATION_URL, "#").concat(code); | ||
return "".concat(prefix).concat(customMessage, "For more information visit ").concat(ERROR_INFORMATION_URL, "#").concat(code.toLowerCase()); | ||
} | ||
@@ -435,0 +435,0 @@ |
@@ -1029,3 +1029,3 @@ import { BaseError } from 'make-error'; | ||
[ErrorConstant.REACT_PROVIDER_CONTEXT]: '`useRemirror` was called outside of the `remirror` context. It can only be used within an active remirror context created by the `<RemirrorProvider />`.', | ||
[ErrorConstant.REACT_GET_ROOT_PROPS]: '`getRootProps` has been called MULTIPLE times. It should only be called ONCE during render.', | ||
[ErrorConstant.REACT_GET_ROOT_PROPS]: '`getRootProps` has been attached to the DOM more than once. It should only be attached to the dom once per editor.', | ||
[ErrorConstant.REACT_EDITOR_VIEW]: 'A problem occurred adding the editor view to the dom.', | ||
@@ -1053,3 +1053,3 @@ [ErrorConstant.REACT_CONTROLLED]: 'There is a problem with your controlled editor setup.', | ||
var customMessage = extraMessage ? "".concat(extraMessage, "\n\n") : ''; | ||
return "".concat(prefix).concat(customMessage, "For more information visit ").concat(ERROR_INFORMATION_URL, "#").concat(code); | ||
return "".concat(prefix).concat(customMessage, "For more information visit ").concat(ERROR_INFORMATION_URL, "#").concat(code.toLowerCase()); | ||
} | ||
@@ -1056,0 +1056,0 @@ /** |
{ | ||
"name": "@remirror/core-helpers", | ||
"version": "1.0.0-next.1", | ||
"description": "Provide helper functions for the remirror codebase, kinda like a tiny lodash", | ||
"homepage": "https://github.com/remirror/remirror/tree/next/packages/@remirror/core-helpers", | ||
"repository": "https://github.com/remirror/remirror/tree/master/packages/@remirror/core-helpers", | ||
"license": "MIT", | ||
"contributors": [ | ||
"Ifiok Jr. <ifiokotung@gmail.com>" | ||
], | ||
"sideEffects": false, | ||
"main": "dist/core-helpers.cjs.js", | ||
"module": "dist/core-helpers.esm.js", | ||
"types": "dist/core-helpers.cjs.d.ts", | ||
"files": [ | ||
"dist" | ||
], | ||
"dependencies": { | ||
"@babel/runtime": "^7.10.4", | ||
"@remirror/core-constants": "^1.0.0-next.1", | ||
"@remirror/core-types": "^1.0.0-next.1", | ||
"@types/object.omit": "^3.0.0", | ||
"@types/object.pick": "^1.3.0", | ||
"@types/throttle-debounce": "^2.1.0", | ||
"case-anything": "^1.1.1", | ||
"deepmerge": "^4.2.2", | ||
"fast-deep-equal": "^3.1.3", | ||
"make-error": "^1.3.6", | ||
"object.omit": "^3.0.0", | ||
"object.pick": "^1.3.0", | ||
"throttle-debounce": "^2.2.1", | ||
"type-fest": "^0.16.0" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"cjs": "lib/dist/core-helpers.cjs.js" | ||
"name": "@remirror/core-helpers", | ||
"version": "1.0.0-next.4", | ||
"description": "Provide helper functions for the remirror codebase, kinda like a tiny lodash", | ||
"homepage": "https://github.com/remirror/remirror/tree/HEAD/packages/@remirror/core-helpers", | ||
"repository": "https://github.com/remirror/remirror/tree/HEAD/packages/@remirror/core-helpers", | ||
"license": "MIT", | ||
"contributors": [ | ||
"Ifiok Jr. <ifiokotung@gmail.com>" | ||
], | ||
"sideEffects": false, | ||
"main": "dist/core-helpers.cjs.js", | ||
"module": "dist/core-helpers.esm.js", | ||
"types": "dist/core-helpers.cjs.d.ts", | ||
"files": [ | ||
"dist" | ||
], | ||
"dependencies": { | ||
"@babel/runtime": "^7.10.4", | ||
"@remirror/core-constants": "^1.0.0-next.4", | ||
"@remirror/core-types": "^1.0.0-next.4", | ||
"@types/object.omit": "^3.0.0", | ||
"@types/object.pick": "^1.3.0", | ||
"@types/throttle-debounce": "^2.1.0", | ||
"case-anything": "^1.1.1", | ||
"deepmerge": "^4.2.2", | ||
"fast-deep-equal": "^3.1.3", | ||
"make-error": "^1.3.6", | ||
"object.omit": "^3.0.0", | ||
"object.pick": "^1.3.0", | ||
"throttle-debounce": "^2.2.1", | ||
"type-fest": "^0.16.0" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"cjs": "lib/dist/core-helpers.cjs.js" | ||
} |
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
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
Found 1 instance in 1 package
No website
QualityPackage does not have a website.
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
Found 1 instance in 1 package
114915
0
2