@symbo.ls/create 2.10.168 → 2.10.169

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/router.js +0 -2
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@symbo.ls/create",
3
- "version": "2.10.168",
3
+ "version": "2.10.169",
4
4
  "license": "MIT",
5
- "gitHead": "c9937422aa846691fa6187c7a3975c313114617a",
5
+ "gitHead": "f22d3cd31dd7c4521890a8ca730f8a3bee42bfc0",
6
6
  "source": "index.js",
7
7
  "main": "index.js",
8
8
  "dependencies": {
package/router.js CHANGED
@@ -13,8 +13,6 @@ export const initRouter = (root, options = DEFAULT_ROUTING_OPTIONS) => {
13
13
  if (options === false) return
14
14
  if (options === true) options = DEFAULT_ROUTING_OPTIONS
15
15
 
16
- console.log(options)
17
-
18
16
  const onRender = (el, s) => {
19
17
  if (el.routes) router(el, window.location.pathname, {})
20
18
  }