@tarojs/service 3.5.0-beta.0 → 3.5.0-beta.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tarojs/service",
3
- "version": "3.5.0-beta.0",
3
+ "version": "3.5.0-beta.3",
4
4
  "description": "Taro Service",
5
5
  "main": "index.js",
6
6
  "types": "types/index.d.ts",
@@ -33,9 +33,9 @@
33
33
  },
34
34
  "homepage": "https://github.com/NervJS/taro#readme",
35
35
  "dependencies": {
36
- "@tarojs/helper": "3.5.0-beta.0",
37
- "@tarojs/shared": "3.5.0-beta.0",
38
- "@tarojs/taro": "3.5.0-beta.0",
36
+ "@tarojs/helper": "3.5.0-beta.3",
37
+ "@tarojs/shared": "3.5.0-beta.3",
38
+ "@tarojs/taro": "3.5.0-beta.3",
39
39
  "fs-extra": "^8.1.0",
40
40
  "joi": "^17.6.0",
41
41
  "lodash": "^4.17.21",
@@ -43,5 +43,5 @@
43
43
  "tapable": "^1.1.3",
44
44
  "webpack-merge": "^4.2.2"
45
45
  },
46
- "gitHead": "ee17506905a260bacd1aa6217a2376ba7bb8200f"
46
+ "gitHead": "bd1aa21707e51500eac9b16526e4ba4171fa8e5f"
47
47
  }
package/src/Config.ts CHANGED
@@ -17,7 +17,7 @@ import {
17
17
  } from './utils/constants'
18
18
 
19
19
  interface IConfigOptions {
20
- appPath: string,
20
+ appPath: string
21
21
  }
22
22
 
23
23
  export default class Config {
@@ -46,10 +46,10 @@ export interface IHook {
46
46
  }
47
47
 
48
48
  export interface ICommand extends IHook {
49
- alias?: string,
49
+ alias?: string
50
50
  optionsMap?: {
51
51
  [key: string]: string
52
- },
52
+ }
53
53
  synopsisList?: string[]
54
54
  }
55
55