1.0.0 • Published 1 year ago

miniprogram-check-update v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

miniprogram-check-update

Installation

yarn add miniprogram-check-update

Usage

Auto mode (recommended)

import 'miniprogram-check-update/auto'

Manually call the update

import checkUpdate from 'miniprogram-check-update'

checkUpdate()

checkUpdate(options?)

Options

runtime

Object with getUpdateManager() method, wx, tt, Taro, uni, etc

checkUpdate({runtime: wx})

onCheckForUpdate

Callback function when new version found.

onUpdateFailed

Callback function when install failed.

onUpdateReady(install)

Callback function when new version is ready to install.

checkUpdate({
  async onUpdateReady(install) {
    const confirmed = await confirm('新版本已经准备好,是否重启应用?')

    if (confirmed) {
      console.log('Start install.')
      install()
    } else {
      console.log('Rejected to install.')
    }
  },
})
1.0.0

1 year ago

0.0.1

1 year ago