@symbo.ls/fetch 2.6.0 → 2.6.1

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/index.js +0 -5
  2. package/package.json +2 -2
package/index.js CHANGED
@@ -11,12 +11,10 @@ export const fetchIcon = async (el, s, { icon }) => {
11
11
  $id: icon,
12
12
  $all: true
13
13
  }, async (data) => {
14
- console.log(data)
15
14
  await client.set({
16
15
  $id: s.projectId,
17
16
  icon
18
17
  }, d => console.log('d', d))
19
- console.log('data', data)
20
18
  s.update({ icon: data })
21
19
  })
22
20
  }
@@ -31,8 +29,6 @@ export const fetchProject = (el, s, { userName, projectId, ...options }) => {
31
29
  const { SYSTEM, STATE } = TMP_DATA[key]
32
30
  deepMerge(s.SYSTEM, system || SYSTEM || CONFIG_DEFAULT)
33
31
  deepMerge(s.STATE, state || STATE || {})
34
- console.log(data)
35
- console.log(s.SYSTEM, s.STATE)
36
32
 
37
33
  s.update({
38
34
  appKey: key,
@@ -41,7 +37,6 @@ export const fetchProject = (el, s, { userName, projectId, ...options }) => {
41
37
  projectId
42
38
  }, options)
43
39
 
44
- console.log(icon)
45
40
  await fetchIcon(el, s, { icon })
46
41
  })
47
42
  }
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@symbo.ls/fetch",
3
- "version": "2.6.0",
3
+ "version": "2.6.1",
4
4
  "main": "index.js",
5
5
  "dependencies": {
6
6
  "@symbo.ls/based": "latest",
7
7
  "@symbo.ls/config-default": "latest",
8
8
  "@symbo.ls/temp-db": "latest"
9
9
  },
10
- "gitHead": "41981d1b4f550992e08104002a6ca83398c03084"
10
+ "gitHead": "1e2a78210100223b80558d76fd6db7d9fc022a1b"
11
11
  }