markupeditor 0.9.1 → 0.9.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -242,7 +242,7 @@ const _registry = new Registry();
242
242
  *
243
243
  * @returns {object | null} Object containing {"toolbar": ToolbarConfig, "keymap": KeymapConfig, "behavior": BehaviorConfig}.
244
244
  */
245
- function activeConfig() {_registry.activeConfig.bind(_registry)();}
245
+ function activeConfig() {return _registry.activeConfig.bind(_registry)()}
246
246
 
247
247
  /**
248
248
  * Return the active editor's `view`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "markupeditor",
3
- "version": "0.9.1",
3
+ "version": "0.9.2",
4
4
  "description": "A web component and API for WYSIWYG HTML editing.",
5
5
  "keywords": [
6
6
  "wysiwyg",
@@ -64,7 +64,7 @@
64
64
  "docs": "node ./docs/index.js",
65
65
  "predocs": "sh predocs.sh && jsdoc -c jsdoc.json",
66
66
  "analyze": "cem analyze --config custom-elements-manifest.config.js",
67
- "publish": "npm run build && npm run predocs && npm run analyze && npm publish --access public"
67
+ "publish": "npm run build && npm run docs && npm run analyze && npm publish --access public"
68
68
  },
69
69
  "customElements": "dist/custom-elements.json"
70
70
  }