Skip to content

Commit

Permalink
fix(taro-weapp): 文件引用错误
Browse files Browse the repository at this point in the history
  • Loading branch information
luckyadam committed May 3, 2018
1 parent 38f695d commit e87ed92
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion packages/taro-weapp/src/create-page.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { internal_safe_get as safeGet } from '@tarojs/taro/index.esm.js'

import { isEmptyObject, getPrototypeChain } from './util'
import { get as safeGet } from './internal/safe-get'

const eventPreffix = '__event_'
const rootScopeKey = '__root_'
Expand Down
3 changes: 2 additions & 1 deletion packages/taro-weapp/src/index.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
/* eslint-disable camelcase */
import { getEnv, ENV_TYPE, internal_safe_get, internal_dynamic_recursive } from '@tarojs/taro/index.esm.js'

import Component from './component'
import createApp from './create-app'
import createPage from './create-page'
import initNativeApi from './native-api'
import { getEnv, ENV_TYPE, get as internal_safe_get, dynamicRecursive as internal_dynamic_recursive } from '@tarojs/taro'

export {
Component,
Expand Down

0 comments on commit e87ed92

Please sign in to comment.