@microsoft/applicationinsights-react-js 3.2.3 → 3.2.4-nightly.2201-03
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/browser/applicationinsights-react-js.js +1 -1
- package/browser/applicationinsights-react-js.js.map +1 -1
- package/browser/applicationinsights-react-js.min.js +1 -1
- package/browser/applicationinsights-react-js.min.js.map +1 -1
- package/dist/applicationinsights-react-js.d.ts +1 -1
- package/dist/applicationinsights-react-js.js +1 -1
- package/dist/applicationinsights-react-js.js.map +1 -1
- package/dist/applicationinsights-react-js.min.js +1 -1
- package/dist/applicationinsights-react-js.min.js.map +1 -1
- package/dist/applicationinsights-react-js.rollup.d.ts +1 -1
- package/dist-esm/AppInsightsContext.js +1 -1
- package/dist-esm/AppInsightsErrorBoundary.js +1 -1
- package/dist-esm/Interfaces/IReactExtensionConfig.js +1 -1
- package/dist-esm/ReactPlugin.js +1 -1
- package/dist-esm/applicationinsights-react-js.js +1 -1
- package/dist-esm/useTrackEvent.js +1 -1
- package/dist-esm/useTrackMetric.js +1 -1
- package/dist-esm/withAITracking.js +1 -1
- package/package.json +74 -71
package/dist-esm/ReactPlugin.js
CHANGED
package/package.json
CHANGED
|
@@ -1,71 +1,74 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@microsoft/applicationinsights-react-js",
|
|
3
|
-
"version": "3.2.
|
|
4
|
-
"description": "Microsoft Application Insights React plugin",
|
|
5
|
-
"main": "dist/applicationinsights-react-js.js",
|
|
6
|
-
"module": "dist-esm/applicationinsights-react-js.js",
|
|
7
|
-
"types": "types/applicationinsights-react-js.d.ts",
|
|
8
|
-
"sideEffects": false,
|
|
9
|
-
"repository": {
|
|
10
|
-
"type": "git",
|
|
11
|
-
"url": "https://github.com/microsoft/ApplicationInsights-JS/tree/master/extensions/applicationinsights-react-js"
|
|
12
|
-
},
|
|
13
|
-
"scripts": {
|
|
14
|
-
"build": "npm run build:esm && npm run build:package && npm run dtsgen",
|
|
15
|
-
"build:esm": "tsc -p tsconfig.json",
|
|
16
|
-
"build:package": "rollup -c",
|
|
17
|
-
"rebuild": "npm run build",
|
|
18
|
-
"testx": "grunt reacttests",
|
|
19
|
-
"test": "jest --config test/jestconfig.json",
|
|
20
|
-
"test-watch": "jest --config test/jestconfig.json --watch",
|
|
21
|
-
"lint": "tslint -p tsconfig.json",
|
|
22
|
-
"dtsgen": "api-extractor run --local && node ../../scripts/dtsgen.js \"Microsoft Application Insights react plugin\""
|
|
23
|
-
},
|
|
24
|
-
"devDependencies": {
|
|
25
|
-
"@microsoft/ai-test-framework": "0.0.1",
|
|
26
|
-
"@microsoft/applicationinsights-rollup-es3": "1.1.3",
|
|
27
|
-
"@microsoft/api-extractor": "^7.18.1",
|
|
28
|
-
"@testing-library/dom": "^7.29.6",
|
|
29
|
-
"@testing-library/jest-dom": "^5.11.9",
|
|
30
|
-
"@testing-library/react": "^11.2.5",
|
|
31
|
-
"@testing-library/user-event": "^12.8.1",
|
|
32
|
-
"@types/cheerio": "0.22.13",
|
|
33
|
-
"@types/history": "^4.7.9",
|
|
34
|
-
"@types/jest": "^27.0.2",
|
|
35
|
-
"@types/node": "11.13.2",
|
|
36
|
-
"@types/prop-types": "^15.7.3",
|
|
37
|
-
"@types/react": "^16.9.11",
|
|
38
|
-
"@types/react-dom": "^16.9.4",
|
|
39
|
-
"csstype": "~2.6.7",
|
|
40
|
-
"grunt": "^1.4.1",
|
|
41
|
-
"grunt-cli": "^1.4.3",
|
|
42
|
-
"jest": "^27.3.1",
|
|
43
|
-
"react": "^17.0.2",
|
|
44
|
-
"react-dom": "^17.0.2",
|
|
45
|
-
"globby": "^11.0.0",
|
|
46
|
-
"magic-string": "^0.25.7",
|
|
47
|
-
"@rollup/plugin-commonjs": "^18.0.0",
|
|
48
|
-
"@rollup/plugin-node-resolve": "^11.2.1",
|
|
49
|
-
"@rollup/plugin-replace": "^2.3.3",
|
|
50
|
-
"rollup-plugin-cleanup": "3.2.1",
|
|
51
|
-
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
52
|
-
"rollup": "^2.32.0",
|
|
53
|
-
"ts-jest": "^27.0.7",
|
|
54
|
-
"typescript": "^4.3.4",
|
|
55
|
-
"tslib": "^2.0.0",
|
|
56
|
-
"uglify-js": "^3.11.0",
|
|
57
|
-
"history": "^5.1.0"
|
|
58
|
-
},
|
|
59
|
-
"dependencies": {
|
|
60
|
-
"@microsoft/applicationinsights-shims": "2.0.1",
|
|
61
|
-
"@microsoft/applicationinsights-core-js": "2.7.
|
|
62
|
-
"@microsoft/applicationinsights-common": "2.7.
|
|
63
|
-
"@microsoft/dynamicproto-js": "^1.1.4"
|
|
64
|
-
},
|
|
65
|
-
"peerDependencies": {
|
|
66
|
-
"tslib": "*",
|
|
67
|
-
"react": "^17.0.1",
|
|
68
|
-
"history": ">= 4.10.1"
|
|
69
|
-
},
|
|
70
|
-
"license": "MIT"
|
|
71
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@microsoft/applicationinsights-react-js",
|
|
3
|
+
"version": "3.2.4-nightly.2201-03",
|
|
4
|
+
"description": "Microsoft Application Insights React plugin",
|
|
5
|
+
"main": "dist/applicationinsights-react-js.js",
|
|
6
|
+
"module": "dist-esm/applicationinsights-react-js.js",
|
|
7
|
+
"types": "types/applicationinsights-react-js.d.ts",
|
|
8
|
+
"sideEffects": false,
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "https://github.com/microsoft/ApplicationInsights-JS/tree/master/extensions/applicationinsights-react-js"
|
|
12
|
+
},
|
|
13
|
+
"scripts": {
|
|
14
|
+
"build": "npm run build:esm && npm run build:package && npm run dtsgen",
|
|
15
|
+
"build:esm": "tsc -p tsconfig.json",
|
|
16
|
+
"build:package": "rollup -c",
|
|
17
|
+
"rebuild": "npm run build",
|
|
18
|
+
"testx": "grunt reacttests",
|
|
19
|
+
"test": "jest --config test/jestconfig.json",
|
|
20
|
+
"test-watch": "jest --config test/jestconfig.json --watch",
|
|
21
|
+
"lint": "tslint -p tsconfig.json",
|
|
22
|
+
"dtsgen": "api-extractor run --local && node ../../scripts/dtsgen.js \"Microsoft Application Insights react plugin\""
|
|
23
|
+
},
|
|
24
|
+
"devDependencies": {
|
|
25
|
+
"@microsoft/ai-test-framework": "0.0.1",
|
|
26
|
+
"@microsoft/applicationinsights-rollup-es3": "1.1.3",
|
|
27
|
+
"@microsoft/api-extractor": "^7.18.1",
|
|
28
|
+
"@testing-library/dom": "^7.29.6",
|
|
29
|
+
"@testing-library/jest-dom": "^5.11.9",
|
|
30
|
+
"@testing-library/react": "^11.2.5",
|
|
31
|
+
"@testing-library/user-event": "^12.8.1",
|
|
32
|
+
"@types/cheerio": "0.22.13",
|
|
33
|
+
"@types/history": "^4.7.9",
|
|
34
|
+
"@types/jest": "^27.0.2",
|
|
35
|
+
"@types/node": "11.13.2",
|
|
36
|
+
"@types/prop-types": "^15.7.3",
|
|
37
|
+
"@types/react": "^16.9.11",
|
|
38
|
+
"@types/react-dom": "^16.9.4",
|
|
39
|
+
"csstype": "~2.6.7",
|
|
40
|
+
"grunt": "^1.4.1",
|
|
41
|
+
"grunt-cli": "^1.4.3",
|
|
42
|
+
"jest": "^27.3.1",
|
|
43
|
+
"react": "^17.0.2",
|
|
44
|
+
"react-dom": "^17.0.2",
|
|
45
|
+
"globby": "^11.0.0",
|
|
46
|
+
"magic-string": "^0.25.7",
|
|
47
|
+
"@rollup/plugin-commonjs": "^18.0.0",
|
|
48
|
+
"@rollup/plugin-node-resolve": "^11.2.1",
|
|
49
|
+
"@rollup/plugin-replace": "^2.3.3",
|
|
50
|
+
"rollup-plugin-cleanup": "3.2.1",
|
|
51
|
+
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
52
|
+
"rollup": "^2.32.0",
|
|
53
|
+
"ts-jest": "^27.0.7",
|
|
54
|
+
"typescript": "^4.3.4",
|
|
55
|
+
"tslib": "^2.0.0",
|
|
56
|
+
"uglify-js": "^3.11.0",
|
|
57
|
+
"history": "^5.1.0"
|
|
58
|
+
},
|
|
59
|
+
"dependencies": {
|
|
60
|
+
"@microsoft/applicationinsights-shims": "2.0.1",
|
|
61
|
+
"@microsoft/applicationinsights-core-js": "2.7.4-nightly.2201-03",
|
|
62
|
+
"@microsoft/applicationinsights-common": "2.7.4-nightly.2201-03",
|
|
63
|
+
"@microsoft/dynamicproto-js": "^1.1.4"
|
|
64
|
+
},
|
|
65
|
+
"peerDependencies": {
|
|
66
|
+
"tslib": "*",
|
|
67
|
+
"react": "^17.0.1",
|
|
68
|
+
"history": ">= 4.10.1"
|
|
69
|
+
},
|
|
70
|
+
"license": "MIT",
|
|
71
|
+
"publishConfig": {
|
|
72
|
+
"tag": "nightly"
|
|
73
|
+
}
|
|
74
|
+
}
|