mirror of
https://github.com/analyticsjs/vue-baidu-analytics.git
synced 2025-04-04 23:42:46 +08:00
commit
67ad83991b
2
.eslintignore
Normal file
2
.eslintignore
Normal file
@ -0,0 +1,2 @@
|
||||
dist/*
|
||||
demo/*
|
18
.eslintrc.js
Normal file
18
.eslintrc.js
Normal file
@ -0,0 +1,18 @@
|
||||
module.exports = {
|
||||
root: true,
|
||||
env: {
|
||||
node: true,
|
||||
browser: true,
|
||||
},
|
||||
extends: ['eslint:recommended', 'prettier'],
|
||||
parser: '@typescript-eslint/parser',
|
||||
parserOptions: {
|
||||
ecmaVersion: 2020,
|
||||
},
|
||||
plugins: ['@typescript-eslint', 'prettier'],
|
||||
rules: {
|
||||
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
||||
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
||||
'prettier/prettier': 'warn',
|
||||
},
|
||||
}
|
14
.eslintrc.ts
14
.eslintrc.ts
@ -1,14 +0,0 @@
|
||||
module.exports = {
|
||||
root: true,
|
||||
env: {
|
||||
browser: true
|
||||
},
|
||||
parser: '@typescript-eslint/parser',
|
||||
parserOptions: {
|
||||
ecmaVersion: 2020
|
||||
},
|
||||
plugins: [
|
||||
'@typescript-eslint'
|
||||
],
|
||||
rules: {}
|
||||
};
|
4
.prettierrc
Normal file
4
.prettierrc
Normal file
@ -0,0 +1,4 @@
|
||||
{
|
||||
"semi": false,
|
||||
"singleQuote": true
|
||||
}
|
315
README.en.md
Normal file
315
README.en.md
Normal file
@ -0,0 +1,315 @@
|
||||
<p align='center'>
|
||||
<img src="https://cdn.jsdelivr.net/gh/chengpeiquan/assets-storage/img/2021/04/20210404235335.png" alt="vue-baidu-analytics" />
|
||||
</p>
|
||||
|
||||
<p align='center'>
|
||||
<a href='https://www.npmjs.com/package/vue-baidu-analytics'>
|
||||
<img src="https://img.shields.io/npm/v/vue-baidu-analytics?color=41b883&label=npm" />
|
||||
</a>
|
||||
</p>
|
||||
<br>
|
||||
<br>
|
||||
|
||||
[简体中文](https://github.com/analyticsjs/vue-baidu-analytics/blob/master/README.md) | English
|
||||
|
||||
Only 3 kB, this plugin base on the Baidu analytics, it can help you quickly to collect the page views on your website, including single page web application.
|
||||
|
||||
>Since the version v2.0.0, it supports the Vue 3.0, and is compatible with the Vue 2.0, you can see the live demo to learn more.<br>If you haven’t started using Vue 3.0, welcome to read the tutorial [learning Vue3](https://vue3.chengpeiquan.com/) .
|
||||
|
||||
## Features
|
||||
|
||||
* Asynchronously load the Baidu analytics scripts, no need to modify the entry HTML.
|
||||
|
||||
* Support the deployment of multiple site IDs and corresponding data reporting.
|
||||
|
||||
* Supports automatic reporting of PV data generated by route switching (This feature need [Vue Router](https://router.vuejs.org/), It can support hash mode and history mode).
|
||||
|
||||
* Support manual submission of page views reports.
|
||||
|
||||
* Support manual submission of event reports.
|
||||
|
||||
* Since the version v2.0.0, the plugin can automatically recognize the Vue version at Vue 2.0 or Vue 3.0 .
|
||||
|
||||
* Since the version v2.1.0, Hooks API is provided (So the usage of CDN installation is slightly adjusted)
|
||||
|
||||
## Project
|
||||
|
||||
As long as Vue and Vue Router are introduced, the projects can be used normally, no matter what method is used to develop your project, e.g. :
|
||||
|
||||
* Vue-CLI scaffolding project
|
||||
|
||||
* Vite project
|
||||
|
||||
* Introduce the HTML page of Vue related CDN
|
||||
|
||||
* VuePress project
|
||||
|
||||
It is not limited to SPA single page projects, it can also be used in SSG / SSR projects.
|
||||
|
||||
## Preview
|
||||
|
||||
Both live demos have enabled debug mode, and you can open the console to view the report.
|
||||
|
||||
Vue 2.0 :[vue-baidu-analytics demo for Vue 2.x](https://analyticsjs.github.io/vue-baidu-analytics/demo/vue2.html "vue-baidu-analytics demo for Vue 2.x")
|
||||
|
||||
Vue 3.0 :[vue-baidu-analytics demo for Vue 3.x](https://analyticsjs.github.io/vue-baidu-analytics/demo/vue3.html "vue-baidu-analytics demo for Vue 3.x")
|
||||
|
||||
## Options
|
||||
|
||||
Option|Required|Type|Description
|
||||
:-:|:-:|:-:|-
|
||||
router|false|object|Vue Router(It is optional since v2.2.0.)
|
||||
siteIdList|true|string[]|The site ids for Baidu analytics, if only one site needs to be reported, just keep one item in the array.
|
||||
isDebug|false|boolean|if `true`, it will open the debug mode,you can see the log in the console.
|
||||
|
||||
Tips: Please remember to turn off the debug mode before publish.
|
||||
|
||||
## Install
|
||||
|
||||
You can install the plugin from NPM.
|
||||
|
||||
```bash
|
||||
npm install vue-baidu-analytics --save-dev
|
||||
```
|
||||
|
||||
Can also use the CDN URL in your HTML.
|
||||
|
||||
```html
|
||||
<script src="https://cdn.jsdelivr.net/npm/vue-baidu-analytics/dist/vue-baidu-analytics.min.js"></script>
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
If use NPM, you must import the plugin in `main.js` .
|
||||
|
||||
```js
|
||||
import baiduAnalytics from 'vue-baidu-analytics'
|
||||
```
|
||||
|
||||
Then, refer to the sample code in Vue 2.0 and Vue 3.0 below to use it.
|
||||
|
||||
When the route is switched, the new URL address will be reported to Baidu analytics after the visit.
|
||||
|
||||
### Use in the Vue 2.0
|
||||
|
||||
See:[main.js - Vue 2.0 demo](https://analyticsjs.github.io/vue-baidu-analytics/demo/js/main-for-vue2.js)
|
||||
|
||||
>Since the version v2.1.0, if you use CDN in your HTML, must be use `baiduAnalytics.default` to use the plugin.
|
||||
|
||||
```js
|
||||
Vue.use(baiduAnalytics, {
|
||||
router: router,
|
||||
siteIdList: [
|
||||
'aaaaaaaaaaaaaaaaaaa',
|
||||
'bbbbbbbbbbbbbbbbbbb'
|
||||
],
|
||||
isDebug: false
|
||||
});
|
||||
```
|
||||
|
||||
### Use in the Vue 3.0
|
||||
|
||||
See:[main.js - Vue 3.0 demo](https://analyticsjs.github.io/vue-baidu-analytics/demo/js/main-for-vue3.js)
|
||||
|
||||
>Since the version v2.1.0, if you use CDN in your HTML, must be use `baiduAnalytics.default` to use the plugin.
|
||||
|
||||
```js
|
||||
createApp(app)
|
||||
.use(router)
|
||||
.use(baiduAnalytics, {
|
||||
router: router,
|
||||
siteIdList: [
|
||||
'aaaaaaaaaaaaaaaaaaa',
|
||||
'bbbbbbbbbbbbbbbbbbb'
|
||||
],
|
||||
isDebug: false
|
||||
})
|
||||
.mount('#app');
|
||||
```
|
||||
|
||||
### Use in the VuePress
|
||||
|
||||
The plugin can also be used in [VuePress](https://vuepress.vuejs.org/zh/) project.
|
||||
|
||||
In the `/docs/.vuepress` folder under the project, create a file named `enhanceApp.js`, and write the following code in this file.
|
||||
|
||||
You can see [App Level Enhancements - VuePress](https://vuepress.vuejs.org/guide/basic-config.html#app-level-enhancements) to learn more.
|
||||
|
||||
```js
|
||||
import baiduAnalytics from 'vue-baidu-analytics'
|
||||
|
||||
export default ({ Vue, router }) => {
|
||||
Vue.use(baiduAnalytics, {
|
||||
router: router,
|
||||
siteIdList: [
|
||||
'aaaaaaaaaaaaaaaaaaa',
|
||||
'bbbbbbbbbbbbbbbbbbb',
|
||||
'ccccccccccccccccccc'
|
||||
],
|
||||
isDebug: false
|
||||
});
|
||||
};
|
||||
```
|
||||
|
||||
You can turn on the debug mode in the development environment to learn about related reports (remember to turn off debug before going online).
|
||||
|
||||
## API
|
||||
|
||||
Since the version v2.1.0, you can use the Global API `$pushBAIDU` and the Hooks API `usePush` in your project, they both support the Vue 2.0 and 3.0.
|
||||
|
||||
>The APIs can't be used directly, it needs to cooperate with the [Methods](#Methods) to operate the specific functions.
|
||||
|
||||
### The Global API
|
||||
|
||||
In the Vue 2.0:
|
||||
|
||||
```js
|
||||
// xxx.vue in Vue 2.0
|
||||
export default {
|
||||
// ...
|
||||
mounted () {
|
||||
this.$pushBAIDU.pv('/example-url/');
|
||||
},
|
||||
// ...
|
||||
}
|
||||
```
|
||||
|
||||
In the Vue 3.0, you can use the Global Properties:
|
||||
|
||||
```js
|
||||
// xxx.vue in Vue 3.0
|
||||
import { getCurrentInstance } from 'vue'
|
||||
|
||||
export default {
|
||||
setup () {
|
||||
const app = getCurrentInstance();
|
||||
app.appContext.config.globalProperties.$pushBAIDU.pv('/example-url/');
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
You can also import the proxy component in the current instance to operate:
|
||||
|
||||
```js
|
||||
// xxx.vue in Vue 3.0
|
||||
import { getCurrentInstance } from 'vue'
|
||||
|
||||
export default {
|
||||
setup () {
|
||||
const { proxy } = getCurrentInstance();
|
||||
proxy.$pushBAIDU.pv('/example-url/');
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### The Hooks API
|
||||
|
||||
In the Vue 2.0:
|
||||
|
||||
```js
|
||||
// xxx.vue in Vue 2.0
|
||||
import { usePush } from 'vue-baidu-analytics'
|
||||
|
||||
export default {
|
||||
// ...
|
||||
data () {
|
||||
return {
|
||||
baidu: usePush()
|
||||
}
|
||||
},
|
||||
mounted () {
|
||||
this.baidu.pv('/example-url/');
|
||||
},
|
||||
// ...
|
||||
}
|
||||
```
|
||||
|
||||
In the Vue 3.0, just use it as if you were using the route `const router = useRouter();`.
|
||||
|
||||
```js
|
||||
// xxx.vue in Vue 3.0
|
||||
import { usePush } from 'vue-baidu-analytics'
|
||||
|
||||
export default {
|
||||
setup () {
|
||||
const baidu = usePush();
|
||||
baidu.pv('/example-url/');
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
If the name of the hook API has already been declared, you can rename it when import.
|
||||
|
||||
```js
|
||||
import { usePush as useBaidu } from 'vue-baidu-analytics'
|
||||
const baidu = useBaidu();
|
||||
```
|
||||
|
||||
## Methods
|
||||
|
||||
All methods are needs to be triggered through the API, and the methods supported by the Global API and the Hooks API are exactly the same.
|
||||
|
||||
Method|Description
|
||||
:--|:--
|
||||
Manually report the page views|[Click here to see.](#manually-report-the-page-views)
|
||||
Manually report the event analysis|[Click here to see.](#manually-report-the-event-analysis)
|
||||
|
||||
>Since there are still many users of Vue 2.0, the following examples only use the operation method of Vue 2.0 to demonstrate. Vue 3.0 can call specific methods according to the description of the Hooks API.
|
||||
|
||||
Tips: If multiple site IDs are configured, the data will be reported to all sites at the same time.
|
||||
|
||||
### Manually report the page views
|
||||
|
||||
If you switch content rendering on some pages through Tab, but you need to report access data, you can use this method to manually report.
|
||||
|
||||
Method|Description
|
||||
:-:|-
|
||||
pv|Manually perform PV data reporting.
|
||||
|
||||
**Params**
|
||||
|
||||
Param|Required|Type|Description
|
||||
:-:|:-:|:-:|-
|
||||
pageUrl|false|string|The URL submitted for the report must be a relative path starting with `/`, if not filled, it will be submitted as the domain name root directory by default.
|
||||
|
||||
**Example**
|
||||
|
||||
```js
|
||||
this.$pushBAIDU.pv('/example-url/');
|
||||
```
|
||||
|
||||
### Manually report the event analysis
|
||||
|
||||
For example, there is a "exchange" function button on your page. If you want to count the clicks of this button, you can perform click analysis by binding the button to report events.
|
||||
|
||||
Method|Description
|
||||
:-:|-
|
||||
event|Manually perform event analysis data reporting.
|
||||
|
||||
**Params**
|
||||
|
||||
Param|Required|Type|Description
|
||||
:-:|:-:|:-:|-
|
||||
category|true|string|The name of the location where the event occurred, e.g. `banner`
|
||||
action|true|string|The description of the behavior that generated the event, e.g. `click`
|
||||
label|false|string|The name of the label that generated the event can be used to record the event sub-id, e.g. `bannerId_123`. (@default: '')
|
||||
value|false|number|The score of the event. (@default: 0)
|
||||
|
||||
**Example**
|
||||
|
||||
```js
|
||||
this.$pushBAIDU.event(
|
||||
this.category,
|
||||
this.action,
|
||||
this.label,
|
||||
this.value
|
||||
);
|
||||
```
|
||||
|
||||
## CHANGELOG
|
||||
|
||||
See:[releases](https://github.com/analyticsjs/vue-baidu-analytics/releases)
|
||||
|
||||
## License
|
||||
|
||||
[MIT License](https://github.com/analyticsjs/vue-baidu-analytics/blob/master/LICENSE) © 2019 [chengpeiquan](https://github.com/chengpeiquan)
|
188
README.md
188
README.md
@ -10,95 +10,94 @@
|
||||
<br>
|
||||
<br>
|
||||
|
||||
English | [简体中文](https://github.com/analyticsjs/vue-baidu-analytics/blob/master/README.zh-CN.md)
|
||||
简体中文 | [English](https://github.com/analyticsjs/vue-baidu-analytics/blob/master/README.en.md)
|
||||
|
||||
Only 3 kB, this plugin base on the Baidu analytics, it can help you quickly to collect the page views on your website, including single page web application.
|
||||
一个只有 3 kB 大小的插件,可以帮你轻松解决 SPA 单页面项目浏览数据不准确的问题,可基于 Vue 路由访问轨迹自动向百度统计平台上报 PV / 事件数据。
|
||||
|
||||
Projects using this plugin need to be import [Vue Router](https://router.vuejs.org/) .
|
||||
>本插件自 v2.0.0 开始,最新版插件支持在 Vue 3.0 项目下使用,同时兼容 Vue 2.0 项目的使用,具体使用方法请看下方说明以及在线 demo 。<br>对 Vue 3.0 感兴趣,但还在观望的同学,欢迎阅读我踩坑总结的:[Vue3.0学习教程与实战案例](https://vue3.chengpeiquan.com/) (持续更新ing)
|
||||
|
||||
>Since the version v2.0.0, it supports the Vue 3.0, and is compatible with the Vue 2.0, you can see the live demo to learn more.<br>If you haven’t started using Vue 3.0, welcome to read the tutorial [learning Vue3](https://vue3.chengpeiquan.com/) .
|
||||
## 功能
|
||||
|
||||
## Features
|
||||
* 异步载入百度统计脚本,无需修改入口 HTML
|
||||
|
||||
* Asynchronously load the Baidu analytics scripts, no need to modify the entry HTML.
|
||||
* 支持部署多个站点 ID ,并对应进行数据上报(跨部门合作项目,双方均要收集数据时非常有用)
|
||||
|
||||
* Support the deployment of multiple site IDs and corresponding data reporting.
|
||||
* 支持自动上报路由切换产生的 PV 数据(需引入 [Vue Router](https://router.vuejs.org/),支持 hash 模式和 history 模式的地址)
|
||||
|
||||
* Supports automatic reporting of PV data generated by route switching (supports hash mode and history mode).
|
||||
* 支持手动提交 PV 上报
|
||||
|
||||
* Support manual submission of page views reports.
|
||||
* 支持手动提交事件分析上报
|
||||
|
||||
* Support manual submission of event reports.
|
||||
* 自动识别 Vue 版本,自动适配 Vue 2.0 / Vue 3.0 使用(本插件 v2.0.0 版本新增)
|
||||
|
||||
* Since the version v2.0.0, the plugin can automatically recognize the Vue version at Vue 2.0 or Vue 3.0 .
|
||||
* 提供了 Hooks API(本插件 v2.1.0 版本新增,因此 CDN 安装的用法略有调整,请留意使用说明)
|
||||
|
||||
* Since the version v2.1.0, Hooks API is provided (So the usage of CDN installation is slightly adjusted)
|
||||
## 项目
|
||||
|
||||
## Project
|
||||
理论上只要引入了 Vue (必须) 和 Vue Router (自 v2.2.0 起是可选) 的项目均可以正常使用,包括但不限于以下类型:
|
||||
|
||||
As long as Vue and Vue Router are introduced, the projects can be used normally, no matter what method is used to develop your project, e.g. :
|
||||
* Vue-CLI 脚手架项目
|
||||
|
||||
* Vue-CLI scaffolding project
|
||||
* Vite 项目
|
||||
|
||||
* Vite project
|
||||
* 引入 Vue 相关 CDN 的 HTML 页面
|
||||
|
||||
* Introduce the HTML page of Vue related CDN
|
||||
* VuePress 项目
|
||||
|
||||
* VuePress project
|
||||
也不仅限于 SPA 单页面项目,在 SSG / SSR 项目里也可以使用。
|
||||
|
||||
It is not limited to SPA single page projects, it can also be used in SSG / SSR projects.
|
||||
## 预览
|
||||
|
||||
## Preview
|
||||
两个在线 demo 均已开启 debug 模式,可开启控制台查看上报情况。
|
||||
|
||||
Both live demos have enabled debug mode, and you can open the console to view the report.
|
||||
Vue 2.0 版本:[vue-baidu-analytics demo for Vue 2.x](https://analyticsjs.github.io/vue-baidu-analytics/demo/vue2.html "vue-baidu-analytics demo for Vue 2.x")
|
||||
|
||||
Vue 2.0 :[vue-baidu-analytics demo for Vue 2.x](https://analyticsjs.github.io/vue-baidu-analytics/demo/vue2.html "vue-baidu-analytics demo for Vue 2.x")
|
||||
Vue 3.0 版本:[vue-baidu-analytics demo for Vue 3.x](https://analyticsjs.github.io/vue-baidu-analytics/demo/vue3.html "vue-baidu-analytics demo for Vue 3.x")
|
||||
|
||||
Vue 3.0 :[vue-baidu-analytics demo for Vue 3.x](https://analyticsjs.github.io/vue-baidu-analytics/demo/vue3.html "vue-baidu-analytics demo for Vue 3.x")
|
||||
## 选项
|
||||
|
||||
## Options
|
||||
|
||||
Option|Required|Type|Description
|
||||
选项|是否必填|选项类型|选项说明
|
||||
:-:|:-:|:-:|-
|
||||
router|true|object|Vue Router, this plugin is based on Vue Router.
|
||||
siteIdList|true|string[]|The site ids for Baidu analytics, if only one site needs to be reported, just keep one item in the array.
|
||||
isDebug|false|boolean|if `true`, it will open the debug mode,you can see the log in the console.
|
||||
router|否|object|Vue Router(自 v2.2.0 版本开始为可选,无路由的单页则不必传该选项)
|
||||
siteIdList|是|string[]|百度统计的站点 id 列表,只有一个站点需要上报就保留一个 id 即可
|
||||
isDebug|否|boolean|是否开启 debug 模式,默认 `false`,开启后会在 F12 控制台打印上报信息
|
||||
|
||||
Tips: Please remember to turn off the debug mode before publish.
|
||||
友情提示:上线前记得关闭 debug 模式。
|
||||
|
||||
## Install
|
||||
## 安装
|
||||
|
||||
You can install the plugin from NPM.
|
||||
方式一:通过 NPM 安装
|
||||
|
||||
```bash
|
||||
npm install vue-baidu-analytics --save-dev
|
||||
```
|
||||
|
||||
Can also use the CDN URL in your HTML.
|
||||
方式二:通过 CDN 安装
|
||||
|
||||
```html
|
||||
<script src="https://cdn.jsdelivr.net/npm/vue-baidu-analytics/dist/vue-baidu-analytics.min.js"></script>
|
||||
```
|
||||
|
||||
## Usage
|
||||
## 启用
|
||||
|
||||
If use NPM, you must import the plugin in `main.js` .
|
||||
通过 NPM 安装的项目,需要先在 main.js 里引入插件(通过 CDN 则无需该步骤)。
|
||||
|
||||
```js
|
||||
import baiduAnalytics from 'vue-baidu-analytics'
|
||||
```
|
||||
|
||||
Then, refer to the sample code in Vue 2.0 and Vue 3.0 below to use it.
|
||||
安装插件后,在 main.js 引入以下代码(注意 Vue 2.0 和 Vue 3.0 的用法区别),即可开启自动上报功能,首次访问页面会部署统计代码并提交第一次访问数据上报。
|
||||
|
||||
When the route is switched, the new URL address will be reported to Baidu analytics after the visit.
|
||||
后续在路由切换过程中,也会根据路由的切换提交相应的 URL 信息到百度统计。
|
||||
|
||||
### Use in the Vue 2.0
|
||||
### 在 Vue 2.0 里使用
|
||||
|
||||
See:[main.js - Vue 2.0 demo](https://analyticsjs.github.io/vue-baidu-analytics/demo/js/main-for-vue2.js)
|
||||
可参考demo:[main.js - Vue 2.0 demo](https://analyticsjs.github.io/vue-baidu-analytics/demo/js/main-for-vue2.js)
|
||||
|
||||
>Since the version v2.1.0, if you use CDN in your HTML, must be use `baiduAnalytics.default` to use the plugin.
|
||||
>自 v2.1.0 版本开始,如果是通过 CDN 安装,需要使用 `baiduAnalytics.default` 去激活插件,通过 NPM 安装的脚手架项目则使用 `baiduAnalytics` 就可以
|
||||
|
||||
```js
|
||||
// 启动插件
|
||||
Vue.use(baiduAnalytics, {
|
||||
router: router,
|
||||
siteIdList: [
|
||||
@ -109,15 +108,21 @@ Vue.use(baiduAnalytics, {
|
||||
});
|
||||
```
|
||||
|
||||
### Use in the Vue 3.0
|
||||
### 在 Vue 3.0 里使用
|
||||
|
||||
See:[main.js - Vue 3.0 demo](https://analyticsjs.github.io/vue-baidu-analytics/demo/js/main-for-vue3.js)
|
||||
可参考demo:[main.js - Vue 3.0 demo](https://analyticsjs.github.io/vue-baidu-analytics/demo/js/main-for-vue3.js)
|
||||
|
||||
>Since the version v2.1.0, if you use CDN in your HTML, must be use `baiduAnalytics.default` to use the plugin.
|
||||
>自 v2.1.0 版本开始,如果是通过 CDN 安装,需要使用 `baiduAnalytics.default` 去激活插件,通过 NPM 安装的脚手架项目则使用 `baiduAnalytics` 就可以
|
||||
|
||||
```js
|
||||
/**
|
||||
* 初始化Vue
|
||||
*/
|
||||
createApp(app)
|
||||
// 启动路由
|
||||
.use(router)
|
||||
|
||||
// 启动插件
|
||||
.use(baiduAnalytics, {
|
||||
router: router,
|
||||
siteIdList: [
|
||||
@ -126,16 +131,18 @@ createApp(app)
|
||||
],
|
||||
isDebug: false
|
||||
})
|
||||
|
||||
// 挂载到节点上
|
||||
.mount('#app');
|
||||
```
|
||||
|
||||
### Use in the VuePress
|
||||
### 在 VuePress 里使用
|
||||
|
||||
The plugin can also be used in [VuePress](https://vuepress.vuejs.org/zh/) project.
|
||||
插件也支持在Vue的静态文档 [VuePress](https://vuepress.vuejs.org/zh/) 项目里使用。
|
||||
|
||||
In the `/docs/.vuepress` folder under the project, create a file named `enhanceApp.js`, and write the following code in this file.
|
||||
在项目下的 `/docs/.vuepress` 文件夹下,创建一个 `enhanceApp.js`,按照下面的方式引入即可启动数据上报功能。
|
||||
|
||||
You can see [App Level Enhancements - VuePress](https://vuepress.vuejs.org/guide/basic-config.html#app-level-enhancements) to learn more.
|
||||
官方文档传送门:[应用级别的配置 - VuePress](https://vuepress.vuejs.org/zh/guide/basic-config.html#%E5%BA%94%E7%94%A8%E7%BA%A7%E5%88%AB%E7%9A%84%E9%85%8D%E7%BD%AE)
|
||||
|
||||
```js
|
||||
import baiduAnalytics from 'vue-baidu-analytics'
|
||||
@ -153,17 +160,19 @@ export default ({ Vue, router }) => {
|
||||
};
|
||||
```
|
||||
|
||||
You can turn on the debug mode in the development environment to learn about related reports (remember to turn off debug before going online).
|
||||
可在开发环境打开 debug 模式了解相关的上报情况(上线前记得关闭 debug )。
|
||||
|
||||
## API
|
||||
|
||||
Since the version v2.1.0, you can use the Global API `$pushBAIDU` and the Hooks API `usePush` in your project, they both support the Vue 2.0 and 3.0.
|
||||
自 v2.1.0 版本开始,插件支持直接调用的全局 API `$pushBAIDU` 和按需导入的钩子 API `usePush` 两种方式。
|
||||
|
||||
>The APIs can't be used directly, it needs to cooperate with the [Methods](#Methods) to operate the specific functions.
|
||||
这两种方式在 Vue 2.0 和 3.0 里均可以使用,只不过按照使用习惯和从 Vue 官方推荐的角度来说,全局 API 更适合 Vue 2.0 项目,钩子 API 更适合 Vue 3.0 项目。
|
||||
|
||||
### The Global API
|
||||
> 插件的 API 不可以直接使用,需要配合 API 里面的 [方法](#方法) 才可以操作到具体功能。
|
||||
|
||||
In the Vue 2.0:
|
||||
### 全局 API
|
||||
|
||||
在 Vue 2.0 里,只需要通过我们熟悉的 `this` 去操作即可:
|
||||
|
||||
```js
|
||||
// xxx.vue in Vue 2.0
|
||||
@ -176,7 +185,7 @@ export default {
|
||||
}
|
||||
```
|
||||
|
||||
In the Vue 3.0, you can use the Global Properties:
|
||||
在 Vue 3.0 里,可以按照官方文档的推荐,导入当前实例变量,通过当前实例变量去操作全局方法:
|
||||
|
||||
```js
|
||||
// xxx.vue in Vue 3.0
|
||||
@ -190,7 +199,7 @@ export default {
|
||||
}
|
||||
```
|
||||
|
||||
You can also import the proxy component in the current instance to operate:
|
||||
也可以导入当前实例里的代理组件去操作:
|
||||
|
||||
```js
|
||||
// xxx.vue in Vue 3.0
|
||||
@ -204,9 +213,11 @@ export default {
|
||||
}
|
||||
```
|
||||
|
||||
### The Hooks API
|
||||
### 钩子 API
|
||||
|
||||
In the Vue 2.0:
|
||||
>钩子 API 需要在用到的组件里 import 导入才可以使用。
|
||||
|
||||
在 Vue 2.0 里,你可以绑定一个钩子变量去使用:
|
||||
|
||||
```js
|
||||
// xxx.vue in Vue 2.0
|
||||
@ -216,17 +227,19 @@ export default {
|
||||
// ...
|
||||
data () {
|
||||
return {
|
||||
// 创建钩子变量
|
||||
baidu: usePush()
|
||||
}
|
||||
},
|
||||
mounted () {
|
||||
// 通过钩子变量去触发方法
|
||||
this.baidu.pv('/example-url/');
|
||||
},
|
||||
// ...
|
||||
}
|
||||
```
|
||||
|
||||
In the Vue 3.0, just use it as if you were using the route `const router = useRouter();`.
|
||||
在 Vue 3.0 里,就像在使用路由 `const router = useRouter();` 一样去使用就可以。
|
||||
|
||||
```js
|
||||
// xxx.vue in Vue 3.0
|
||||
@ -234,70 +247,73 @@ import { usePush } from 'vue-baidu-analytics'
|
||||
|
||||
export default {
|
||||
setup () {
|
||||
// 创建钩子变量
|
||||
const baidu = usePush();
|
||||
|
||||
// 通过钩子变量去触发方法
|
||||
baidu.pv('/example-url/');
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
If the name of the hook API has already been declared, you can rename it when import.
|
||||
另外,如果 API 与其他插件冲突的话(比如你同时使用了 [vue-cnzz-analytics](https://github.com/analyticsjs/vue-cnzz-analytics)),你可以在导入的时候重命名:
|
||||
|
||||
```js
|
||||
import { usePush as useBaidu } from 'vue-baidu-analytics'
|
||||
const baidu = useBaidu();
|
||||
```
|
||||
|
||||
## Methods
|
||||
## 方法
|
||||
|
||||
All methods are needs to be triggered through the API, and the methods supported by the Global API and the Hooks API are exactly the same.
|
||||
方法需要通过 API 去触发,全局 API 和 钩子 API 支持的方法都是完全一样的。
|
||||
|
||||
Method|Description
|
||||
方法功能|使用说明
|
||||
:--|:--
|
||||
Manually report the page views|[Click here to see.](#manually-report-the-page-views)
|
||||
Manually report the event analysis|[Click here to see.](#manually-report-the-event-analysis)
|
||||
手动上报页面 PV|[点击查看](#手动上报页面PV)
|
||||
手动上报事件分析|[点击查看](#手动上报事件分析)
|
||||
|
||||
>Since there are still many users of Vue 2.0, the following examples only use the operation method of Vue 2.0 to demonstrate. Vue 3.0 can call specific methods according to the description of the Hooks API.
|
||||
> 由于目前 Vue 2.0 的使用者还比较多,下面的举例均只用 Vue 2.0 的操作方法进行演示,Vue 3.0 可根据钩子 API 的说明去调用具体的方法。
|
||||
|
||||
Tips: If multiple site IDs are configured, the data will be reported to all sites at the same time.
|
||||
注:如果配置了多个站点 ID ,数据都会同时上报给所有站点。
|
||||
|
||||
### Manually report the page views
|
||||
### 手动上报页面 PV
|
||||
|
||||
If you switch content rendering on some pages through Tab, but you need to report access data, you can use this method to manually report.
|
||||
如果你有些页面是通过 Tab 切页进行内容渲染切换,但又需要上报访问数据的话,就可以使用这个方法来进行手动上报。
|
||||
|
||||
Method|Description
|
||||
方法名称|功能说明
|
||||
:-:|-
|
||||
pv|Manually perform PV data reporting.
|
||||
pv|手动执行 PV 数据上报
|
||||
|
||||
**Params**
|
||||
**参数**
|
||||
|
||||
Param|Required|Type|Description
|
||||
参数|是否必填|参数类型|参数说明
|
||||
:-:|:-:|:-:|-
|
||||
pageUrl|false|string|The URL submitted for the report must be a relative path starting with `/`, if not filled, it will be submitted as the domain name root directory by default.
|
||||
pageUrl|否|string|提交上报的 URL ,必须是以 `/` 开头的相对路径,如果不填,则会默认提交为域名根目录
|
||||
|
||||
**Example**
|
||||
**使用示范**
|
||||
|
||||
```js
|
||||
this.$pushBAIDU.pv('/example-url/');
|
||||
```
|
||||
|
||||
### Manually report the event analysis
|
||||
### 手动上报事件分析
|
||||
|
||||
For example, there is a "exchange" function button on your page. If you want to count the clicks of this button, you can perform click analysis by binding the button to report events.
|
||||
比如你的页面上有个 “换一换” 的功能按钮,想要统计这个按钮的点击情况,就可以通过给按钮绑定上报事件来进行点击情况分析。
|
||||
|
||||
Method|Description
|
||||
方法名称|功能说明
|
||||
:-:|-
|
||||
event|Manually perform event analysis data reporting.
|
||||
event|手动执行事件分析数据上报
|
||||
|
||||
**Params**
|
||||
**参数**
|
||||
|
||||
Param|Required|Type|Description
|
||||
参数|是否必填|参数类型|参数说明
|
||||
:-:|:-:|:-:|-
|
||||
category|true|string|The name of the location where the event occurred, e.g. `banner`
|
||||
action|true|string|The description of the behavior that generated the event, e.g. `click`
|
||||
label|false|string|The name of the label that generated the event can be used to record the event sub-id, e.g. `bannerId_123`. (@default: '')
|
||||
value|false|number|The score of the event. (@default: 0)
|
||||
category|是|string|产生该事件的位置名称,比如 `首页banner`
|
||||
action|是|string|产生该事件的行为描述,比如 `点击`
|
||||
label|否|string|产生该事件的标签名称,可以用来记录事件子 id,比如 `bannerId_123`,默认为空
|
||||
value|否|number|该事件的分值,默认 0
|
||||
|
||||
**Example**
|
||||
**使用示范**
|
||||
|
||||
```js
|
||||
this.$pushBAIDU.event(
|
||||
@ -308,6 +324,10 @@ this.$pushBAIDU.event(
|
||||
);
|
||||
```
|
||||
|
||||
## 更新记录
|
||||
|
||||
点击查看:[releases](https://github.com/analyticsjs/vue-baidu-analytics/releases)
|
||||
|
||||
## License
|
||||
|
||||
[MIT License](https://github.com/analyticsjs/vue-baidu-analytics/blob/master/LICENSE) © 2019 [chengpeiquan](https://github.com/chengpeiquan)
|
||||
|
329
README.zh-CN.md
329
README.zh-CN.md
@ -1,329 +0,0 @@
|
||||
<p align='center'>
|
||||
<img src="https://cdn.jsdelivr.net/gh/chengpeiquan/assets-storage/img/2021/04/20210404235335.png" alt="vue-baidu-analytics" />
|
||||
</p>
|
||||
|
||||
<p align='center'>
|
||||
<a href='https://www.npmjs.com/package/vue-baidu-analytics'>
|
||||
<img src="https://img.shields.io/npm/v/vue-baidu-analytics?color=41b883&label=npm" />
|
||||
</a>
|
||||
</p>
|
||||
<br>
|
||||
<br>
|
||||
|
||||
[English](https://github.com/analyticsjs/vue-baidu-analytics/blob/master/README.md) | 简体中文
|
||||
|
||||
一个只有 3 kB 大小的插件,可以帮你轻松解决 SPA 单页面项目浏览数据不准确的问题,基于 Vue 路由访问轨迹自动向百度统计平台上报 PV / 事件数据,使用本插件的项目需要引入 [Vue Router](https://router.vuejs.org/) 。
|
||||
|
||||
>本插件自 v2.0.0 开始,最新版插件支持在 Vue 3.0 项目下使用,同时兼容 Vue 2.0 项目的使用,具体使用方法请看下方说明以及在线 demo 。<br>对 Vue 3.0 感兴趣,但还在观望的同学,欢迎阅读我踩坑总结的:[Vue3.0学习教程与实战案例](https://vue3.chengpeiquan.com/) (持续更新ing)
|
||||
|
||||
## 功能
|
||||
|
||||
* 异步载入百度统计脚本,无需修改入口 HTML
|
||||
|
||||
* 支持部署多个站点 ID ,并对应进行数据上报(跨部门合作项目,双方均要收集数据时非常有用)
|
||||
|
||||
* 支持自动上报路由切换产生的 PV 数据(支持 hash 模式和 history 模式的地址)
|
||||
|
||||
* 支持手动提交 PV 上报
|
||||
|
||||
* 支持手动提交事件分析上报
|
||||
|
||||
* 自动识别 Vue 版本,自动适配 Vue 2.0 / Vue 3.0 使用(本插件 v2.0.0 版本新增)
|
||||
|
||||
* 提供了 Hooks API(本插件 v2.1.0 版本新增,因此 CDN 安装的用法略有调整,请留意使用说明)
|
||||
|
||||
## 项目
|
||||
|
||||
理论上只要引入了 Vue 和 Vue Router 的项目均可以正常使用,包括但不限于以下类型:
|
||||
|
||||
* Vue-CLI 脚手架项目
|
||||
|
||||
* Vite 项目
|
||||
|
||||
* 引入 Vue 相关 CDN 的 HTML 页面
|
||||
|
||||
* VuePress 项目
|
||||
|
||||
也不仅限于 SPA 单页面项目,在 SSG / SSR 项目里也可以使用。
|
||||
|
||||
## 预览
|
||||
|
||||
两个在线 demo 均已开启 debug 模式,可开启控制台查看上报情况。
|
||||
|
||||
Vue 2.0 版本:[vue-baidu-analytics demo for Vue 2.x](https://analyticsjs.github.io/vue-baidu-analytics/demo/vue2.html "vue-baidu-analytics demo for Vue 2.x")
|
||||
|
||||
Vue 3.0 版本:[vue-baidu-analytics demo for Vue 3.x](https://analyticsjs.github.io/vue-baidu-analytics/demo/vue3.html "vue-baidu-analytics demo for Vue 3.x")
|
||||
|
||||
## 选项
|
||||
|
||||
选项|是否必填|选项类型|选项说明
|
||||
:-:|:-:|:-:|-
|
||||
router|是|object|Vue Router,本插件基于路由使用
|
||||
siteIdList|是|string[]|百度统计的站点 id 列表,只有一个站点需要上报就保留一个 id 即可
|
||||
isDebug|否|boolean|是否开启 debug 模式,默认 `false`,开启后会在 F12 控制台打印上报信息
|
||||
|
||||
友情提示:上线前记得关闭 debug 模式。
|
||||
|
||||
## 安装
|
||||
|
||||
方式一:通过 NPM 安装
|
||||
|
||||
```bash
|
||||
npm install vue-baidu-analytics --save-dev
|
||||
```
|
||||
|
||||
方式二:通过 CDN 安装
|
||||
|
||||
```html
|
||||
<script src="https://cdn.jsdelivr.net/npm/vue-baidu-analytics/dist/vue-baidu-analytics.min.js"></script>
|
||||
```
|
||||
|
||||
## 启用
|
||||
|
||||
通过 NPM 安装的项目,需要先在 main.js 里引入插件(通过 CDN 则无需该步骤)。
|
||||
|
||||
```js
|
||||
import baiduAnalytics from 'vue-baidu-analytics'
|
||||
```
|
||||
|
||||
安装插件后,在 main.js 引入以下代码(注意 Vue 2.0 和 Vue 3.0 的用法区别),即可开启自动上报功能,首次访问页面会部署统计代码并提交第一次访问数据上报。
|
||||
|
||||
后续在路由切换过程中,也会根据路由的切换提交相应的 URL 信息到百度统计。
|
||||
|
||||
### 在 Vue 2.0 里使用
|
||||
|
||||
可参考demo:[main.js - Vue 2.0 demo](https://analyticsjs.github.io/vue-baidu-analytics/demo/js/main-for-vue2.js)
|
||||
|
||||
>自 v2.1.0 版本开始,如果是通过 CDN 安装,需要使用 `baiduAnalytics.default` 去激活插件,通过 NPM 安装的脚手架项目则使用 `baiduAnalytics` 就可以
|
||||
|
||||
```js
|
||||
// 启动插件
|
||||
Vue.use(baiduAnalytics, {
|
||||
router: router,
|
||||
siteIdList: [
|
||||
'aaaaaaaaaaaaaaaaaaa',
|
||||
'bbbbbbbbbbbbbbbbbbb'
|
||||
],
|
||||
isDebug: false
|
||||
});
|
||||
```
|
||||
|
||||
### 在 Vue 3.0 里使用
|
||||
|
||||
可参考demo:[main.js - Vue 3.0 demo](https://analyticsjs.github.io/vue-baidu-analytics/demo/js/main-for-vue3.js)
|
||||
|
||||
>自 v2.1.0 版本开始,如果是通过 CDN 安装,需要使用 `baiduAnalytics.default` 去激活插件,通过 NPM 安装的脚手架项目则使用 `baiduAnalytics` 就可以
|
||||
|
||||
```js
|
||||
/**
|
||||
* 初始化Vue
|
||||
*/
|
||||
createApp(app)
|
||||
// 启动路由
|
||||
.use(router)
|
||||
|
||||
// 启动插件
|
||||
.use(baiduAnalytics, {
|
||||
router: router,
|
||||
siteIdList: [
|
||||
'aaaaaaaaaaaaaaaaaaa',
|
||||
'bbbbbbbbbbbbbbbbbbb'
|
||||
],
|
||||
isDebug: false
|
||||
})
|
||||
|
||||
// 挂载到节点上
|
||||
.mount('#app');
|
||||
```
|
||||
|
||||
### 在 VuePress 里使用
|
||||
|
||||
插件也支持在Vue的静态文档 [VuePress](https://vuepress.vuejs.org/zh/) 项目里使用。
|
||||
|
||||
在项目下的 `/docs/.vuepress` 文件夹下,创建一个 `enhanceApp.js`,按照下面的方式引入即可启动数据上报功能。
|
||||
|
||||
官方文档传送门:[应用级别的配置 - VuePress](https://vuepress.vuejs.org/zh/guide/basic-config.html#%E5%BA%94%E7%94%A8%E7%BA%A7%E5%88%AB%E7%9A%84%E9%85%8D%E7%BD%AE)
|
||||
|
||||
```js
|
||||
import baiduAnalytics from 'vue-baidu-analytics'
|
||||
|
||||
export default ({ Vue, router }) => {
|
||||
Vue.use(baiduAnalytics, {
|
||||
router: router,
|
||||
siteIdList: [
|
||||
'aaaaaaaaaaaaaaaaaaa',
|
||||
'bbbbbbbbbbbbbbbbbbb',
|
||||
'ccccccccccccccccccc'
|
||||
],
|
||||
isDebug: false
|
||||
});
|
||||
};
|
||||
```
|
||||
|
||||
可在开发环境打开 debug 模式了解相关的上报情况(上线前记得关闭 debug )。
|
||||
|
||||
## API
|
||||
|
||||
自 v2.1.0 版本开始,插件支持直接调用的全局 API `$pushBAIDU` 和按需导入的钩子 API `usePush` 两种方式。
|
||||
|
||||
这两种方式在 Vue 2.0 和 3.0 里均可以使用,只不过按照使用习惯和从 Vue 官方推荐的角度来说,全局 API 更适合 Vue 2.0 项目,钩子 API 更适合 Vue 3.0 项目。
|
||||
|
||||
> 插件的 API 不可以直接使用,需要配合 API 里面的 [方法](#方法) 才可以操作到具体功能。
|
||||
|
||||
### 全局 API
|
||||
|
||||
在 Vue 2.0 里,只需要通过我们熟悉的 `this` 去操作即可:
|
||||
|
||||
```js
|
||||
// xxx.vue in Vue 2.0
|
||||
export default {
|
||||
// ...
|
||||
mounted () {
|
||||
this.$pushBAIDU.pv('/example-url/');
|
||||
},
|
||||
// ...
|
||||
}
|
||||
```
|
||||
|
||||
在 Vue 3.0 里,可以按照官方文档的推荐,导入当前实例变量,通过当前实例变量去操作全局方法:
|
||||
|
||||
```js
|
||||
// xxx.vue in Vue 3.0
|
||||
import { getCurrentInstance } from 'vue'
|
||||
|
||||
export default {
|
||||
setup () {
|
||||
const app = getCurrentInstance();
|
||||
app.appContext.config.globalProperties.$pushBAIDU.pv('/example-url/');
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
也可以导入当前实例里的代理组件去操作:
|
||||
|
||||
```js
|
||||
// xxx.vue in Vue 3.0
|
||||
import { getCurrentInstance } from 'vue'
|
||||
|
||||
export default {
|
||||
setup () {
|
||||
const { proxy } = getCurrentInstance();
|
||||
proxy.$pushBAIDU.pv('/example-url/');
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### 钩子 API
|
||||
|
||||
>钩子 API 需要在用到的组件里 import 导入才可以使用。
|
||||
|
||||
在 Vue 2.0 里,你可以绑定一个钩子变量去使用:
|
||||
|
||||
```js
|
||||
// xxx.vue in Vue 2.0
|
||||
import { usePush } from 'vue-baidu-analytics'
|
||||
|
||||
export default {
|
||||
// ...
|
||||
data () {
|
||||
return {
|
||||
// 创建钩子变量
|
||||
baidu: usePush()
|
||||
}
|
||||
},
|
||||
mounted () {
|
||||
// 通过钩子变量去触发方法
|
||||
this.baidu.pv('/example-url/');
|
||||
},
|
||||
// ...
|
||||
}
|
||||
```
|
||||
|
||||
在 Vue 3.0 里,就像在使用路由 `const router = useRouter();` 一样去使用就可以。
|
||||
|
||||
```js
|
||||
// xxx.vue in Vue 3.0
|
||||
import { usePush } from 'vue-baidu-analytics'
|
||||
|
||||
export default {
|
||||
setup () {
|
||||
// 创建钩子变量
|
||||
const baidu = usePush();
|
||||
|
||||
// 通过钩子变量去触发方法
|
||||
baidu.pv('/example-url/');
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
另外,如果 API 与其他插件冲突的话(比如你同时使用了 [vue-cnzz-analytics](https://github.com/analyticsjs/vue-cnzz-analytics)),你可以在导入的时候重命名:
|
||||
|
||||
```js
|
||||
import { usePush as useBaidu } from 'vue-baidu-analytics'
|
||||
const baidu = useBaidu();
|
||||
```
|
||||
|
||||
## 方法
|
||||
|
||||
方法需要通过 API 去触发,全局 API 和 钩子 API 支持的方法都是完全一样的。
|
||||
|
||||
方法功能|使用说明
|
||||
:--|:--
|
||||
手动上报页面 PV|[点击查看](#手动上报页面PV)
|
||||
手动上报事件分析|[点击查看](#手动上报事件分析)
|
||||
|
||||
> 由于目前 Vue 2.0 的使用者还比较多,下面的举例均只用 Vue 2.0 的操作方法进行演示,Vue 3.0 可根据钩子 API 的说明去调用具体的方法。
|
||||
|
||||
注:如果配置了多个站点 ID ,数据都会同时上报给所有站点。
|
||||
|
||||
### 手动上报页面 PV
|
||||
|
||||
如果你有些页面是通过 Tab 切页进行内容渲染切换,但又需要上报访问数据的话,就可以使用这个方法来进行手动上报。
|
||||
|
||||
方法名称|功能说明
|
||||
:-:|-
|
||||
pv|手动执行 PV 数据上报
|
||||
|
||||
**参数**
|
||||
|
||||
参数|是否必填|参数类型|参数说明
|
||||
:-:|:-:|:-:|-
|
||||
pageUrl|否|string|提交上报的 URL ,必须是以 `/` 开头的相对路径,如果不填,则会默认提交为域名根目录
|
||||
|
||||
**使用示范**
|
||||
|
||||
```js
|
||||
this.$pushBAIDU.pv('/example-url/');
|
||||
```
|
||||
|
||||
### 手动上报事件分析
|
||||
|
||||
比如你的页面上有个 “换一换” 的功能按钮,想要统计这个按钮的点击情况,就可以通过给按钮绑定上报事件来进行点击情况分析。
|
||||
|
||||
方法名称|功能说明
|
||||
:-:|-
|
||||
event|手动执行事件分析数据上报
|
||||
|
||||
**参数**
|
||||
|
||||
参数|是否必填|参数类型|参数说明
|
||||
:-:|:-:|:-:|-
|
||||
category|是|string|产生该事件的位置名称,比如 `首页banner`
|
||||
action|是|string|产生该事件的行为描述,比如 `点击`
|
||||
label|否|string|产生该事件的标签名称,可以用来记录事件子 id,比如 `bannerId_123`,默认为空
|
||||
value|否|number|该事件的分值,默认 0
|
||||
|
||||
**使用示范**
|
||||
|
||||
```js
|
||||
this.$pushBAIDU.event(
|
||||
this.category,
|
||||
this.action,
|
||||
this.label,
|
||||
this.value
|
||||
);
|
||||
```
|
||||
|
||||
## License
|
||||
|
||||
[MIT License](https://github.com/analyticsjs/vue-baidu-analytics/blob/master/LICENSE) © 2019 [chengpeiquan](https://github.com/chengpeiquan)
|
41
dist/main.d.ts
vendored
41
dist/main.d.ts
vendored
@ -1,16 +1,25 @@
|
||||
/**
|
||||
* 暴露 Hooks
|
||||
* @description 解决 Vue 3.0 使用全局变量很麻烦的问题
|
||||
* @example
|
||||
* import { usePush } from 'vue-baidu-analytics'
|
||||
* const baidu = usePush();
|
||||
* baidu.pv('/');
|
||||
*/
|
||||
export declare function usePush(): {
|
||||
pv: (pageUrl: string) => void;
|
||||
event: (category: string, action: string, label: string, value: number) => void;
|
||||
};
|
||||
/**
|
||||
* 定义插件
|
||||
*/
|
||||
export default function install(Vue: Vue, { router, siteIdList, isDebug }: Partial<Options>): false | undefined;
|
||||
import type { Options, Vue } from '@/types'
|
||||
/**
|
||||
* 暴露 Hooks
|
||||
* @description 解决 Vue 3.0 使用全局变量很麻烦的问题
|
||||
* @example
|
||||
* import { usePush } from 'vue-baidu-analytics'
|
||||
* const baidu = usePush();
|
||||
* baidu.pv('/');
|
||||
*/
|
||||
export declare function usePush(): {
|
||||
pv: (pageUrl: string) => void
|
||||
event: (
|
||||
category: string,
|
||||
action: string,
|
||||
label: string,
|
||||
value: number
|
||||
) => void
|
||||
}
|
||||
/**
|
||||
* 定义插件
|
||||
*/
|
||||
export default function install(
|
||||
Vue: Vue,
|
||||
{ router, siteIdList, isDebug }: Partial<Options>
|
||||
): void
|
||||
|
13
dist/modules/getVueVersion.d.ts
vendored
13
dist/modules/getVueVersion.d.ts
vendored
@ -1,6 +1,7 @@
|
||||
/**
|
||||
* 获取Vue的版本
|
||||
* @return 2=Vue2.x, 3=Vue3.x
|
||||
*/
|
||||
declare const getVueVersion: (Vue: Vue) => number;
|
||||
export default getVueVersion;
|
||||
import type { Vue } from '@/types'
|
||||
/**
|
||||
* 获取Vue的版本
|
||||
* @return 2=Vue2.x, 3=Vue3.x
|
||||
*/
|
||||
declare const getVueVersion: (Vue: Vue) => number
|
||||
export default getVueVersion
|
||||
|
12
dist/types.d.ts
vendored
Normal file
12
dist/types.d.ts
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
import PushBAIDU from '@m/pushBAIDU'
|
||||
export interface Options {
|
||||
router: any
|
||||
siteIdList: string[]
|
||||
isDebug: boolean
|
||||
}
|
||||
export interface Vue {
|
||||
prototype: any
|
||||
$pushBAIDU: PushBAIDU
|
||||
version: number | string
|
||||
config: any
|
||||
}
|
526
dist/vue-baidu-analytics.js
vendored
526
dist/vue-baidu-analytics.js
vendored
@ -1,255 +1,297 @@
|
||||
/*!
|
||||
* name: vue-baidu-analytics
|
||||
* version: v2.1.0
|
||||
* version: v2.2.0
|
||||
* author: chengpeiquan
|
||||
*/
|
||||
(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
|
||||
typeof define === 'function' && define.amd ? define(['exports'], factory) :
|
||||
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.baiduAnalytics = {}));
|
||||
}(this, (function (exports) { 'use strict';
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
? factory(exports)
|
||||
: typeof define === 'function' && define.amd
|
||||
? define(['exports'], factory)
|
||||
: ((global =
|
||||
typeof globalThis !== 'undefined' ? globalThis : global || self),
|
||||
factory((global.baiduAnalytics = {})))
|
||||
})(this, function (exports) {
|
||||
'use strict'
|
||||
|
||||
/*! *****************************************************************************
|
||||
Copyright (c) Microsoft Corporation.
|
||||
|
||||
Permission to use, copy, modify, and/or distribute this software for any
|
||||
purpose with or without fee is hereby granted.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
||||
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
||||
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
||||
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
||||
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
||||
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||
PERFORMANCE OF THIS SOFTWARE.
|
||||
/*! *****************************************************************************
|
||||
Copyright (c) Microsoft Corporation.
|
||||
|
||||
Permission to use, copy, modify, and/or distribute this software for any
|
||||
purpose with or without fee is hereby granted.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
||||
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
||||
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
||||
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
||||
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
||||
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||
PERFORMANCE OF THIS SOFTWARE.
|
||||
***************************************************************************** */
|
||||
function __spreadArray(to, from) {
|
||||
for (var i = 0, il = from.length, j = to.length; i < il; i++, j++) to[j] = from[i];
|
||||
function __spreadArray(to, from, pack) {
|
||||
if (pack || arguments.length === 2)
|
||||
for (var i = 0, l = from.length, ar; i < l; i++) {
|
||||
if (ar || !(i in from)) {
|
||||
if (!ar) ar = Array.prototype.slice.call(from, 0, i)
|
||||
ar[i] = from[i]
|
||||
}
|
||||
}
|
||||
return to.concat(ar || from)
|
||||
}
|
||||
|
||||
return to;
|
||||
/**
|
||||
* 定义基础配置
|
||||
* 官方文档 https://tongji.baidu.com/open/api/more?p=guide_overview
|
||||
*/
|
||||
var BAIDU = /** @class */ (function () {
|
||||
function BAIDU(siteId, isDebug) {
|
||||
if (siteId === void 0) {
|
||||
siteId = ''
|
||||
}
|
||||
if (isDebug === void 0) {
|
||||
isDebug = false
|
||||
}
|
||||
this.siteId = siteId
|
||||
this.isDebug = isDebug
|
||||
}
|
||||
|
||||
/**
|
||||
* 定义基础配置
|
||||
* 官方文档 https://tongji.baidu.com/open/api/more?p=guide_overview
|
||||
*/
|
||||
var BAIDU = /** @class */ (function () {
|
||||
function BAIDU(siteId, isDebug) {
|
||||
if (siteId === void 0) { siteId = ''; }
|
||||
if (isDebug === void 0) { isDebug = false; }
|
||||
this.siteId = siteId;
|
||||
this.isDebug = isDebug;
|
||||
}
|
||||
/**
|
||||
* 初始化
|
||||
*/
|
||||
BAIDU.prototype.init = function () {
|
||||
var _a;
|
||||
window._hmt = window._hmt ? window._hmt : [];
|
||||
var SCRIPT = document.createElement('script');
|
||||
SCRIPT['async'] = true;
|
||||
SCRIPT['src'] = "https://hm.baidu.com/hm.js?" + this.siteId;
|
||||
(_a = document.querySelector('head')) === null || _a === void 0 ? void 0 : _a.appendChild(SCRIPT);
|
||||
if (this.isDebug) {
|
||||
console.log("[vue-baidu-analytics] siteId load done.\nsiteId: " + this.siteId);
|
||||
}
|
||||
};
|
||||
/**
|
||||
* 设置要响应的站点
|
||||
*/
|
||||
BAIDU.prototype.setAccount = function () {
|
||||
window._hmt.push(['_setAccount', this.siteId]);
|
||||
};
|
||||
/**
|
||||
* 提交PV、UV
|
||||
*/
|
||||
BAIDU.prototype.trackPageview = function (pageUrl) {
|
||||
// 如果页面链接没传或者无效链接,则默认为根域名
|
||||
if (!pageUrl || typeof pageUrl !== 'string') {
|
||||
pageUrl = '/';
|
||||
}
|
||||
// 如果页面链接带上了域名,则需要过滤掉
|
||||
if (pageUrl.includes('http')) {
|
||||
var PAGE_CUT = pageUrl.split('/');
|
||||
var HOST_NAME = PAGE_CUT[0] + "//" + PAGE_CUT[2];
|
||||
pageUrl = pageUrl.replace(HOST_NAME, '');
|
||||
}
|
||||
// 设置响应 id 并提交数据
|
||||
this.setAccount();
|
||||
window._hmt.push(['_trackPageview', pageUrl]);
|
||||
if (this.isDebug) {
|
||||
console.log("[vue-baidu-analytics] track pv done.\nsiteId: " + this.siteId + "\npageUrl: " + pageUrl);
|
||||
}
|
||||
};
|
||||
/**
|
||||
* 提交点击事件
|
||||
*/
|
||||
BAIDU.prototype.trackEvent = function (category, action, label, value) {
|
||||
// 前两个是必填项
|
||||
if (typeof category !== 'string' || typeof action !== 'string' || !category || !action) {
|
||||
throw new Error('[vue-baidu-analytics] Missing necessary category and operation information, and must be of type string.');
|
||||
}
|
||||
// 重置一些无效的默认值
|
||||
if (!label || typeof label !== 'string') {
|
||||
label = '';
|
||||
}
|
||||
if (!Number(value)) {
|
||||
value = 1;
|
||||
}
|
||||
// 设置响应id并提交数据
|
||||
this.setAccount();
|
||||
window._hmt.push(['_trackEvent', category, action, label, value]);
|
||||
if (this.isDebug) {
|
||||
console.log("[vue-baidu-analytics] track event done.\nsiteId: " + this.siteId + "\ncategory: " + category + "\naction: " + action + "\nlabel: " + label + "\nvalue: " + value);
|
||||
}
|
||||
};
|
||||
return BAIDU;
|
||||
}());
|
||||
|
||||
/**
|
||||
* 定义推送操作
|
||||
*/
|
||||
var PushBAIDU = /** @class */ (function () {
|
||||
function PushBAIDU(siteIdList, isDebug) {
|
||||
this.siteIdList = __spreadArray([], siteIdList);
|
||||
this.isDebug = isDebug;
|
||||
}
|
||||
/**
|
||||
* 批量部署站点
|
||||
*/
|
||||
PushBAIDU.prototype.init = function () {
|
||||
var _this = this;
|
||||
this.siteIdList.forEach(function (siteId) {
|
||||
var SITE = new BAIDU(siteId, _this.isDebug);
|
||||
SITE.init();
|
||||
});
|
||||
};
|
||||
/**
|
||||
* 批量提交pv上报
|
||||
*/
|
||||
PushBAIDU.prototype.pv = function (pageUrl) {
|
||||
var _this = this;
|
||||
this.siteIdList.forEach(function (siteId) {
|
||||
var SITE = new BAIDU(siteId, _this.isDebug);
|
||||
SITE.trackPageview(pageUrl);
|
||||
});
|
||||
};
|
||||
/**
|
||||
* 批量提交事件上报
|
||||
*/
|
||||
PushBAIDU.prototype.event = function (category, action, label, value) {
|
||||
var _this = this;
|
||||
this.siteIdList.forEach(function (siteId) {
|
||||
var SITE = new BAIDU(siteId, _this.isDebug);
|
||||
SITE.trackEvent(category, action, label, value);
|
||||
});
|
||||
};
|
||||
return PushBAIDU;
|
||||
}());
|
||||
|
||||
/**
|
||||
* 获取Vue的版本
|
||||
* @return 2=Vue2.x, 3=Vue3.x
|
||||
*/
|
||||
var getVueVersion = function (Vue) {
|
||||
var version = 2;
|
||||
// 获取Vue的版本号
|
||||
var VUE_VERSION = String(Vue.version);
|
||||
// Vue 2.x
|
||||
if (VUE_VERSION.slice(0, 2) === '2.') {
|
||||
version = 2;
|
||||
}
|
||||
// Vue 3.x
|
||||
if (VUE_VERSION.slice(0, 2) === '3.') {
|
||||
version = 3;
|
||||
}
|
||||
return version;
|
||||
};
|
||||
|
||||
/**
|
||||
* 全局的数据
|
||||
*/
|
||||
var __GLOBAL__ = {
|
||||
pushBAIDU: {}
|
||||
};
|
||||
/**
|
||||
* 暴露 Hooks
|
||||
* @description 解决 Vue 3.0 使用全局变量很麻烦的问题
|
||||
* @example
|
||||
* import { usePush } from 'vue-baidu-analytics'
|
||||
* const baidu = usePush();
|
||||
* baidu.pv('/');
|
||||
*/
|
||||
function usePush() {
|
||||
// 提交 pv
|
||||
function pv(pageUrl) {
|
||||
return __GLOBAL__.pushBAIDU.pv(pageUrl);
|
||||
}
|
||||
// 提交事件
|
||||
function event(category, action, label, value) {
|
||||
return __GLOBAL__.pushBAIDU.event(category, action, label, value);
|
||||
}
|
||||
return {
|
||||
pv: pv,
|
||||
event: event
|
||||
};
|
||||
}
|
||||
/**
|
||||
* 定义插件
|
||||
*/
|
||||
function install(Vue, _a) {
|
||||
var router = _a.router, siteIdList = _a.siteIdList, _b = _a.isDebug, isDebug = _b === void 0 ? false : _b;
|
||||
/**
|
||||
* 一些环境和参数的检查
|
||||
*/
|
||||
if (typeof document === 'undefined' || typeof window === 'undefined') {
|
||||
return false;
|
||||
}
|
||||
if (!router) {
|
||||
throw new Error('[vue-baidu-analytics] Must pass a Vue-Router instance to vue-baidu-analytics.');
|
||||
}
|
||||
if (!siteIdList) {
|
||||
throw new Error('[vue-baidu-analytics] Missing tracking domain ID, add at least one of baidu analytics siteId.');
|
||||
}
|
||||
/**
|
||||
* 挂载推送的方法
|
||||
*/
|
||||
var pushBAIDU = new PushBAIDU(siteIdList, isDebug);
|
||||
__GLOBAL__.pushBAIDU = pushBAIDU;
|
||||
/**
|
||||
* 挂载全局变量到 Vue 上
|
||||
* 获取Vue版本(获取失败则默认为2)
|
||||
*/
|
||||
var VUE_VERSION = getVueVersion(Vue) || 2;
|
||||
switch (VUE_VERSION) {
|
||||
case 2:
|
||||
Vue.prototype.$pushBAIDU = pushBAIDU;
|
||||
break;
|
||||
case 3:
|
||||
Vue.config.globalProperties.$pushBAIDU = pushBAIDU;
|
||||
break;
|
||||
}
|
||||
/**
|
||||
* 部署站点并初始化
|
||||
*/
|
||||
if (siteIdList && Array.isArray(siteIdList)) {
|
||||
pushBAIDU.init();
|
||||
}
|
||||
/**
|
||||
* 路由切换时执行PV上报
|
||||
*/
|
||||
router.afterEach(function (to) {
|
||||
// 获取要上报的链接(当前版本不需要拼接了)
|
||||
var PAGE_URL = window.location.href;
|
||||
// 上报数据
|
||||
pushBAIDU.pv(PAGE_URL);
|
||||
});
|
||||
/**
|
||||
* 初始化
|
||||
*/
|
||||
BAIDU.prototype.init = function () {
|
||||
var _a
|
||||
window._hmt = window._hmt ? window._hmt : []
|
||||
var SCRIPT = document.createElement('script')
|
||||
SCRIPT['async'] = true
|
||||
SCRIPT['src'] = 'https://hm.baidu.com/hm.js?' + this.siteId
|
||||
;(_a = document.querySelector('head')) === null || _a === void 0
|
||||
? void 0
|
||||
: _a.appendChild(SCRIPT)
|
||||
if (this.isDebug) {
|
||||
console.log(
|
||||
'[vue-baidu-analytics] siteId load done.\nsiteId: ' + this.siteId
|
||||
)
|
||||
}
|
||||
}
|
||||
/**
|
||||
* 设置要响应的站点
|
||||
*/
|
||||
BAIDU.prototype.setAccount = function () {
|
||||
window._hmt.push(['_setAccount', this.siteId])
|
||||
}
|
||||
/**
|
||||
* 提交PV、UV
|
||||
*/
|
||||
BAIDU.prototype.trackPageview = function (pageUrl) {
|
||||
// 如果页面链接没传或者无效链接,则默认为根域名
|
||||
if (!pageUrl || typeof pageUrl !== 'string') {
|
||||
pageUrl = '/'
|
||||
}
|
||||
// 如果页面链接带上了域名,则需要过滤掉
|
||||
if (pageUrl.startsWith('http')) {
|
||||
var PAGE_CUT = pageUrl.split('/')
|
||||
var HOST_NAME = PAGE_CUT[0] + '//' + PAGE_CUT[2]
|
||||
pageUrl = pageUrl.replace(HOST_NAME, '')
|
||||
}
|
||||
// 设置响应 id 并提交数据
|
||||
this.setAccount()
|
||||
window._hmt.push(['_trackPageview', pageUrl])
|
||||
if (this.isDebug) {
|
||||
console.log(
|
||||
'[vue-baidu-analytics] track pv done.\nsiteId: ' +
|
||||
this.siteId +
|
||||
'\npageUrl: ' +
|
||||
pageUrl
|
||||
)
|
||||
}
|
||||
}
|
||||
/**
|
||||
* 提交点击事件
|
||||
*/
|
||||
BAIDU.prototype.trackEvent = function (category, action, label, value) {
|
||||
// 前两个是必填项
|
||||
if (
|
||||
typeof category !== 'string' ||
|
||||
typeof action !== 'string' ||
|
||||
!category ||
|
||||
!action
|
||||
) {
|
||||
throw new Error(
|
||||
'[vue-baidu-analytics] Missing necessary category and operation information, and must be of type string.'
|
||||
)
|
||||
}
|
||||
// 重置一些无效的默认值
|
||||
if (!label || typeof label !== 'string') {
|
||||
label = ''
|
||||
}
|
||||
if (!Number(value)) {
|
||||
value = 1
|
||||
}
|
||||
// 设置响应id并提交数据
|
||||
this.setAccount()
|
||||
window._hmt.push(['_trackEvent', category, action, label, value])
|
||||
if (this.isDebug) {
|
||||
console.log(
|
||||
'[vue-baidu-analytics] track event done.\nsiteId: ' +
|
||||
this.siteId +
|
||||
'\ncategory: ' +
|
||||
category +
|
||||
'\naction: ' +
|
||||
action +
|
||||
'\nlabel: ' +
|
||||
label +
|
||||
'\nvalue: ' +
|
||||
value
|
||||
)
|
||||
}
|
||||
}
|
||||
return BAIDU
|
||||
})()
|
||||
|
||||
exports.default = install;
|
||||
exports.usePush = usePush;
|
||||
/**
|
||||
* 定义推送操作
|
||||
*/
|
||||
var PushBAIDU = /** @class */ (function () {
|
||||
function PushBAIDU(siteIdList, isDebug) {
|
||||
this.siteIdList = __spreadArray([], siteIdList)
|
||||
this.isDebug = isDebug
|
||||
}
|
||||
/**
|
||||
* 批量部署站点
|
||||
*/
|
||||
PushBAIDU.prototype.init = function () {
|
||||
var _this = this
|
||||
this.siteIdList.forEach(function (siteId) {
|
||||
var SITE = new BAIDU(siteId, _this.isDebug)
|
||||
SITE.init()
|
||||
})
|
||||
}
|
||||
/**
|
||||
* 批量提交pv上报
|
||||
*/
|
||||
PushBAIDU.prototype.pv = function (pageUrl) {
|
||||
var _this = this
|
||||
this.siteIdList.forEach(function (siteId) {
|
||||
var SITE = new BAIDU(siteId, _this.isDebug)
|
||||
SITE.trackPageview(pageUrl)
|
||||
})
|
||||
}
|
||||
/**
|
||||
* 批量提交事件上报
|
||||
*/
|
||||
PushBAIDU.prototype.event = function (category, action, label, value) {
|
||||
var _this = this
|
||||
this.siteIdList.forEach(function (siteId) {
|
||||
var SITE = new BAIDU(siteId, _this.isDebug)
|
||||
SITE.trackEvent(category, action, label, value)
|
||||
})
|
||||
}
|
||||
return PushBAIDU
|
||||
})()
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/**
|
||||
* 获取Vue的版本
|
||||
* @return 2=Vue2.x, 3=Vue3.x
|
||||
*/
|
||||
var getVueVersion = function (Vue) {
|
||||
var version = 2
|
||||
// 获取Vue的版本号
|
||||
var VUE_VERSION = String(Vue.version)
|
||||
// Vue 2.x
|
||||
if (VUE_VERSION.slice(0, 2) === '2.') {
|
||||
version = 2
|
||||
}
|
||||
// Vue 3.x
|
||||
if (VUE_VERSION.slice(0, 2) === '3.') {
|
||||
version = 3
|
||||
}
|
||||
return version
|
||||
}
|
||||
|
||||
})));
|
||||
/**
|
||||
* 全局的数据
|
||||
*/
|
||||
var __GLOBAL__ = {
|
||||
pushBAIDU: {},
|
||||
}
|
||||
/**
|
||||
* 暴露 Hooks
|
||||
* @description 解决 Vue 3.0 使用全局变量很麻烦的问题
|
||||
* @example
|
||||
* import { usePush } from 'vue-baidu-analytics'
|
||||
* const baidu = usePush();
|
||||
* baidu.pv('/');
|
||||
*/
|
||||
function usePush() {
|
||||
// 提交 pv
|
||||
function pv(pageUrl) {
|
||||
return __GLOBAL__.pushBAIDU.pv(pageUrl)
|
||||
}
|
||||
// 提交事件
|
||||
function event(category, action, label, value) {
|
||||
return __GLOBAL__.pushBAIDU.event(category, action, label, value)
|
||||
}
|
||||
return {
|
||||
pv: pv,
|
||||
event: event,
|
||||
}
|
||||
}
|
||||
/**
|
||||
* 定义插件
|
||||
*/
|
||||
function install(Vue, _a) {
|
||||
var router = _a.router,
|
||||
siteIdList = _a.siteIdList,
|
||||
_b = _a.isDebug,
|
||||
isDebug = _b === void 0 ? false : _b
|
||||
/**
|
||||
* 一些环境和参数的检查
|
||||
*/
|
||||
if (typeof document === 'undefined' || typeof window === 'undefined') return
|
||||
if (!siteIdList) {
|
||||
throw new Error(
|
||||
'[vue-baidu-analytics] Missing tracking domain ID, add at least one of baidu analytics siteId.'
|
||||
)
|
||||
}
|
||||
/**
|
||||
* 挂载推送的方法
|
||||
*/
|
||||
var pushBAIDU = new PushBAIDU(siteIdList, isDebug)
|
||||
__GLOBAL__.pushBAIDU = pushBAIDU
|
||||
/**
|
||||
* 挂载全局变量到 Vue 上
|
||||
* 获取Vue版本(获取失败则默认为2)
|
||||
*/
|
||||
var VUE_VERSION = getVueVersion(Vue) || 2
|
||||
switch (VUE_VERSION) {
|
||||
case 2:
|
||||
Vue.prototype.$pushBAIDU = pushBAIDU
|
||||
break
|
||||
case 3:
|
||||
Vue.config.globalProperties.$pushBAIDU = pushBAIDU
|
||||
break
|
||||
}
|
||||
/**
|
||||
* 部署站点并初始化
|
||||
*/
|
||||
if (siteIdList && Array.isArray(siteIdList)) {
|
||||
pushBAIDU.init()
|
||||
}
|
||||
/**
|
||||
* 路由切换时执行PV上报
|
||||
*/
|
||||
if (router) {
|
||||
router.afterEach(function () {
|
||||
// 获取要上报的链接(当前版本不需要拼接了)
|
||||
var PAGE_URL = window.location.href
|
||||
// 上报数据
|
||||
pushBAIDU.pv(PAGE_URL)
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
exports.default = install
|
||||
exports.usePush = usePush
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true })
|
||||
})
|
||||
//# sourceMappingURL=vue-baidu-analytics.js.map
|
||||
|
2
dist/vue-baidu-analytics.js.map
vendored
2
dist/vue-baidu-analytics.js.map
vendored
File diff suppressed because one or more lines are too long
169
dist/vue-baidu-analytics.min.js
vendored
169
dist/vue-baidu-analytics.min.js
vendored
@ -1,7 +1,172 @@
|
||||
/*!
|
||||
* name: vue-baidu-analytics
|
||||
* version: v2.1.0
|
||||
* version: v2.2.0
|
||||
* author: chengpeiquan
|
||||
*/
|
||||
!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports):"function"==typeof define&&define.amd?define(["exports"],e):e((t="undefined"!=typeof globalThis?globalThis:t||self).baiduAnalytics={})}(this,(function(t){"use strict";var e=function(){function t(t,e){void 0===t&&(t=""),void 0===e&&(e=!1),this.siteId=t,this.isDebug=e}return t.prototype.init=function(){var t;window._hmt=window._hmt?window._hmt:[];var e=document.createElement("script");e.async=!0,e.src="https://hm.baidu.com/hm.js?"+this.siteId,null===(t=document.querySelector("head"))||void 0===t||t.appendChild(e),this.isDebug&&console.log("[vue-baidu-analytics] siteId load done.\nsiteId: "+this.siteId)},t.prototype.setAccount=function(){window._hmt.push(["_setAccount",this.siteId])},t.prototype.trackPageview=function(t){if(t&&"string"==typeof t||(t="/"),t.includes("http")){var e=t.split("/"),i=e[0]+"//"+e[2];t=t.replace(i,"")}this.setAccount(),window._hmt.push(["_trackPageview",t]),this.isDebug&&console.log("[vue-baidu-analytics] track pv done.\nsiteId: "+this.siteId+"\npageUrl: "+t)},t.prototype.trackEvent=function(t,e,i,n){if("string"!=typeof t||"string"!=typeof e||!t||!e)throw new Error("[vue-baidu-analytics] Missing necessary category and operation information, and must be of type string.");i&&"string"==typeof i||(i=""),Number(n)||(n=1),this.setAccount(),window._hmt.push(["_trackEvent",t,e,i,n]),this.isDebug&&console.log("[vue-baidu-analytics] track event done.\nsiteId: "+this.siteId+"\ncategory: "+t+"\naction: "+e+"\nlabel: "+i+"\nvalue: "+n)},t}(),i=function(){function t(t,e){this.siteIdList=function(t,e){for(var i=0,n=e.length,o=t.length;i<n;i++,o++)t[o]=e[i];return t}([],t),this.isDebug=e}return t.prototype.init=function(){var t=this;this.siteIdList.forEach((function(i){new e(i,t.isDebug).init()}))},t.prototype.pv=function(t){var i=this;this.siteIdList.forEach((function(n){new e(n,i.isDebug).trackPageview(t)}))},t.prototype.event=function(t,i,n,o){var s=this;this.siteIdList.forEach((function(r){new e(r,s.isDebug).trackEvent(t,i,n,o)}))},t}(),n={pushBAIDU:{}};t.default=function(t,e){var o=e.router,s=e.siteIdList,r=e.isDebug,u=void 0!==r&&r;if("undefined"==typeof document||"undefined"==typeof window)return!1;if(!o)throw new Error("[vue-baidu-analytics] Must pass a Vue-Router instance to vue-baidu-analytics.");if(!s)throw new Error("[vue-baidu-analytics] Missing tracking domain ID, add at least one of baidu analytics siteId.");var a=new i(s,u);switch(n.pushBAIDU=a,function(t){var e=2,i=String(t.version);return"2."===i.slice(0,2)&&(e=2),"3."===i.slice(0,2)&&(e=3),e}(t)||2){case 2:t.prototype.$pushBAIDU=a;break;case 3:t.config.globalProperties.$pushBAIDU=a}s&&Array.isArray(s)&&a.init(),o.afterEach((function(t){var e=window.location.href;a.pv(e)}))},t.usePush=function(){return{pv:function(t){return n.pushBAIDU.pv(t)},event:function(t,e,i,o){return n.pushBAIDU.event(t,e,i,o)}}},Object.defineProperty(t,"__esModule",{value:!0})}));
|
||||
!(function (t, e) {
|
||||
'object' == typeof exports && 'undefined' != typeof module
|
||||
? e(exports)
|
||||
: 'function' == typeof define && define.amd
|
||||
? define(['exports'], e)
|
||||
: e(
|
||||
((t =
|
||||
'undefined' != typeof globalThis
|
||||
? globalThis
|
||||
: t || self).baiduAnalytics = {})
|
||||
)
|
||||
})(this, function (t) {
|
||||
'use strict'
|
||||
var e = (function () {
|
||||
function t(t, e) {
|
||||
void 0 === t && (t = ''),
|
||||
void 0 === e && (e = !1),
|
||||
(this.siteId = t),
|
||||
(this.isDebug = e)
|
||||
}
|
||||
return (
|
||||
(t.prototype.init = function () {
|
||||
var t
|
||||
window._hmt = window._hmt ? window._hmt : []
|
||||
var e = document.createElement('script')
|
||||
;(e.async = !0),
|
||||
(e.src = 'https://hm.baidu.com/hm.js?' + this.siteId),
|
||||
null === (t = document.querySelector('head')) ||
|
||||
void 0 === t ||
|
||||
t.appendChild(e),
|
||||
this.isDebug &&
|
||||
console.log(
|
||||
'[vue-baidu-analytics] siteId load done.\nsiteId: ' +
|
||||
this.siteId
|
||||
)
|
||||
}),
|
||||
(t.prototype.setAccount = function () {
|
||||
window._hmt.push(['_setAccount', this.siteId])
|
||||
}),
|
||||
(t.prototype.trackPageview = function (t) {
|
||||
if (
|
||||
((t && 'string' == typeof t) || (t = '/'), t.startsWith('http'))
|
||||
) {
|
||||
var e = t.split('/'),
|
||||
i = e[0] + '//' + e[2]
|
||||
t = t.replace(i, '')
|
||||
}
|
||||
this.setAccount(),
|
||||
window._hmt.push(['_trackPageview', t]),
|
||||
this.isDebug &&
|
||||
console.log(
|
||||
'[vue-baidu-analytics] track pv done.\nsiteId: ' +
|
||||
this.siteId +
|
||||
'\npageUrl: ' +
|
||||
t
|
||||
)
|
||||
}),
|
||||
(t.prototype.trackEvent = function (t, e, i, n) {
|
||||
if ('string' != typeof t || 'string' != typeof e || !t || !e)
|
||||
throw new Error(
|
||||
'[vue-baidu-analytics] Missing necessary category and operation information, and must be of type string.'
|
||||
)
|
||||
;(i && 'string' == typeof i) || (i = ''),
|
||||
Number(n) || (n = 1),
|
||||
this.setAccount(),
|
||||
window._hmt.push(['_trackEvent', t, e, i, n]),
|
||||
this.isDebug &&
|
||||
console.log(
|
||||
'[vue-baidu-analytics] track event done.\nsiteId: ' +
|
||||
this.siteId +
|
||||
'\ncategory: ' +
|
||||
t +
|
||||
'\naction: ' +
|
||||
e +
|
||||
'\nlabel: ' +
|
||||
i +
|
||||
'\nvalue: ' +
|
||||
n
|
||||
)
|
||||
}),
|
||||
t
|
||||
)
|
||||
})(),
|
||||
i = (function () {
|
||||
function t(t, e) {
|
||||
;(this.siteIdList = (function (t, e, i) {
|
||||
if (i || 2 === arguments.length)
|
||||
for (var n, o = 0, s = e.length; o < s; o++)
|
||||
(!n && o in e) ||
|
||||
(n || (n = Array.prototype.slice.call(e, 0, o)), (n[o] = e[o]))
|
||||
return t.concat(n || e)
|
||||
})([], t)),
|
||||
(this.isDebug = e)
|
||||
}
|
||||
return (
|
||||
(t.prototype.init = function () {
|
||||
var t = this
|
||||
this.siteIdList.forEach(function (i) {
|
||||
new e(i, t.isDebug).init()
|
||||
})
|
||||
}),
|
||||
(t.prototype.pv = function (t) {
|
||||
var i = this
|
||||
this.siteIdList.forEach(function (n) {
|
||||
new e(n, i.isDebug).trackPageview(t)
|
||||
})
|
||||
}),
|
||||
(t.prototype.event = function (t, i, n, o) {
|
||||
var s = this
|
||||
this.siteIdList.forEach(function (r) {
|
||||
new e(r, s.isDebug).trackEvent(t, i, n, o)
|
||||
})
|
||||
}),
|
||||
t
|
||||
)
|
||||
})(),
|
||||
n = { pushBAIDU: {} }
|
||||
;(t.default = function (t, e) {
|
||||
var o = e.router,
|
||||
s = e.siteIdList,
|
||||
r = e.isDebug,
|
||||
a = void 0 !== r && r
|
||||
if ('undefined' != typeof document && 'undefined' != typeof window) {
|
||||
if (!s)
|
||||
throw new Error(
|
||||
'[vue-baidu-analytics] Missing tracking domain ID, add at least one of baidu analytics siteId.'
|
||||
)
|
||||
var u = new i(s, a)
|
||||
switch (
|
||||
((n.pushBAIDU = u),
|
||||
(function (t) {
|
||||
var e = 2,
|
||||
i = String(t.version)
|
||||
return (
|
||||
'2.' === i.slice(0, 2) && (e = 2),
|
||||
'3.' === i.slice(0, 2) && (e = 3),
|
||||
e
|
||||
)
|
||||
})(t) || 2)
|
||||
) {
|
||||
case 2:
|
||||
t.prototype.$pushBAIDU = u
|
||||
break
|
||||
case 3:
|
||||
t.config.globalProperties.$pushBAIDU = u
|
||||
}
|
||||
s && Array.isArray(s) && u.init(),
|
||||
o &&
|
||||
o.afterEach(function () {
|
||||
var t = window.location.href
|
||||
u.pv(t)
|
||||
})
|
||||
}
|
||||
}),
|
||||
(t.usePush = function () {
|
||||
return {
|
||||
pv: function (t) {
|
||||
return n.pushBAIDU.pv(t)
|
||||
},
|
||||
event: function (t, e, i, o) {
|
||||
return n.pushBAIDU.event(t, e, i, o)
|
||||
},
|
||||
}
|
||||
}),
|
||||
Object.defineProperty(t, '__esModule', { value: !0 })
|
||||
})
|
||||
//# sourceMappingURL=vue-baidu-analytics.min.js.map
|
||||
|
2
dist/vue-baidu-analytics.min.js.map
vendored
2
dist/vue-baidu-analytics.min.js.map
vendored
File diff suppressed because one or more lines are too long
27
package.json
27
package.json
@ -1,11 +1,13 @@
|
||||
{
|
||||
"name": "vue-baidu-analytics",
|
||||
"version": "2.1.0",
|
||||
"version": "2.2.0",
|
||||
"description": "A data collection tool that supports reporting of single-page application data built by Vue 3.0 & 2.0 & VuePress, based on baidu statistics.",
|
||||
"main": "dist/vue-baidu-analytics.min.js",
|
||||
"types": "vue-baidu-analytics.d.ts",
|
||||
"scripts": {
|
||||
"build": "rollup -c rollup.config.ts"
|
||||
"build": "rollup -c rollup.config.ts",
|
||||
"lint": "eslint src --ext .js,.ts",
|
||||
"prettier": "prettier --write src"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
@ -40,12 +42,31 @@
|
||||
"@types/babel__core": "^7.1.9",
|
||||
"@typescript-eslint/eslint-plugin": "^4.20.0",
|
||||
"@typescript-eslint/parser": "^4.20.0",
|
||||
"chalk": "^4.1.1",
|
||||
"eslint": "^7.23.0",
|
||||
"eslint-config-prettier": "^8.3.0",
|
||||
"eslint-plugin-prettier": "^3.4.0",
|
||||
"husky": "4.2.3",
|
||||
"lint-staged": "^11.0.0",
|
||||
"prettier": "^2.3.1",
|
||||
"rollup": "^2.44.0",
|
||||
"rollup-plugin-banner2": "^1.2.2",
|
||||
"rollup-plugin-terser": "^7.0.0",
|
||||
"rollup-plugin-typescript2": "^0.30.0",
|
||||
"tslib": "^2.0.1",
|
||||
"tslib": "^2.3.0",
|
||||
"typescript": "^4.0.2"
|
||||
},
|
||||
"husky": {
|
||||
"hooks": {
|
||||
"pre-commit": "lint-staged",
|
||||
"commit-msg": "node scripts/verifyCommit.js"
|
||||
}
|
||||
},
|
||||
"lint-staged": {
|
||||
"*.{js,jsx,vue,ts,tsx}": [
|
||||
"prettier --write",
|
||||
"eslint --fix",
|
||||
"git add"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
27
scripts/verifyCommit.js
Normal file
27
scripts/verifyCommit.js
Normal file
@ -0,0 +1,27 @@
|
||||
// Invoked on the commit-msg git hook by yorkie.
|
||||
|
||||
const fs = require('fs')
|
||||
const chalk = require('chalk')
|
||||
const msgPath = process.env.HUSKY_GIT_PARAMS
|
||||
const msg = fs.readFileSync(msgPath, 'utf-8').trim()
|
||||
|
||||
const commitRE =
|
||||
/^(revert: )?(feat|fix|docs|dx|style|refactor|perf|test|workflow|build|ci|chore|types|wip|release)(\(.+\))?: .{1,50}/
|
||||
|
||||
if (!commitRE.test(msg)) {
|
||||
console.log()
|
||||
console.error(
|
||||
` ${chalk.bgRed.white(' ERROR ')} ${chalk.red(
|
||||
`invalid commit message format.`
|
||||
)}\n\n` +
|
||||
chalk.red(
|
||||
` Proper commit message format is required for automated changelog generation. Examples:\n\n`
|
||||
) +
|
||||
` ${chalk.green(`feat(compiler): add 'comments' option`)}\n` +
|
||||
` ${chalk.green(
|
||||
`fix(v-model): handle events on blur (close #28)`
|
||||
)}\n\n` +
|
||||
chalk.red(` See .github/commit-convention.md for more details.\n`)
|
||||
)
|
||||
process.exit(1)
|
||||
}
|
22
src/global.d.ts
vendored
22
src/global.d.ts
vendored
@ -1,24 +1,8 @@
|
||||
import PushBAIDU from '@m/pushBAIDU'
|
||||
/* eslint-disable no-unused-vars */
|
||||
export {}
|
||||
|
||||
declare global {
|
||||
interface Window {
|
||||
_hmt: any;
|
||||
}
|
||||
|
||||
interface Options {
|
||||
router: any;
|
||||
siteIdList: string[];
|
||||
isDebug: boolean;
|
||||
}
|
||||
|
||||
interface Vue {
|
||||
prototype: any;
|
||||
$pushBAIDU: PushBAIDU;
|
||||
version: number | string;
|
||||
config: any;
|
||||
}
|
||||
|
||||
interface To {
|
||||
fullPath: string;
|
||||
_hmt: any
|
||||
}
|
||||
}
|
||||
|
73
src/main.ts
73
src/main.ts
@ -1,11 +1,12 @@
|
||||
import PushBAIDU from '@m/pushBAIDU'
|
||||
import getVueVersion from '@m/getVueVersion'
|
||||
import type { Options, Vue } from '@/types'
|
||||
|
||||
/**
|
||||
* 全局的数据
|
||||
*/
|
||||
const __GLOBAL__ = {
|
||||
pushBAIDU: {} as PushBAIDU
|
||||
pushBAIDU: {} as PushBAIDU,
|
||||
}
|
||||
|
||||
/**
|
||||
@ -16,78 +17,84 @@ const __GLOBAL__ = {
|
||||
* const baidu = usePush();
|
||||
* baidu.pv('/');
|
||||
*/
|
||||
export function usePush () {
|
||||
export function usePush() {
|
||||
// 提交 pv
|
||||
function pv (pageUrl: string) {
|
||||
return __GLOBAL__.pushBAIDU.pv(pageUrl);
|
||||
function pv(pageUrl: string) {
|
||||
return __GLOBAL__.pushBAIDU.pv(pageUrl)
|
||||
}
|
||||
|
||||
// 提交事件
|
||||
function event (category: string, action: string, label: string, value: number) {
|
||||
return __GLOBAL__.pushBAIDU.event(category, action, label, value);
|
||||
function event(
|
||||
category: string,
|
||||
action: string,
|
||||
label: string,
|
||||
value: number
|
||||
) {
|
||||
return __GLOBAL__.pushBAIDU.event(category, action, label, value)
|
||||
}
|
||||
|
||||
return {
|
||||
pv,
|
||||
event
|
||||
event,
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 定义插件
|
||||
*/
|
||||
export default function install (Vue: Vue, { router, siteIdList, isDebug = false }: Partial<Options>) {
|
||||
|
||||
export default function install(
|
||||
Vue: Vue,
|
||||
{ router, siteIdList, isDebug = false }: Partial<Options>
|
||||
) {
|
||||
/**
|
||||
* 一些环境和参数的检查
|
||||
*/
|
||||
if ( typeof document === 'undefined' || typeof window === 'undefined' ) {
|
||||
return false;
|
||||
}
|
||||
if (typeof document === 'undefined' || typeof window === 'undefined') return
|
||||
|
||||
if ( !router ) {
|
||||
throw new Error('[vue-baidu-analytics] Must pass a Vue-Router instance to vue-baidu-analytics.');
|
||||
}
|
||||
|
||||
if ( !siteIdList ) {
|
||||
throw new Error('[vue-baidu-analytics] Missing tracking domain ID, add at least one of baidu analytics siteId.');
|
||||
if (!siteIdList) {
|
||||
throw new Error(
|
||||
'[vue-baidu-analytics] Missing tracking domain ID, add at least one of baidu analytics siteId.'
|
||||
)
|
||||
}
|
||||
|
||||
/**
|
||||
* 挂载推送的方法
|
||||
*/
|
||||
const pushBAIDU: PushBAIDU = new PushBAIDU(siteIdList, isDebug);
|
||||
__GLOBAL__.pushBAIDU = pushBAIDU;
|
||||
const pushBAIDU: PushBAIDU = new PushBAIDU(siteIdList, isDebug)
|
||||
__GLOBAL__.pushBAIDU = pushBAIDU
|
||||
|
||||
/**
|
||||
* 挂载全局变量到 Vue 上
|
||||
* 获取Vue版本(获取失败则默认为2)
|
||||
*/
|
||||
const VUE_VERSION: number = getVueVersion(Vue) || 2;
|
||||
const VUE_VERSION: number = getVueVersion(Vue) || 2
|
||||
switch (VUE_VERSION) {
|
||||
case 2:
|
||||
Vue.prototype.$pushBAIDU = pushBAIDU;
|
||||
break;
|
||||
Vue.prototype.$pushBAIDU = pushBAIDU
|
||||
break
|
||||
case 3:
|
||||
Vue.config.globalProperties.$pushBAIDU = pushBAIDU;
|
||||
break;
|
||||
Vue.config.globalProperties.$pushBAIDU = pushBAIDU
|
||||
break
|
||||
}
|
||||
|
||||
/**
|
||||
* 部署站点并初始化
|
||||
*/
|
||||
if ( siteIdList && Array.isArray(siteIdList) ) {
|
||||
pushBAIDU.init();
|
||||
if (siteIdList && Array.isArray(siteIdList)) {
|
||||
pushBAIDU.init()
|
||||
}
|
||||
|
||||
/**
|
||||
* 路由切换时执行PV上报
|
||||
* @description 自 v2.2.0 版本开始允许不强制引入路由
|
||||
*/
|
||||
router.afterEach( (to: To) => {
|
||||
// 获取要上报的链接(当前版本不需要拼接了)
|
||||
const PAGE_URL: string = window.location.href;
|
||||
if (router) {
|
||||
router.afterEach(() => {
|
||||
// 获取要上报的链接(当前版本不需要拼接了)
|
||||
const PAGE_URL: string = window.location.href
|
||||
|
||||
// 上报数据
|
||||
pushBAIDU.pv(PAGE_URL);
|
||||
});
|
||||
// 上报数据
|
||||
pushBAIDU.pv(PAGE_URL)
|
||||
})
|
||||
}
|
||||
}
|
||||
|
@ -3,87 +3,100 @@
|
||||
* 官方文档 https://tongji.baidu.com/open/api/more?p=guide_overview
|
||||
*/
|
||||
class BAIDU {
|
||||
siteId: string;
|
||||
isDebug: boolean;
|
||||
siteId: string
|
||||
isDebug: boolean
|
||||
|
||||
constructor (siteId: string = '', isDebug: boolean = false) {
|
||||
this.siteId = siteId;
|
||||
this.isDebug = isDebug;
|
||||
constructor(siteId: string = '', isDebug: boolean = false) {
|
||||
this.siteId = siteId
|
||||
this.isDebug = isDebug
|
||||
}
|
||||
|
||||
/**
|
||||
* 初始化
|
||||
*/
|
||||
init () {
|
||||
window._hmt = window._hmt ? window._hmt : [];
|
||||
const SCRIPT = document.createElement('script');
|
||||
SCRIPT['async'] = true;
|
||||
SCRIPT['src'] = `https://hm.baidu.com/hm.js?${this.siteId}`;
|
||||
document.querySelector('head')?.appendChild(SCRIPT);
|
||||
init() {
|
||||
window._hmt = window._hmt ? window._hmt : []
|
||||
const SCRIPT = document.createElement('script')
|
||||
SCRIPT['async'] = true
|
||||
SCRIPT['src'] = `https://hm.baidu.com/hm.js?${this.siteId}`
|
||||
document.querySelector('head')?.appendChild(SCRIPT)
|
||||
|
||||
if ( this.isDebug ) {
|
||||
console.log(`[vue-baidu-analytics] siteId load done.\nsiteId: ${this.siteId}`);
|
||||
if (this.isDebug) {
|
||||
console.log(
|
||||
`[vue-baidu-analytics] siteId load done.\nsiteId: ${this.siteId}`
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 设置要响应的站点
|
||||
*/
|
||||
setAccount () {
|
||||
window._hmt.push(['_setAccount', this.siteId]);
|
||||
setAccount() {
|
||||
window._hmt.push(['_setAccount', this.siteId])
|
||||
}
|
||||
|
||||
/**
|
||||
* 提交PV、UV
|
||||
*/
|
||||
trackPageview (pageUrl: string) {
|
||||
trackPageview(pageUrl: string) {
|
||||
// 如果页面链接没传或者无效链接,则默认为根域名
|
||||
if ( !pageUrl || typeof pageUrl !== 'string' ) {
|
||||
pageUrl = '/';
|
||||
if (!pageUrl || typeof pageUrl !== 'string') {
|
||||
pageUrl = '/'
|
||||
}
|
||||
|
||||
// 如果页面链接带上了域名,则需要过滤掉
|
||||
if ( pageUrl.includes('http') ) {
|
||||
const PAGE_CUT = pageUrl.split('/');
|
||||
const HOST_NAME = `${PAGE_CUT[0]}//${PAGE_CUT[2]}`;
|
||||
pageUrl = pageUrl.replace(HOST_NAME, '');
|
||||
if (pageUrl.startsWith('http')) {
|
||||
const PAGE_CUT = pageUrl.split('/')
|
||||
const HOST_NAME = `${PAGE_CUT[0]}//${PAGE_CUT[2]}`
|
||||
pageUrl = pageUrl.replace(HOST_NAME, '')
|
||||
}
|
||||
|
||||
// 设置响应 id 并提交数据
|
||||
this.setAccount();
|
||||
window._hmt.push(['_trackPageview', pageUrl]);
|
||||
this.setAccount()
|
||||
window._hmt.push(['_trackPageview', pageUrl])
|
||||
|
||||
if ( this.isDebug ) {
|
||||
console.log(`[vue-baidu-analytics] track pv done.\nsiteId: ${this.siteId}\npageUrl: ${pageUrl}`);
|
||||
if (this.isDebug) {
|
||||
console.log(
|
||||
`[vue-baidu-analytics] track pv done.\nsiteId: ${this.siteId}\npageUrl: ${pageUrl}`
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 提交点击事件
|
||||
*/
|
||||
trackEvent (category: string, action: string, label: string, value: number) {
|
||||
trackEvent(category: string, action: string, label: string, value: number) {
|
||||
// 前两个是必填项
|
||||
if ( typeof category !== 'string' || typeof action !== 'string' || !category || !action ) {
|
||||
throw new Error('[vue-baidu-analytics] Missing necessary category and operation information, and must be of type string.');
|
||||
if (
|
||||
typeof category !== 'string' ||
|
||||
typeof action !== 'string' ||
|
||||
!category ||
|
||||
!action
|
||||
) {
|
||||
throw new Error(
|
||||
'[vue-baidu-analytics] Missing necessary category and operation information, and must be of type string.'
|
||||
)
|
||||
}
|
||||
|
||||
// 重置一些无效的默认值
|
||||
if ( !label || typeof label !== 'string' ) {
|
||||
label = '';
|
||||
if (!label || typeof label !== 'string') {
|
||||
label = ''
|
||||
}
|
||||
|
||||
if ( !Number(value) ) {
|
||||
value = 1;
|
||||
if (!Number(value)) {
|
||||
value = 1
|
||||
}
|
||||
|
||||
// 设置响应id并提交数据
|
||||
this.setAccount();
|
||||
window._hmt.push(['_trackEvent', category, action, label, value]);
|
||||
this.setAccount()
|
||||
window._hmt.push(['_trackEvent', category, action, label, value])
|
||||
|
||||
if ( this.isDebug ) {
|
||||
console.log(`[vue-baidu-analytics] track event done.\nsiteId: ${this.siteId}\ncategory: ${category}\naction: ${action}\nlabel: ${label}\nvalue: ${value}`);
|
||||
if (this.isDebug) {
|
||||
console.log(
|
||||
`[vue-baidu-analytics] track event done.\nsiteId: ${this.siteId}\ncategory: ${category}\naction: ${action}\nlabel: ${label}\nvalue: ${value}`
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
export default BAIDU;
|
||||
export default BAIDU
|
||||
|
@ -1,24 +1,26 @@
|
||||
/**
|
||||
* 获取Vue的版本
|
||||
* @return 2=Vue2.x, 3=Vue3.x
|
||||
*/
|
||||
const getVueVersion = (Vue: Vue): number => {
|
||||
let version: number = 2;
|
||||
|
||||
// 获取Vue的版本号
|
||||
const VUE_VERSION: string = String(Vue.version);
|
||||
|
||||
// Vue 2.x
|
||||
if ( VUE_VERSION.slice(0, 2) === '2.' ) {
|
||||
version = 2;
|
||||
}
|
||||
|
||||
// Vue 3.x
|
||||
if ( VUE_VERSION.slice(0, 2) === '3.' ) {
|
||||
version = 3;
|
||||
}
|
||||
|
||||
return version;
|
||||
}
|
||||
|
||||
export default getVueVersion;
|
||||
import type { Vue } from '@/types'
|
||||
|
||||
/**
|
||||
* 获取Vue的版本
|
||||
* @return 2=Vue2.x, 3=Vue3.x
|
||||
*/
|
||||
const getVueVersion = (Vue: Vue): number => {
|
||||
let version: number = 2
|
||||
|
||||
// 获取Vue的版本号
|
||||
const VUE_VERSION: string = String(Vue.version)
|
||||
|
||||
// Vue 2.x
|
||||
if (VUE_VERSION.slice(0, 2) === '2.') {
|
||||
version = 2
|
||||
}
|
||||
|
||||
// Vue 3.x
|
||||
if (VUE_VERSION.slice(0, 2) === '3.') {
|
||||
version = 3
|
||||
}
|
||||
|
||||
return version
|
||||
}
|
||||
|
||||
export default getVueVersion
|
||||
|
@ -4,44 +4,43 @@ import BAIDU from '@m/baidu'
|
||||
* 定义推送操作
|
||||
*/
|
||||
class PushBAIDU {
|
||||
siteIdList: string[];
|
||||
isDebug: boolean;
|
||||
siteIdList: string[]
|
||||
isDebug: boolean
|
||||
|
||||
constructor (siteIdList: string[], isDebug: boolean) {
|
||||
this.siteIdList = [...siteIdList];
|
||||
this.isDebug = isDebug;
|
||||
constructor(siteIdList: string[], isDebug: boolean) {
|
||||
this.siteIdList = [...siteIdList]
|
||||
this.isDebug = isDebug
|
||||
}
|
||||
|
||||
/**
|
||||
* 批量部署站点
|
||||
*/
|
||||
init () {
|
||||
this.siteIdList.forEach( (siteId: string) => {
|
||||
const SITE = new BAIDU(siteId, this.isDebug);
|
||||
SITE.init();
|
||||
});
|
||||
init() {
|
||||
this.siteIdList.forEach((siteId: string) => {
|
||||
const SITE = new BAIDU(siteId, this.isDebug)
|
||||
SITE.init()
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* 批量提交pv上报
|
||||
*/
|
||||
pv (pageUrl: string) {
|
||||
this.siteIdList.forEach( (siteId: string) => {
|
||||
const SITE = new BAIDU(siteId, this.isDebug);
|
||||
SITE.trackPageview(pageUrl);
|
||||
});
|
||||
pv(pageUrl: string) {
|
||||
this.siteIdList.forEach((siteId: string) => {
|
||||
const SITE = new BAIDU(siteId, this.isDebug)
|
||||
SITE.trackPageview(pageUrl)
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* 批量提交事件上报
|
||||
*/
|
||||
event (category: string, action: string, label: string, value: number) {
|
||||
this.siteIdList.forEach( (siteId: string) => {
|
||||
const SITE = new BAIDU(siteId, this.isDebug);
|
||||
SITE.trackEvent(category, action, label, value);
|
||||
});
|
||||
event(category: string, action: string, label: string, value: number) {
|
||||
this.siteIdList.forEach((siteId: string) => {
|
||||
const SITE = new BAIDU(siteId, this.isDebug)
|
||||
SITE.trackEvent(category, action, label, value)
|
||||
})
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
export default PushBAIDU;
|
||||
export default PushBAIDU
|
||||
|
14
src/types.ts
Normal file
14
src/types.ts
Normal file
@ -0,0 +1,14 @@
|
||||
import PushBAIDU from '@m/pushBAIDU'
|
||||
|
||||
export interface Options {
|
||||
router: any
|
||||
siteIdList: string[]
|
||||
isDebug: boolean
|
||||
}
|
||||
|
||||
export interface Vue {
|
||||
prototype: any
|
||||
$pushBAIDU: PushBAIDU
|
||||
version: number | string
|
||||
config: any
|
||||
}
|
485
yarn.lock
485
yarn.lock
@ -9,6 +9,13 @@
|
||||
dependencies:
|
||||
"@babel/highlight" "^7.10.4"
|
||||
|
||||
"@babel/code-frame@^7.0.0":
|
||||
version "7.14.5"
|
||||
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.14.5.tgz#23b08d740e83f49c5e59945fbf1b43e80bbf4edb"
|
||||
integrity sha512-9pzDqyc6OLDaqe+zbACgFkb6fKMNG6CObKpnYXChRsvYGyEdc7CA2BaqeOM+vOtCS5ndmJicPJhKAwYRI6UfFw==
|
||||
dependencies:
|
||||
"@babel/highlight" "^7.14.5"
|
||||
|
||||
"@babel/code-frame@^7.10.4", "@babel/code-frame@^7.12.13":
|
||||
version "7.12.13"
|
||||
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.13.tgz#dcfc826beef65e75c50e21d3837d7d95798dd658"
|
||||
@ -225,6 +232,11 @@
|
||||
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz#c9a1f021917dcb5ccf0d4e453e399022981fc9ed"
|
||||
integrity sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==
|
||||
|
||||
"@babel/helper-validator-identifier@^7.14.5":
|
||||
version "7.14.5"
|
||||
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.5.tgz#d0f0e277c512e0c938277faa85a3968c9a44c0e8"
|
||||
integrity sha512-5lsetuxCLilmVGyiLEfoHBRX8UCFD+1m2x3Rj97WrW3V7H3u4RWRXA4evMjImCsin2J2YT0QaVDGf+z8ondbAg==
|
||||
|
||||
"@babel/helper-validator-option@^7.12.17":
|
||||
version "7.12.17"
|
||||
resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.12.17.tgz#d1fbf012e1a79b7eebbfdc6d270baaf8d9eb9831"
|
||||
@ -258,6 +270,15 @@
|
||||
chalk "^2.0.0"
|
||||
js-tokens "^4.0.0"
|
||||
|
||||
"@babel/highlight@^7.14.5":
|
||||
version "7.14.5"
|
||||
resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.14.5.tgz#6861a52f03966405001f6aa534a01a24d99e8cd9"
|
||||
integrity sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==
|
||||
dependencies:
|
||||
"@babel/helper-validator-identifier" "^7.14.5"
|
||||
chalk "^2.0.0"
|
||||
js-tokens "^4.0.0"
|
||||
|
||||
"@babel/parser@^7.1.0", "@babel/parser@^7.12.13", "@babel/parser@^7.13.13":
|
||||
version "7.13.13"
|
||||
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.13.13.tgz#42f03862f4aed50461e543270916b47dd501f0df"
|
||||
@ -1009,6 +1030,11 @@
|
||||
resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.37.tgz#a3dd8da4eb84a996c36e331df98d82abd76b516e"
|
||||
integrity sha512-XYmBiy+ohOR4Lh5jE379fV2IU+6Jn4g5qASinhitfyO71b/sCo6MKsMLF5tc7Zf2CE8hViVQyYSobJNke8OvUw==
|
||||
|
||||
"@types/parse-json@^4.0.0":
|
||||
version "4.0.0"
|
||||
resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0"
|
||||
integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==
|
||||
|
||||
"@types/resolve@1.17.1":
|
||||
version "1.17.1"
|
||||
resolved "https://registry.yarnpkg.com/@types/resolve/-/resolve-1.17.1.tgz#3afd6ad8967c77e4376c598a82ddd58f46ec45d6"
|
||||
@ -1096,6 +1122,14 @@ acorn@^7.4.0:
|
||||
resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa"
|
||||
integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==
|
||||
|
||||
aggregate-error@^3.0.0:
|
||||
version "3.1.0"
|
||||
resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a"
|
||||
integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==
|
||||
dependencies:
|
||||
clean-stack "^2.0.0"
|
||||
indent-string "^4.0.0"
|
||||
|
||||
ajv@^6.10.0, ajv@^6.12.4:
|
||||
version "6.12.6"
|
||||
resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4"
|
||||
@ -1121,6 +1155,13 @@ ansi-colors@^4.1.1:
|
||||
resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348"
|
||||
integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==
|
||||
|
||||
ansi-escapes@^4.3.0:
|
||||
version "4.3.2"
|
||||
resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e"
|
||||
integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==
|
||||
dependencies:
|
||||
type-fest "^0.21.3"
|
||||
|
||||
ansi-regex@^5.0.0:
|
||||
version "5.0.0"
|
||||
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75"
|
||||
@ -1256,6 +1297,14 @@ chalk@^2.0.0:
|
||||
escape-string-regexp "^1.0.5"
|
||||
supports-color "^5.3.0"
|
||||
|
||||
chalk@^3.0.0:
|
||||
version "3.0.0"
|
||||
resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4"
|
||||
integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==
|
||||
dependencies:
|
||||
ansi-styles "^4.1.0"
|
||||
supports-color "^7.1.0"
|
||||
|
||||
chalk@^4.0.0:
|
||||
version "4.1.0"
|
||||
resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a"
|
||||
@ -1264,6 +1313,39 @@ chalk@^4.0.0:
|
||||
ansi-styles "^4.1.0"
|
||||
supports-color "^7.1.0"
|
||||
|
||||
chalk@^4.1.0, chalk@^4.1.1:
|
||||
version "4.1.1"
|
||||
resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.1.tgz#c80b3fab28bf6371e6863325eee67e618b77e6ad"
|
||||
integrity sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==
|
||||
dependencies:
|
||||
ansi-styles "^4.1.0"
|
||||
supports-color "^7.1.0"
|
||||
|
||||
ci-info@^2.0.0:
|
||||
version "2.0.0"
|
||||
resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46"
|
||||
integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==
|
||||
|
||||
clean-stack@^2.0.0:
|
||||
version "2.2.0"
|
||||
resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b"
|
||||
integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==
|
||||
|
||||
cli-cursor@^3.1.0:
|
||||
version "3.1.0"
|
||||
resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307"
|
||||
integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==
|
||||
dependencies:
|
||||
restore-cursor "^3.1.0"
|
||||
|
||||
cli-truncate@^2.1.0:
|
||||
version "2.1.0"
|
||||
resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-2.1.0.tgz#c39e28bf05edcde5be3b98992a22deed5a2b93c7"
|
||||
integrity sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==
|
||||
dependencies:
|
||||
slice-ansi "^3.0.0"
|
||||
string-width "^4.2.0"
|
||||
|
||||
color-convert@^1.9.0:
|
||||
version "1.9.3"
|
||||
resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
|
||||
@ -1298,11 +1380,21 @@ commander@^2.20.0:
|
||||
resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"
|
||||
integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==
|
||||
|
||||
commander@^7.2.0:
|
||||
version "7.2.0"
|
||||
resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7"
|
||||
integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==
|
||||
|
||||
commondir@^1.0.1:
|
||||
version "1.0.1"
|
||||
resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
|
||||
integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=
|
||||
|
||||
compare-versions@^3.5.1:
|
||||
version "3.6.0"
|
||||
resolved "https://registry.yarnpkg.com/compare-versions/-/compare-versions-3.6.0.tgz#1a5689913685e5a87637b8d3ffca75514ec41d62"
|
||||
integrity sha512-W6Af2Iw1z4CB7q4uU4hv646dW9GQuBM+YpC0UvUCWSD8w90SJjp+ujJuXaEMtAXBtSqGfMPuFOVn4/+FlaqfBA==
|
||||
|
||||
concat-map@0.0.1:
|
||||
version "0.0.1"
|
||||
resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
|
||||
@ -1323,7 +1415,29 @@ core-js-compat@^3.8.1, core-js-compat@^3.9.0:
|
||||
browserslist "^4.16.3"
|
||||
semver "7.0.0"
|
||||
|
||||
cross-spawn@^7.0.2:
|
||||
cosmiconfig@^6.0.0:
|
||||
version "6.0.0"
|
||||
resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982"
|
||||
integrity sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==
|
||||
dependencies:
|
||||
"@types/parse-json" "^4.0.0"
|
||||
import-fresh "^3.1.0"
|
||||
parse-json "^5.0.0"
|
||||
path-type "^4.0.0"
|
||||
yaml "^1.7.2"
|
||||
|
||||
cosmiconfig@^7.0.0:
|
||||
version "7.0.0"
|
||||
resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.0.0.tgz#ef9b44d773959cae63ddecd122de23853b60f8d3"
|
||||
integrity sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==
|
||||
dependencies:
|
||||
"@types/parse-json" "^4.0.0"
|
||||
import-fresh "^3.2.1"
|
||||
parse-json "^5.0.0"
|
||||
path-type "^4.0.0"
|
||||
yaml "^1.10.0"
|
||||
|
||||
cross-spawn@^7.0.2, cross-spawn@^7.0.3:
|
||||
version "7.0.3"
|
||||
resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
|
||||
integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
|
||||
@ -1332,13 +1446,18 @@ cross-spawn@^7.0.2:
|
||||
shebang-command "^2.0.0"
|
||||
which "^2.0.1"
|
||||
|
||||
debug@^4.0.1, debug@^4.1.0, debug@^4.1.1:
|
||||
debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1:
|
||||
version "4.3.1"
|
||||
resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee"
|
||||
integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==
|
||||
dependencies:
|
||||
ms "2.1.2"
|
||||
|
||||
dedent@^0.7.0:
|
||||
version "0.7.0"
|
||||
resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c"
|
||||
integrity sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=
|
||||
|
||||
deep-is@^0.1.3:
|
||||
version "0.1.3"
|
||||
resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
|
||||
@ -1380,13 +1499,20 @@ emoji-regex@^8.0.0:
|
||||
resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
|
||||
integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
|
||||
|
||||
enquirer@^2.3.5:
|
||||
enquirer@^2.3.5, enquirer@^2.3.6:
|
||||
version "2.3.6"
|
||||
resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d"
|
||||
integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==
|
||||
dependencies:
|
||||
ansi-colors "^4.1.1"
|
||||
|
||||
error-ex@^1.3.1:
|
||||
version "1.3.2"
|
||||
resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
|
||||
integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==
|
||||
dependencies:
|
||||
is-arrayish "^0.2.1"
|
||||
|
||||
escalade@^3.1.1:
|
||||
version "3.1.1"
|
||||
resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40"
|
||||
@ -1397,6 +1523,18 @@ escape-string-regexp@^1.0.5:
|
||||
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
|
||||
integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
|
||||
|
||||
eslint-config-prettier@^8.3.0:
|
||||
version "8.3.0"
|
||||
resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.3.0.tgz#f7471b20b6fe8a9a9254cc684454202886a2dd7a"
|
||||
integrity sha512-BgZuLUSeKzvlL/VUjx/Yb787VQ26RU3gGjA3iiFvdsp/2bMfVIWUVP7tjxtjS0e+HP409cPlPvNkQloz8C91ew==
|
||||
|
||||
eslint-plugin-prettier@^3.4.0:
|
||||
version "3.4.0"
|
||||
resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-3.4.0.tgz#cdbad3bf1dbd2b177e9825737fe63b476a08f0c7"
|
||||
integrity sha512-UDK6rJT6INSfcOo545jiaOwB701uAIt2/dR7WnFQoGCVl1/EMqdANBmwUaqqQ45aXprsTGzSa39LI1PyuRBxxw==
|
||||
dependencies:
|
||||
prettier-linter-helpers "^1.0.0"
|
||||
|
||||
eslint-scope@^5.0.0, eslint-scope@^5.1.1:
|
||||
version "5.1.1"
|
||||
resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c"
|
||||
@ -1518,11 +1656,31 @@ esutils@^2.0.2:
|
||||
resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
|
||||
integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
|
||||
|
||||
execa@^5.0.0:
|
||||
version "5.1.1"
|
||||
resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd"
|
||||
integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==
|
||||
dependencies:
|
||||
cross-spawn "^7.0.3"
|
||||
get-stream "^6.0.0"
|
||||
human-signals "^2.1.0"
|
||||
is-stream "^2.0.0"
|
||||
merge-stream "^2.0.0"
|
||||
npm-run-path "^4.0.1"
|
||||
onetime "^5.1.2"
|
||||
signal-exit "^3.0.3"
|
||||
strip-final-newline "^2.0.0"
|
||||
|
||||
fast-deep-equal@^3.1.1:
|
||||
version "3.1.3"
|
||||
resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
|
||||
integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
|
||||
|
||||
fast-diff@^1.1.2:
|
||||
version "1.2.0"
|
||||
resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03"
|
||||
integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==
|
||||
|
||||
fast-glob@^3.1.1:
|
||||
version "3.2.5"
|
||||
resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.5.tgz#7939af2a656de79a4f1901903ee8adcaa7cb9661"
|
||||
@ -1583,6 +1741,13 @@ find-up@^4.0.0:
|
||||
locate-path "^5.0.0"
|
||||
path-exists "^4.0.0"
|
||||
|
||||
find-versions@^3.2.0:
|
||||
version "3.2.0"
|
||||
resolved "https://registry.yarnpkg.com/find-versions/-/find-versions-3.2.0.tgz#10297f98030a786829681690545ef659ed1d254e"
|
||||
integrity sha512-P8WRou2S+oe222TOCHitLy8zj+SIsVJh52VP4lvXkaFVnOFFdoWv1H1Jjvel1aI6NCFOAaeAVm8qrI0odiLcww==
|
||||
dependencies:
|
||||
semver-regex "^2.0.0"
|
||||
|
||||
flat-cache@^3.0.4:
|
||||
version "3.0.4"
|
||||
resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11"
|
||||
@ -1639,6 +1804,16 @@ get-intrinsic@^1.0.2:
|
||||
has "^1.0.3"
|
||||
has-symbols "^1.0.1"
|
||||
|
||||
get-own-enumerable-property-symbols@^3.0.0:
|
||||
version "3.0.2"
|
||||
resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz#b5fde77f22cbe35f390b4e089922c50bce6ef664"
|
||||
integrity sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==
|
||||
|
||||
get-stream@^6.0.0:
|
||||
version "6.0.1"
|
||||
resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7"
|
||||
integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==
|
||||
|
||||
glob-parent@^5.0.0, glob-parent@^5.1.0:
|
||||
version "5.1.2"
|
||||
resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
|
||||
@ -1716,6 +1891,27 @@ has@^1.0.3:
|
||||
dependencies:
|
||||
function-bind "^1.1.1"
|
||||
|
||||
human-signals@^2.1.0:
|
||||
version "2.1.0"
|
||||
resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0"
|
||||
integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==
|
||||
|
||||
husky@4.2.3:
|
||||
version "4.2.3"
|
||||
resolved "https://registry.yarnpkg.com/husky/-/husky-4.2.3.tgz#3b18d2ee5febe99e27f2983500202daffbc3151e"
|
||||
integrity sha512-VxTsSTRwYveKXN4SaH1/FefRJYCtx+wx04sSVcOpD7N2zjoHxa+cEJ07Qg5NmV3HAK+IRKOyNVpi2YBIVccIfQ==
|
||||
dependencies:
|
||||
chalk "^3.0.0"
|
||||
ci-info "^2.0.0"
|
||||
compare-versions "^3.5.1"
|
||||
cosmiconfig "^6.0.0"
|
||||
find-versions "^3.2.0"
|
||||
opencollective-postinstall "^2.0.2"
|
||||
pkg-dir "^4.2.0"
|
||||
please-upgrade-node "^3.2.0"
|
||||
slash "^3.0.0"
|
||||
which-pm-runs "^1.0.0"
|
||||
|
||||
ignore@^4.0.6:
|
||||
version "4.0.6"
|
||||
resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc"
|
||||
@ -1726,7 +1922,7 @@ ignore@^5.1.4:
|
||||
resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.8.tgz#f150a8b50a34289b33e22f5889abd4d8016f0e57"
|
||||
integrity sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==
|
||||
|
||||
import-fresh@^3.0.0, import-fresh@^3.2.1:
|
||||
import-fresh@^3.0.0, import-fresh@^3.1.0, import-fresh@^3.2.1:
|
||||
version "3.3.0"
|
||||
resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b"
|
||||
integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==
|
||||
@ -1739,6 +1935,11 @@ imurmurhash@^0.1.4:
|
||||
resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
|
||||
integrity sha1-khi5srkoojixPcT7a21XbyMUU+o=
|
||||
|
||||
indent-string@^4.0.0:
|
||||
version "4.0.0"
|
||||
resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251"
|
||||
integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==
|
||||
|
||||
inflight@^1.0.4:
|
||||
version "1.0.6"
|
||||
resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
|
||||
@ -1752,6 +1953,11 @@ inherits@2:
|
||||
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
|
||||
integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
|
||||
|
||||
is-arrayish@^0.2.1:
|
||||
version "0.2.1"
|
||||
resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
|
||||
integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=
|
||||
|
||||
is-boolean-object@^1.1.0:
|
||||
version "1.1.0"
|
||||
resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.0.tgz#e2aaad3a3a8fca34c28f6eee135b156ed2587ff0"
|
||||
@ -1798,6 +2004,11 @@ is-number@^7.0.0:
|
||||
resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
|
||||
integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
|
||||
|
||||
is-obj@^1.0.1:
|
||||
version "1.0.1"
|
||||
resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f"
|
||||
integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8=
|
||||
|
||||
is-reference@^1.2.1:
|
||||
version "1.2.1"
|
||||
resolved "https://registry.yarnpkg.com/is-reference/-/is-reference-1.2.1.tgz#8b2dac0b371f4bc994fdeaba9eb542d03002d0b7"
|
||||
@ -1805,11 +2016,26 @@ is-reference@^1.2.1:
|
||||
dependencies:
|
||||
"@types/estree" "*"
|
||||
|
||||
is-regexp@^1.0.0:
|
||||
version "1.0.0"
|
||||
resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069"
|
||||
integrity sha1-/S2INUXEa6xaYz57mgnof6LLUGk=
|
||||
|
||||
is-stream@^2.0.0:
|
||||
version "2.0.0"
|
||||
resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3"
|
||||
integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==
|
||||
|
||||
is-string@^1.0.5:
|
||||
version "1.0.5"
|
||||
resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.5.tgz#40493ed198ef3ff477b8c7f92f644ec82a5cd3a6"
|
||||
integrity sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==
|
||||
|
||||
is-unicode-supported@^0.1.0:
|
||||
version "0.1.0"
|
||||
resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7"
|
||||
integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==
|
||||
|
||||
isexe@^2.0.0:
|
||||
version "2.0.0"
|
||||
resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
|
||||
@ -1847,6 +2073,11 @@ jsesc@~0.5.0:
|
||||
resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
|
||||
integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=
|
||||
|
||||
json-parse-even-better-errors@^2.3.0:
|
||||
version "2.3.1"
|
||||
resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d"
|
||||
integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==
|
||||
|
||||
json-schema-traverse@^0.4.1:
|
||||
version "0.4.1"
|
||||
resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
|
||||
@ -1884,6 +2115,45 @@ levn@^0.4.1:
|
||||
prelude-ls "^1.2.1"
|
||||
type-check "~0.4.0"
|
||||
|
||||
lines-and-columns@^1.1.6:
|
||||
version "1.1.6"
|
||||
resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00"
|
||||
integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=
|
||||
|
||||
lint-staged@^11.0.0:
|
||||
version "11.0.0"
|
||||
resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-11.0.0.tgz#24d0a95aa316ba28e257f5c4613369a75a10c712"
|
||||
integrity sha512-3rsRIoyaE8IphSUtO1RVTFl1e0SLBtxxUOPBtHxQgBHS5/i6nqvjcUfNioMa4BU9yGnPzbO+xkfLtXtxBpCzjw==
|
||||
dependencies:
|
||||
chalk "^4.1.1"
|
||||
cli-truncate "^2.1.0"
|
||||
commander "^7.2.0"
|
||||
cosmiconfig "^7.0.0"
|
||||
debug "^4.3.1"
|
||||
dedent "^0.7.0"
|
||||
enquirer "^2.3.6"
|
||||
execa "^5.0.0"
|
||||
listr2 "^3.8.2"
|
||||
log-symbols "^4.1.0"
|
||||
micromatch "^4.0.4"
|
||||
normalize-path "^3.0.0"
|
||||
please-upgrade-node "^3.2.0"
|
||||
string-argv "0.3.1"
|
||||
stringify-object "^3.3.0"
|
||||
|
||||
listr2@^3.8.2:
|
||||
version "3.10.0"
|
||||
resolved "https://registry.yarnpkg.com/listr2/-/listr2-3.10.0.tgz#58105a53ed7fa1430d1b738c6055ef7bb006160f"
|
||||
integrity sha512-eP40ZHihu70sSmqFNbNy2NL1YwImmlMmPh9WO5sLmPDleurMHt3n+SwEWNu2kzKScexZnkyFtc1VI0z/TGlmpw==
|
||||
dependencies:
|
||||
cli-truncate "^2.1.0"
|
||||
colorette "^1.2.2"
|
||||
log-update "^4.0.0"
|
||||
p-map "^4.0.0"
|
||||
rxjs "^6.6.7"
|
||||
through "^2.3.8"
|
||||
wrap-ansi "^7.0.0"
|
||||
|
||||
locate-path@^5.0.0:
|
||||
version "5.0.0"
|
||||
resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0"
|
||||
@ -1916,6 +2186,24 @@ lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.21:
|
||||
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
|
||||
integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
|
||||
|
||||
log-symbols@^4.1.0:
|
||||
version "4.1.0"
|
||||
resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503"
|
||||
integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==
|
||||
dependencies:
|
||||
chalk "^4.1.0"
|
||||
is-unicode-supported "^0.1.0"
|
||||
|
||||
log-update@^4.0.0:
|
||||
version "4.0.0"
|
||||
resolved "https://registry.yarnpkg.com/log-update/-/log-update-4.0.0.tgz#589ecd352471f2a1c0c570287543a64dfd20e0a1"
|
||||
integrity sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==
|
||||
dependencies:
|
||||
ansi-escapes "^4.3.0"
|
||||
cli-cursor "^3.1.0"
|
||||
slice-ansi "^4.0.0"
|
||||
wrap-ansi "^6.2.0"
|
||||
|
||||
lru-cache@^6.0.0:
|
||||
version "6.0.0"
|
||||
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"
|
||||
@ -1955,6 +2243,19 @@ micromatch@^4.0.2:
|
||||
braces "^3.0.1"
|
||||
picomatch "^2.0.5"
|
||||
|
||||
micromatch@^4.0.4:
|
||||
version "4.0.4"
|
||||
resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9"
|
||||
integrity sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==
|
||||
dependencies:
|
||||
braces "^3.0.1"
|
||||
picomatch "^2.2.3"
|
||||
|
||||
mimic-fn@^2.1.0:
|
||||
version "2.1.0"
|
||||
resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b"
|
||||
integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==
|
||||
|
||||
minimatch@^3.0.4:
|
||||
version "3.0.4"
|
||||
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
|
||||
@ -1982,6 +2283,18 @@ node-releases@^1.1.71:
|
||||
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.72.tgz#14802ab6b1039a79a0c7d662b610a5bbd76eacbe"
|
||||
integrity sha512-LLUo+PpH3dU6XizX3iVoubUNheF/owjXCZZ5yACDxNnPtgFuludV1ZL3ayK1kVep42Rmm0+R9/Y60NQbZ2bifw==
|
||||
|
||||
normalize-path@^3.0.0:
|
||||
version "3.0.0"
|
||||
resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
|
||||
integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
|
||||
|
||||
npm-run-path@^4.0.1:
|
||||
version "4.0.1"
|
||||
resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea"
|
||||
integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==
|
||||
dependencies:
|
||||
path-key "^3.0.0"
|
||||
|
||||
object-keys@^1.0.12, object-keys@^1.1.1:
|
||||
version "1.1.1"
|
||||
resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
|
||||
@ -2004,6 +2317,18 @@ once@^1.3.0:
|
||||
dependencies:
|
||||
wrappy "1"
|
||||
|
||||
onetime@^5.1.0, onetime@^5.1.2:
|
||||
version "5.1.2"
|
||||
resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e"
|
||||
integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==
|
||||
dependencies:
|
||||
mimic-fn "^2.1.0"
|
||||
|
||||
opencollective-postinstall@^2.0.2:
|
||||
version "2.0.3"
|
||||
resolved "https://registry.yarnpkg.com/opencollective-postinstall/-/opencollective-postinstall-2.0.3.tgz#7a0fff978f6dbfa4d006238fbac98ed4198c3259"
|
||||
integrity sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q==
|
||||
|
||||
optionator@^0.9.1:
|
||||
version "0.9.1"
|
||||
resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499"
|
||||
@ -2030,6 +2355,13 @@ p-locate@^4.1.0:
|
||||
dependencies:
|
||||
p-limit "^2.2.0"
|
||||
|
||||
p-map@^4.0.0:
|
||||
version "4.0.0"
|
||||
resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b"
|
||||
integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==
|
||||
dependencies:
|
||||
aggregate-error "^3.0.0"
|
||||
|
||||
p-try@^2.0.0:
|
||||
version "2.2.0"
|
||||
resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
|
||||
@ -2042,6 +2374,16 @@ parent-module@^1.0.0:
|
||||
dependencies:
|
||||
callsites "^3.0.0"
|
||||
|
||||
parse-json@^5.0.0:
|
||||
version "5.2.0"
|
||||
resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd"
|
||||
integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==
|
||||
dependencies:
|
||||
"@babel/code-frame" "^7.0.0"
|
||||
error-ex "^1.3.1"
|
||||
json-parse-even-better-errors "^2.3.0"
|
||||
lines-and-columns "^1.1.6"
|
||||
|
||||
path-exists@^4.0.0:
|
||||
version "4.0.0"
|
||||
resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3"
|
||||
@ -2052,7 +2394,7 @@ path-is-absolute@^1.0.0:
|
||||
resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
|
||||
integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18=
|
||||
|
||||
path-key@^3.1.0:
|
||||
path-key@^3.0.0, path-key@^3.1.0:
|
||||
version "3.1.1"
|
||||
resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375"
|
||||
integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
|
||||
@ -2072,18 +2414,42 @@ picomatch@^2.0.5, picomatch@^2.2.1, picomatch@^2.2.2:
|
||||
resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad"
|
||||
integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==
|
||||
|
||||
pkg-dir@^4.1.0:
|
||||
picomatch@^2.2.3:
|
||||
version "2.3.0"
|
||||
resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.0.tgz#f1f061de8f6a4bf022892e2d128234fb98302972"
|
||||
integrity sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==
|
||||
|
||||
pkg-dir@^4.1.0, pkg-dir@^4.2.0:
|
||||
version "4.2.0"
|
||||
resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3"
|
||||
integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==
|
||||
dependencies:
|
||||
find-up "^4.0.0"
|
||||
|
||||
please-upgrade-node@^3.2.0:
|
||||
version "3.2.0"
|
||||
resolved "https://registry.yarnpkg.com/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz#aeddd3f994c933e4ad98b99d9a556efa0e2fe942"
|
||||
integrity sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==
|
||||
dependencies:
|
||||
semver-compare "^1.0.0"
|
||||
|
||||
prelude-ls@^1.2.1:
|
||||
version "1.2.1"
|
||||
resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396"
|
||||
integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==
|
||||
|
||||
prettier-linter-helpers@^1.0.0:
|
||||
version "1.0.0"
|
||||
resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b"
|
||||
integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==
|
||||
dependencies:
|
||||
fast-diff "^1.1.2"
|
||||
|
||||
prettier@^2.3.1:
|
||||
version "2.3.1"
|
||||
resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.3.1.tgz#76903c3f8c4449bc9ac597acefa24dc5ad4cbea6"
|
||||
integrity sha512-p+vNbgpLjif/+D+DwAZAbndtRrR0md0MwfmOVN9N+2RgyACMT+7tfaRnT+WDPkqnuVwleyuBIG2XBxKDme3hPA==
|
||||
|
||||
progress@^2.0.0:
|
||||
version "2.0.3"
|
||||
resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8"
|
||||
@ -2177,6 +2543,14 @@ resolve@1.20.0, resolve@^1.14.2, resolve@^1.17.0:
|
||||
is-core-module "^2.2.0"
|
||||
path-parse "^1.0.6"
|
||||
|
||||
restore-cursor@^3.1.0:
|
||||
version "3.1.0"
|
||||
resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e"
|
||||
integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==
|
||||
dependencies:
|
||||
onetime "^5.1.0"
|
||||
signal-exit "^3.0.2"
|
||||
|
||||
reusify@^1.0.4:
|
||||
version "1.0.4"
|
||||
resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76"
|
||||
@ -2231,6 +2605,13 @@ run-parallel@^1.1.9:
|
||||
dependencies:
|
||||
queue-microtask "^1.2.2"
|
||||
|
||||
rxjs@^6.6.7:
|
||||
version "6.6.7"
|
||||
resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.7.tgz#90ac018acabf491bf65044235d5863c4dab804c9"
|
||||
integrity sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==
|
||||
dependencies:
|
||||
tslib "^1.9.0"
|
||||
|
||||
safe-buffer@^5.1.0:
|
||||
version "5.2.1"
|
||||
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6"
|
||||
@ -2241,6 +2622,16 @@ safe-buffer@~5.1.1:
|
||||
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
|
||||
integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
|
||||
|
||||
semver-compare@^1.0.0:
|
||||
version "1.0.0"
|
||||
resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc"
|
||||
integrity sha1-De4hahyUGrN+nvsXiPavxf9VN/w=
|
||||
|
||||
semver-regex@^2.0.0:
|
||||
version "2.0.0"
|
||||
resolved "https://registry.yarnpkg.com/semver-regex/-/semver-regex-2.0.0.tgz#a93c2c5844539a770233379107b38c7b4ac9d338"
|
||||
integrity sha512-mUdIBBvdn0PLOeP3TEkMH7HHeUP3GjsXCwKarjv/kGmUFOYg1VqEemKhoQpWMu6X2I8kHeuVdGibLGkVK+/5Qw==
|
||||
|
||||
semver@7.0.0:
|
||||
version "7.0.0"
|
||||
resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e"
|
||||
@ -2277,11 +2668,25 @@ shebang-regex@^3.0.0:
|
||||
resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172"
|
||||
integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
|
||||
|
||||
signal-exit@^3.0.2, signal-exit@^3.0.3:
|
||||
version "3.0.3"
|
||||
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c"
|
||||
integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==
|
||||
|
||||
slash@^3.0.0:
|
||||
version "3.0.0"
|
||||
resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634"
|
||||
integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
|
||||
|
||||
slice-ansi@^3.0.0:
|
||||
version "3.0.0"
|
||||
resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-3.0.0.tgz#31ddc10930a1b7e0b67b08c96c2f49b77a789787"
|
||||
integrity sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==
|
||||
dependencies:
|
||||
ansi-styles "^4.0.0"
|
||||
astral-regex "^2.0.0"
|
||||
is-fullwidth-code-point "^3.0.0"
|
||||
|
||||
slice-ansi@^4.0.0:
|
||||
version "4.0.0"
|
||||
resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b"
|
||||
@ -2324,7 +2729,12 @@ sprintf-js@~1.0.2:
|
||||
resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
|
||||
integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=
|
||||
|
||||
string-width@^4.2.0:
|
||||
string-argv@0.3.1:
|
||||
version "0.3.1"
|
||||
resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.1.tgz#95e2fbec0427ae19184935f816d74aaa4c5c19da"
|
||||
integrity sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==
|
||||
|
||||
string-width@^4.1.0, string-width@^4.2.0:
|
||||
version "4.2.2"
|
||||
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.2.tgz#dafd4f9559a7585cfba529c6a0a4f73488ebd4c5"
|
||||
integrity sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==
|
||||
@ -2333,6 +2743,15 @@ string-width@^4.2.0:
|
||||
is-fullwidth-code-point "^3.0.0"
|
||||
strip-ansi "^6.0.0"
|
||||
|
||||
stringify-object@^3.3.0:
|
||||
version "3.3.0"
|
||||
resolved "https://registry.yarnpkg.com/stringify-object/-/stringify-object-3.3.0.tgz#703065aefca19300d3ce88af4f5b3956d7556629"
|
||||
integrity sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==
|
||||
dependencies:
|
||||
get-own-enumerable-property-symbols "^3.0.0"
|
||||
is-obj "^1.0.1"
|
||||
is-regexp "^1.0.0"
|
||||
|
||||
strip-ansi@^6.0.0:
|
||||
version "6.0.0"
|
||||
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532"
|
||||
@ -2340,6 +2759,11 @@ strip-ansi@^6.0.0:
|
||||
dependencies:
|
||||
ansi-regex "^5.0.0"
|
||||
|
||||
strip-final-newline@^2.0.0:
|
||||
version "2.0.0"
|
||||
resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad"
|
||||
integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==
|
||||
|
||||
strip-json-comments@^3.1.0, strip-json-comments@^3.1.1:
|
||||
version "3.1.1"
|
||||
resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
|
||||
@ -2388,6 +2812,11 @@ text-table@^0.2.0:
|
||||
resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
|
||||
integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=
|
||||
|
||||
through@^2.3.8:
|
||||
version "2.3.8"
|
||||
resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
|
||||
integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=
|
||||
|
||||
to-fast-properties@^2.0.0:
|
||||
version "2.0.0"
|
||||
resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
|
||||
@ -2400,16 +2829,21 @@ to-regex-range@^5.0.1:
|
||||
dependencies:
|
||||
is-number "^7.0.0"
|
||||
|
||||
tslib@2.1.0, tslib@^2.0.1:
|
||||
tslib@2.1.0:
|
||||
version "2.1.0"
|
||||
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.1.0.tgz#da60860f1c2ecaa5703ab7d39bc05b6bf988b97a"
|
||||
integrity sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A==
|
||||
|
||||
tslib@^1.8.1:
|
||||
tslib@^1.8.1, tslib@^1.9.0:
|
||||
version "1.14.1"
|
||||
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
|
||||
integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
|
||||
|
||||
tslib@^2.3.0:
|
||||
version "2.3.0"
|
||||
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.3.0.tgz#803b8cdab3e12ba581a4ca41c8839bbb0dacb09e"
|
||||
integrity sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==
|
||||
|
||||
tsutils@^3.17.1:
|
||||
version "3.21.0"
|
||||
resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623"
|
||||
@ -2429,6 +2863,11 @@ type-fest@^0.20.2:
|
||||
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4"
|
||||
integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==
|
||||
|
||||
type-fest@^0.21.3:
|
||||
version "0.21.3"
|
||||
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37"
|
||||
integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==
|
||||
|
||||
type-fest@^0.8.1:
|
||||
version "0.8.1"
|
||||
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d"
|
||||
@ -2479,6 +2918,11 @@ v8-compile-cache@^2.0.3:
|
||||
resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee"
|
||||
integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==
|
||||
|
||||
which-pm-runs@^1.0.0:
|
||||
version "1.0.0"
|
||||
resolved "https://registry.yarnpkg.com/which-pm-runs/-/which-pm-runs-1.0.0.tgz#670b3afbc552e0b55df6b7780ca74615f23ad1cb"
|
||||
integrity sha1-Zws6+8VS4LVd9rd4DKdGFfI60cs=
|
||||
|
||||
which@^2.0.1:
|
||||
version "2.0.2"
|
||||
resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1"
|
||||
@ -2491,6 +2935,24 @@ word-wrap@^1.2.3:
|
||||
resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
|
||||
integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
|
||||
|
||||
wrap-ansi@^6.2.0:
|
||||
version "6.2.0"
|
||||
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53"
|
||||
integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==
|
||||
dependencies:
|
||||
ansi-styles "^4.0.0"
|
||||
string-width "^4.1.0"
|
||||
strip-ansi "^6.0.0"
|
||||
|
||||
wrap-ansi@^7.0.0:
|
||||
version "7.0.0"
|
||||
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
|
||||
integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
|
||||
dependencies:
|
||||
ansi-styles "^4.0.0"
|
||||
string-width "^4.1.0"
|
||||
strip-ansi "^6.0.0"
|
||||
|
||||
wrappy@1:
|
||||
version "1.0.2"
|
||||
resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
|
||||
@ -2500,3 +2962,8 @@ yallist@^4.0.0:
|
||||
version "4.0.0"
|
||||
resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"
|
||||
integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
|
||||
|
||||
yaml@^1.10.0, yaml@^1.7.2:
|
||||
version "1.10.2"
|
||||
resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b"
|
||||
integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==
|
||||
|
Loading…
x
Reference in New Issue
Block a user