@symbo.ls/create 2.10.178 → 2.10.179

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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/syncExtend.js +2 -2
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@symbo.ls/create",
3
- "version": "2.10.178",
3
+ "version": "2.10.179",
4
4
  "license": "MIT",
5
- "gitHead": "84add6c407610efe1ffd4f80adc42debeea3ca61",
5
+ "gitHead": "acba7202adebbd4371ccc43623d5ef3e8b63466b",
6
6
  "source": "index.js",
7
7
  "main": "index.js",
8
8
  "dependencies": {
package/syncExtend.js CHANGED
@@ -9,8 +9,8 @@ export const applySyncDebug = (extend, options) => {
9
9
  if (!editor) return extend
10
10
  const inspect = isUndefined(editor.inspect) ? isDevelopment() : editor.inspect
11
11
  const liveSync = isUndefined(editor.liveSync) ? isDevelopment() : editor.liveSync
12
- if (inspect) extend.push[DevFocus]
13
- if (liveSync) extend.push[Sync]
12
+ if (inspect) extend.push(DevFocus)
13
+ if (liveSync) extend.push(Sync)
14
14
  return extend
15
15
  }
16
16