@dolphinweex/weex-harmony-transform 0.1.4 → 0.1.5

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/package.json +1 -1
  2. package/src/adapter.ts +3 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dolphinweex/weex-harmony-transform",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "weex harmony adapter",
5
5
  "main": "index.js",
6
6
  "files": [
package/src/adapter.ts CHANGED
@@ -192,6 +192,9 @@ let bridgeModule = {
192
192
  getWeexPath:function(callback){
193
193
  weexModule.callNative('bridgeModule.getWeexPath',{ 'options': {} }, callback)
194
194
  },
195
+ getWeexFunctionPath:function(options, callback){
196
+ weexModule.callNative('bridgeModule.getWeexFunctionPath', { 'options': options }, callback)
197
+ },
195
198
  reload:function(options, callback){
196
199
  weexModule.callNative('bridgeModule.reload',{ 'options': options }, callback)
197
200
  },