@tarojs/service 3.4.0-beta.0 → 3.5.0-canary.0

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/Kernel.js CHANGED
@@ -58,7 +58,7 @@ class Kernel extends events_1.EventEmitter {
58
58
  Object.assign(this.paths, {
59
59
  configPath: this.config.configPath,
60
60
  sourcePath: path.join(this.appPath, this.initialConfig.sourceRoot),
61
- outputPath: path.join(this.appPath, this.initialConfig.outputRoot)
61
+ outputPath: path.resolve(this.appPath, this.initialConfig.outputRoot)
62
62
  });
63
63
  }
64
64
  this.debugger(`initPaths:${JSON.stringify(this.paths, null, 2)}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tarojs/service",
3
- "version": "3.4.0-beta.0",
3
+ "version": "3.5.0-canary.0",
4
4
  "description": "Taro Service",
5
5
  "main": "index.js",
6
6
  "types": "types/index.d.ts",
@@ -34,13 +34,13 @@
34
34
  "homepage": "https://github.com/NervJS/taro#readme",
35
35
  "dependencies": {
36
36
  "@hapi/joi": "17.1.1",
37
- "@tarojs/helper": "3.4.0-beta.0",
38
- "@tarojs/shared": "3.4.0-beta.0",
39
- "@tarojs/taro": "3.4.0-beta.0",
37
+ "@tarojs/helper": "3.5.0-canary.0",
38
+ "@tarojs/shared": "3.5.0-canary.0",
39
+ "@tarojs/taro": "3.5.0-canary.0",
40
40
  "fs-extra": "^8.0.1",
41
41
  "lodash": "^4.17.21",
42
42
  "resolve": "^1.6.0",
43
43
  "tapable": "^1.1.3"
44
44
  },
45
- "gitHead": "107670bc2360ee9136a0e558e6d5fad1db640fba"
45
+ "gitHead": "a0222bc41bc05b0e34413d6db3de963d777a5015"
46
46
  }
package/src/Kernel.ts CHANGED
@@ -94,7 +94,7 @@ export default class Kernel extends EventEmitter {
94
94
  Object.assign(this.paths, {
95
95
  configPath: this.config.configPath,
96
96
  sourcePath: path.join(this.appPath, this.initialConfig.sourceRoot as string),
97
- outputPath: path.join(this.appPath, this.initialConfig.outputRoot as string)
97
+ outputPath: path.resolve(this.appPath, this.initialConfig.outputRoot as string)
98
98
  })
99
99
  }
100
100
  this.debugger(`initPaths:${JSON.stringify(this.paths, null, 2)}`)