@symbo.ls/fetch 2.10.168 → 2.10.172

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.
package/dist/cjs/index.js CHANGED
@@ -69,7 +69,6 @@ const fetchProject = async (key, options) => {
69
69
  delete obj.designsystem;
70
70
  overwriteDeep(obj, options);
71
71
  }
72
- console.log(options);
73
72
  }
74
73
  return options;
75
74
  };
@@ -78,8 +77,6 @@ const fetchStateAsync = async (key, options, callback) => {
78
77
  if (editor && editor.remote) {
79
78
  const data = await fetchRemote(key, editor);
80
79
  const state = editor.serviceRoute === "state" ? data : data.state;
81
- console.log(editor);
82
- console.log(state);
83
80
  if (isObject(state))
84
81
  callback(state);
85
82
  }
package/index.js CHANGED
@@ -49,8 +49,6 @@ export const fetchProject = async (key, options) => {
49
49
  delete obj.designsystem
50
50
  overwriteDeep(obj, options)
51
51
  }
52
-
53
- console.log(options)
54
52
  }
55
53
 
56
54
  return options
@@ -62,8 +60,6 @@ export const fetchStateAsync = async (key, options, callback) => {
62
60
  if (editor && editor.remote) {
63
61
  const data = await fetchRemote(key, editor)
64
62
  const state = editor.serviceRoute === 'state' ? data : data.state
65
- console.log(editor)
66
- console.log(state)
67
63
  if (isObject(state)) callback(state)
68
64
  }
69
65
  }
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@symbo.ls/fetch",
3
- "version": "2.10.168",
3
+ "version": "2.10.172",
4
4
  "license": "MIT",
5
- "gitHead": "c9937422aa846691fa6187c7a3975c313114617a",
5
+ "gitHead": "c5542d156c687366e76194813bf2d5f0227e8396",
6
6
  "type": "module",
7
7
  "module": "index.js",
8
8
  "main": "index.js",