@microsoft/applicationinsights-web-basic 2.8.3 → 2.8.4-nightly.2205-04
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/aib.2.8.4-nightly.2205-04.integrity.json +26 -0
- package/browser/{aib.2.8.3.js → aib.2.8.4-nightly.2205-04.js} +4 -4
- package/browser/aib.2.8.4-nightly.2205-04.js.map +1 -0
- package/browser/aib.2.8.4-nightly.2205-04.min.js +6 -0
- package/browser/aib.2.8.4-nightly.2205-04.min.js.map +1 -0
- package/browser/aib.2.js +3 -3
- package/browser/aib.2.js.map +1 -1
- package/browser/aib.2.min.js +2 -2
- package/browser/aib.2.min.js.map +1 -1
- package/dist/applicationinsights-web-basic.d.ts +1 -1
- package/dist/applicationinsights-web-basic.js +3 -3
- package/dist/applicationinsights-web-basic.js.map +1 -1
- package/dist/applicationinsights-web-basic.min.js +2 -2
- package/dist/applicationinsights-web-basic.min.js.map +1 -1
- package/dist/applicationinsights-web-basic.rollup.d.ts +1 -1
- package/dist-esm/index.js +1 -1
- package/package.json +62 -59
- package/browser/aib.2.8.3.integrity.json +0 -26
- package/browser/aib.2.8.3.js.map +0 -1
- package/browser/aib.2.8.3.min.js +0 -6
- package/browser/aib.2.8.3.min.js.map +0 -1
package/dist-esm/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,59 +1,62 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@microsoft/applicationinsights-web-basic",
|
|
3
|
-
"version": "2.8.
|
|
4
|
-
"description": "Microsoft Application Insights Javascript SDK core and channel",
|
|
5
|
-
"homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme",
|
|
6
|
-
"author": "Microsoft Application Insights Team",
|
|
7
|
-
"main": "dist/applicationinsights-web-basic.js",
|
|
8
|
-
"module": "dist-esm/index.js",
|
|
9
|
-
"types": "types/index.d.ts",
|
|
10
|
-
"sideEffects": false,
|
|
11
|
-
"scripts": {
|
|
12
|
-
"build": "npm run build:esm && npm run build:browser && npm run sri && npm run dtsgen",
|
|
13
|
-
"build:esm": "grunt aiskulite",
|
|
14
|
-
"build:browser": "rollup -c rollup.config.js",
|
|
15
|
-
"rebuild": "npm run build",
|
|
16
|
-
"test": "grunt aiskuliteunittests",
|
|
17
|
-
"lint": "tslint -p tsconfig.json",
|
|
18
|
-
"dtsgen": "api-extractor run --local && node ../scripts/dtsgen.js 'Microsoft.ApplicationInsights'",
|
|
19
|
-
"sri": "node ../tools/subResourceIntegrity/generateIntegrityFile.js"
|
|
20
|
-
},
|
|
21
|
-
"repository": {
|
|
22
|
-
"type": "git",
|
|
23
|
-
"url": "https://github.com/microsoft/ApplicationInsights-JS.git",
|
|
24
|
-
"directory": "AISKULight"
|
|
25
|
-
},
|
|
26
|
-
"devDependencies": {
|
|
27
|
-
"@microsoft/ai-test-framework": "0.0.1",
|
|
28
|
-
"@microsoft/applicationinsights-rollup-plugin-uglify3-js": "1.0.0",
|
|
29
|
-
"@microsoft/applicationinsights-rollup-es3": "1.1.3",
|
|
30
|
-
"@microsoft/api-extractor": "^7.18.1",
|
|
31
|
-
"grunt": "^1.4.1",
|
|
32
|
-
"grunt-cli": "^1.4.3",
|
|
33
|
-
"grunt-contrib-qunit": "^5.0.1",
|
|
34
|
-
"@nevware21/grunt-ts-plugin": "^0.4.3",
|
|
35
|
-
"@nevware21/grunt-eslint-ts": "^0.2.2",
|
|
36
|
-
"globby": "^11.0.0",
|
|
37
|
-
"magic-string": "^0.25.7",
|
|
38
|
-
"pako": "^2.0.3",
|
|
39
|
-
"@rollup/plugin-commonjs": "^18.0.0",
|
|
40
|
-
"@rollup/plugin-node-resolve": "^11.2.1",
|
|
41
|
-
"@rollup/plugin-replace": "^2.3.3",
|
|
42
|
-
"rollup-plugin-cleanup": "^3.2.1",
|
|
43
|
-
"rollup": "^2.32.0",
|
|
44
|
-
"source-map-loader": "^0.2.3",
|
|
45
|
-
"typescript": "^4.3.4",
|
|
46
|
-
"tslib": "^2.0.0"
|
|
47
|
-
},
|
|
48
|
-
"peerDependencies": {
|
|
49
|
-
"tslib": "*"
|
|
50
|
-
},
|
|
51
|
-
"dependencies": {
|
|
52
|
-
"@microsoft/dynamicproto-js": "^1.1.6",
|
|
53
|
-
"@microsoft/applicationinsights-shims": "2.0.1",
|
|
54
|
-
"@microsoft/applicationinsights-common": "2.8.
|
|
55
|
-
"@microsoft/applicationinsights-channel-js": "2.8.
|
|
56
|
-
"@microsoft/applicationinsights-core-js": "2.8.
|
|
57
|
-
},
|
|
58
|
-
"license": "MIT"
|
|
59
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@microsoft/applicationinsights-web-basic",
|
|
3
|
+
"version": "2.8.4-nightly.2205-04",
|
|
4
|
+
"description": "Microsoft Application Insights Javascript SDK core and channel",
|
|
5
|
+
"homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme",
|
|
6
|
+
"author": "Microsoft Application Insights Team",
|
|
7
|
+
"main": "dist/applicationinsights-web-basic.js",
|
|
8
|
+
"module": "dist-esm/index.js",
|
|
9
|
+
"types": "types/index.d.ts",
|
|
10
|
+
"sideEffects": false,
|
|
11
|
+
"scripts": {
|
|
12
|
+
"build": "npm run build:esm && npm run build:browser && npm run sri && npm run dtsgen",
|
|
13
|
+
"build:esm": "grunt aiskulite",
|
|
14
|
+
"build:browser": "rollup -c rollup.config.js",
|
|
15
|
+
"rebuild": "npm run build",
|
|
16
|
+
"test": "grunt aiskuliteunittests",
|
|
17
|
+
"lint": "tslint -p tsconfig.json",
|
|
18
|
+
"dtsgen": "api-extractor run --local && node ../scripts/dtsgen.js 'Microsoft.ApplicationInsights'",
|
|
19
|
+
"sri": "node ../tools/subResourceIntegrity/generateIntegrityFile.js"
|
|
20
|
+
},
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "https://github.com/microsoft/ApplicationInsights-JS.git",
|
|
24
|
+
"directory": "AISKULight"
|
|
25
|
+
},
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"@microsoft/ai-test-framework": "0.0.1",
|
|
28
|
+
"@microsoft/applicationinsights-rollup-plugin-uglify3-js": "1.0.0",
|
|
29
|
+
"@microsoft/applicationinsights-rollup-es3": "1.1.3",
|
|
30
|
+
"@microsoft/api-extractor": "^7.18.1",
|
|
31
|
+
"grunt": "^1.4.1",
|
|
32
|
+
"grunt-cli": "^1.4.3",
|
|
33
|
+
"grunt-contrib-qunit": "^5.0.1",
|
|
34
|
+
"@nevware21/grunt-ts-plugin": "^0.4.3",
|
|
35
|
+
"@nevware21/grunt-eslint-ts": "^0.2.2",
|
|
36
|
+
"globby": "^11.0.0",
|
|
37
|
+
"magic-string": "^0.25.7",
|
|
38
|
+
"pako": "^2.0.3",
|
|
39
|
+
"@rollup/plugin-commonjs": "^18.0.0",
|
|
40
|
+
"@rollup/plugin-node-resolve": "^11.2.1",
|
|
41
|
+
"@rollup/plugin-replace": "^2.3.3",
|
|
42
|
+
"rollup-plugin-cleanup": "^3.2.1",
|
|
43
|
+
"rollup": "^2.32.0",
|
|
44
|
+
"source-map-loader": "^0.2.3",
|
|
45
|
+
"typescript": "^4.3.4",
|
|
46
|
+
"tslib": "^2.0.0"
|
|
47
|
+
},
|
|
48
|
+
"peerDependencies": {
|
|
49
|
+
"tslib": "*"
|
|
50
|
+
},
|
|
51
|
+
"dependencies": {
|
|
52
|
+
"@microsoft/dynamicproto-js": "^1.1.6",
|
|
53
|
+
"@microsoft/applicationinsights-shims": "2.0.1",
|
|
54
|
+
"@microsoft/applicationinsights-common": "2.8.4-nightly.2205-04",
|
|
55
|
+
"@microsoft/applicationinsights-channel-js": "2.8.4-nightly.2205-04",
|
|
56
|
+
"@microsoft/applicationinsights-core-js": "2.8.4-nightly.2205-04"
|
|
57
|
+
},
|
|
58
|
+
"license": "MIT",
|
|
59
|
+
"publishConfig": {
|
|
60
|
+
"tag": "nightly"
|
|
61
|
+
}
|
|
62
|
+
}
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "aib",
|
|
3
|
-
"version": "2.8.3",
|
|
4
|
-
"ext": {
|
|
5
|
-
"@js": {
|
|
6
|
-
"file": "aib.2.8.3.js",
|
|
7
|
-
"type": "text/javascript; charset=utf-8",
|
|
8
|
-
"integrity": "sha256-SayJvPYS3JyzOrtOSADzUeZFbeOSoYDvumkx5FJL9Ds= sha384-NBS3SLA8vbOlaC5muV0uSw0uqvXapwfd0kEA0unuBtk5HA+9mB8kg82QTMQGgqie sha512-MZSkWriTvf/q7h4BlpOtFs3TCxrP7w1+uUwkhpjap7god15a3oV8TeLC687RQzrUfCp7AScoWPfmFMosp4f83A==",
|
|
9
|
-
"hashes": {
|
|
10
|
-
"sha256": "SayJvPYS3JyzOrtOSADzUeZFbeOSoYDvumkx5FJL9Ds=",
|
|
11
|
-
"sha384": "NBS3SLA8vbOlaC5muV0uSw0uqvXapwfd0kEA0unuBtk5HA+9mB8kg82QTMQGgqie",
|
|
12
|
-
"sha512": "MZSkWriTvf/q7h4BlpOtFs3TCxrP7w1+uUwkhpjap7god15a3oV8TeLC687RQzrUfCp7AScoWPfmFMosp4f83A=="
|
|
13
|
-
}
|
|
14
|
-
},
|
|
15
|
-
"@min.js": {
|
|
16
|
-
"file": "aib.2.8.3.min.js",
|
|
17
|
-
"type": "text/javascript; charset=utf-8",
|
|
18
|
-
"integrity": "sha256-apAxcRhAwsMwPs9Y1Yy5z3gEVEPFWLXRRTlkRXxNhWs= sha384-4V43watjo8MtOqRzphTAA6OjSaEuZyp52eGnumqIWCbAhpR3jaDT1vL0oImg3Kzm sha512-vRLZK1P3haiW6FqHiDHw1iBR4vYZ1dRQRYLiM4rLPAk94K/qUQnfWBkqvcAdnw1jcHWalD5AlBymfQYUbJhXpg==",
|
|
19
|
-
"hashes": {
|
|
20
|
-
"sha256": "apAxcRhAwsMwPs9Y1Yy5z3gEVEPFWLXRRTlkRXxNhWs=",
|
|
21
|
-
"sha384": "4V43watjo8MtOqRzphTAA6OjSaEuZyp52eGnumqIWCbAhpR3jaDT1vL0oImg3Kzm",
|
|
22
|
-
"sha512": "vRLZK1P3haiW6FqHiDHw1iBR4vYZ1dRQRYLiM4rLPAk94K/qUQnfWBkqvcAdnw1jcHWalD5AlBymfQYUbJhXpg=="
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
}
|