@symbo.ls/fetch 2.11.39 → 2.11.40

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
@@ -86,10 +86,7 @@ const fetchProjectAsync = async (key, options, callback) => {
86
86
  const { editor } = options;
87
87
  if (editor && editor.remote) {
88
88
  const data = await fetchRemote(key, editor);
89
- console.log(IS_DEVELOPMENT, data);
90
- console.log(options);
91
89
  const evalData = IS_DEVELOPMENT ? deepDestringify(data) : deepDestringify(data.releases[0]);
92
- console.log(evalData);
93
90
  callback(evalData);
94
91
  }
95
92
  };
package/index.js CHANGED
@@ -80,12 +80,9 @@ export const fetchProjectAsync = async (key, options, callback) => {
80
80
 
81
81
  if (editor && editor.remote) {
82
82
  const data = await fetchRemote(key, editor)
83
- console.log(IS_DEVELOPMENT, data)
84
- console.log(options)
85
83
  const evalData = IS_DEVELOPMENT
86
84
  ? deepDestringify(data)
87
85
  : deepDestringify(data.releases[0])
88
- console.log(evalData)
89
86
  callback(evalData)
90
87
  }
91
88
  }
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@symbo.ls/fetch",
3
- "version": "2.11.39",
3
+ "version": "2.11.40",
4
4
  "license": "MIT",
5
- "gitHead": "2f40754c45ab3e9132e5335d3f01fcf7d2ac977b",
5
+ "gitHead": "4c1fd78afbf237ab4af743569849a896aba7eb82",
6
6
  "type": "module",
7
7
  "module": "index.js",
8
8
  "main": "index.js",