@tarojs/plugin-http 3.6.22-nightly.7 → 3.6.22-nightly.9

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/LICENSE CHANGED
@@ -165,3 +165,10 @@ MIT (weui):
165
165
  The following files embed [stencil-vue2-output-target](https://github.com/Tencent/weui) MIT:
166
166
  `/packages/taro-components/src/components/*.scss`
167
167
  See `/LICENSE.txt` for details of the license.
168
+
169
+ ==================
170
+
171
+ Apache-2.0 (intersection-observer):
172
+ The following files embed [intersection-observer](https://github.com/GoogleChromeLabs/intersection-observer) Apache-2.0:
173
+ `/packages/taro-api/src/polyfill/intersection-observer.ts`
174
+ See `/LICENSE.txt` for details of the license.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tarojs/plugin-http",
3
- "version": "3.6.22-nightly.7",
3
+ "version": "3.6.22-nightly.9",
4
4
  "description": "Taro 小程序端支持使用 web 请求 的插件",
5
5
  "main": "index.js",
6
6
  "files": [
@@ -23,9 +23,9 @@
23
23
  },
24
24
  "homepage": "https://github.com/NervJS/taro#readme",
25
25
  "dependencies": {
26
- "@tarojs/runtime": "3.6.22-nightly.7",
27
- "@tarojs/service": "3.6.22-nightly.7",
28
- "@tarojs/shared": "3.6.22-nightly.7"
26
+ "@tarojs/runtime": "3.6.22-nightly.9",
27
+ "@tarojs/shared": "3.6.22-nightly.9",
28
+ "@tarojs/service": "3.6.22-nightly.9"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@rollup/plugin-json": "^6.1.0",
@@ -44,6 +44,6 @@
44
44
  "dev": "rollup -c -w --bundleConfigAsCjs",
45
45
  "build": "rollup -c --bundleConfigAsCjs",
46
46
  "test": "jest",
47
- "test:ci": "jest --ci -i --coverage false"
47
+ "test:ci": "jest --ci -i --coverage --silent"
48
48
  }
49
49
  }
@@ -3,7 +3,7 @@ describe('DOM', () => {
3
3
  const runtime = require('../../dist/runtime')
4
4
  const document = runtime.document
5
5
  global.document = runtime.document
6
-
6
+
7
7
  describe('document', () => {
8
8
 
9
9
  it('document setCookie', async () => {
@@ -15,6 +15,5 @@ describe('DOM', () => {
15
15
  'aaa=1111-2222-33-444-abcdefgasd; bbb=23123-aswe-4a7a-a740-f55dfd296b1d; ccc=69asd3d81234668942'
16
16
  )
17
17
  })
18
-
19
18
  })
20
19
  })