anys-web 7.0.2 → 9.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +24 -23
- package/src/offline-tracer-plugin.js +1 -1
package/package.json
CHANGED
|
@@ -1,38 +1,39 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "anys-web",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "9.0.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"type": "module",
|
|
7
|
+
"keywords": [],
|
|
8
|
+
"author": "tangshuang",
|
|
9
|
+
"license": "Apache-2.0",
|
|
10
|
+
"homepage": "https://github.com/tangshuang/anys",
|
|
7
11
|
"scripts": {
|
|
8
12
|
"build": "rimraf dist && webpack --config ../../webpack.config.js",
|
|
9
13
|
"republish": "(can-npm-publish && npm publish) || exit 0"
|
|
10
14
|
},
|
|
11
|
-
"keywords": [],
|
|
12
|
-
"author": "tangshuang",
|
|
13
|
-
"license": "Apache-2.0",
|
|
14
15
|
"dependencies": {
|
|
15
|
-
"anys": "^
|
|
16
|
-
"anys-plugin-store-memory": "^
|
|
17
|
-
"anys-
|
|
18
|
-
"anys-web-plugin-identify": "^
|
|
19
|
-
"anys-web-plugin-monitor-ajax": "^
|
|
20
|
-
"anys-web-plugin-monitor-dom-mutation": "^
|
|
21
|
-
"anys-web-plugin-monitor-error": "^
|
|
22
|
-
"anys-web-plugin-monitor-input-event": "^
|
|
23
|
-
"anys-web-plugin-monitor-mouse-event": "^
|
|
24
|
-
"anys-web-plugin-monitor-performance": "^
|
|
25
|
-
"anys-web-plugin-monitor-scroll-event": "^
|
|
26
|
-
"anys-web-plugin-monitor-touch-event": "^
|
|
27
|
-
"anys-web-plugin-monitor-url": "^
|
|
28
|
-
"anys-web-plugin-monitor-window-activity": "^
|
|
29
|
-
"anys-web-plugin-monitor-window-size": "^
|
|
30
|
-
"anys-web-plugin-send-by-ajax": "^
|
|
31
|
-
"anys-web-plugin-send-by-beacon": "^
|
|
32
|
-
"anys-web-plugin-store-offline": "^
|
|
16
|
+
"anys": "^9.0.0",
|
|
17
|
+
"anys-plugin-store-memory": "^9.0.0",
|
|
18
|
+
"anys-utils": "^9.0.0",
|
|
19
|
+
"anys-web-plugin-identify": "^9.0.0",
|
|
20
|
+
"anys-web-plugin-monitor-ajax": "^9.0.0",
|
|
21
|
+
"anys-web-plugin-monitor-dom-mutation": "^9.0.0",
|
|
22
|
+
"anys-web-plugin-monitor-error": "^9.0.0",
|
|
23
|
+
"anys-web-plugin-monitor-input-event": "^9.0.0",
|
|
24
|
+
"anys-web-plugin-monitor-mouse-event": "^9.0.0",
|
|
25
|
+
"anys-web-plugin-monitor-performance": "^9.0.0",
|
|
26
|
+
"anys-web-plugin-monitor-scroll-event": "^9.0.0",
|
|
27
|
+
"anys-web-plugin-monitor-touch-event": "^9.0.0",
|
|
28
|
+
"anys-web-plugin-monitor-url": "^9.0.0",
|
|
29
|
+
"anys-web-plugin-monitor-window-activity": "^9.0.0",
|
|
30
|
+
"anys-web-plugin-monitor-window-size": "^9.0.0",
|
|
31
|
+
"anys-web-plugin-send-by-ajax": "^9.0.0",
|
|
32
|
+
"anys-web-plugin-send-by-beacon": "^9.0.0",
|
|
33
|
+
"anys-web-plugin-store-offline": "^9.0.0"
|
|
33
34
|
},
|
|
34
35
|
"publishConfig": {
|
|
35
36
|
"registry": "https://registry.npmjs.org/"
|
|
36
37
|
},
|
|
37
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "e8b3087eb666570ab28d97e8a80688c0436d189a"
|
|
38
39
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AnysPlugin, ajaxPost, replaceUrlSearch } from 'anys-
|
|
1
|
+
import { AnysPlugin, ajaxPost, replaceUrlSearch } from 'anys-utils';
|
|
2
2
|
import { AnysIdentifyPlugin } from 'anys-web-plugin-identify';
|
|
3
3
|
import { AnysMonitorInputEventPlugin } from 'anys-web-plugin-monitor-input-event';
|
|
4
4
|
import { AnysMonitorMouseEventPlugin } from 'anys-web-plugin-monitor-mouse-event';
|