@azure/eventgrid 4.5.1-alpha.20211101.2 → 4.5.1-alpha.20211214.2
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/README.md +1 -1
- package/package.json +7 -9
package/README.md
CHANGED
@@ -328,5 +328,5 @@ If you'd like to contribute to this library, please read the [contributing guide
|
|
328
328
|
[event_grid]: https://docs.microsoft.com/azure/event-grid
|
329
329
|
[azure_portal]: https://portal.azure.com
|
330
330
|
[azure-core-tracing-github]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/core/core-tracing
|
331
|
-
[cloud-events-distributed-tracing-spec]: https://github.com/cloudevents/spec/blob/
|
331
|
+
[cloud-events-distributed-tracing-spec]: https://github.com/cloudevents/spec/blob/v1.0.1/extensions/distributed-tracing.md
|
332
332
|
[eventgrid-on-kubernetes-using-azure-arc]: https://docs.microsoft.com/azure/event-grid/kubernetes/
|
package/package.json
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
"sdk-type": "client",
|
4
4
|
"author": "Microsoft Corporation",
|
5
5
|
"description": "An isomorphic client library for the Azure Event Grid service.",
|
6
|
-
"version": "4.5.1-alpha.
|
6
|
+
"version": "4.5.1-alpha.20211214.2",
|
7
7
|
"keywords": [
|
8
8
|
"node",
|
9
9
|
"azure",
|
@@ -63,7 +63,7 @@
|
|
63
63
|
"build:browser": "tsc -p . && cross-env ONLY_BROWSER=true rollup -c 2>&1",
|
64
64
|
"build:node": "tsc -p . && cross-env ONLY_NODE=true rollup -c 2>&1",
|
65
65
|
"build:samples": "echo Obsolete",
|
66
|
-
"build:test": "tsc -p . && rollup -c
|
66
|
+
"build:test": "tsc -p . && rollup -c 2>&1",
|
67
67
|
"build": "npm run clean && tsc -p . && rollup -c 2>&1 && api-extractor run --local",
|
68
68
|
"check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
|
69
69
|
"clean": "rimraf dist dist-browser dist-esm dist-test temp types *.tgz *.log",
|
@@ -81,9 +81,8 @@
|
|
81
81
|
"test:node": "npm run clean && npm run build:test && npm run unit-test:node",
|
82
82
|
"test": "npm run clean && npm run build:test && npm run unit-test",
|
83
83
|
"unit-test:browser": "karma start --single-run",
|
84
|
-
"unit-test:node": "mocha --require
|
85
|
-
"unit-test": "npm run unit-test:node && npm run unit-test:browser"
|
86
|
-
"docs": "typedoc --excludePrivate --excludeNotExported --excludeExternals --stripInternal --mode file --out ./dist/docs ./src"
|
84
|
+
"unit-test:node": "mocha -r esm --require ts-node/register --reporter ../../../common/tools/mocha-multi-reporter.js --timeout 1200000 --full-trace \"test/{,!(browser)/**/}*.spec.ts\"",
|
85
|
+
"unit-test": "npm run unit-test:node && npm run unit-test:browser"
|
87
86
|
},
|
88
87
|
"sideEffects": false,
|
89
88
|
"autoPublish": false,
|
@@ -133,8 +132,8 @@
|
|
133
132
|
"karma-mocha-reporter": "^2.2.5",
|
134
133
|
"karma-sourcemap-loader": "^0.3.8",
|
135
134
|
"mocha": "^7.1.1",
|
136
|
-
"mocha-junit-reporter": "^
|
137
|
-
"nyc": "^
|
135
|
+
"mocha-junit-reporter": "^2.0.0",
|
136
|
+
"nyc": "^15.0.0",
|
138
137
|
"prettier": "^1.16.4",
|
139
138
|
"rimraf": "^3.0.0",
|
140
139
|
"rollup": "^1.16.3",
|
@@ -145,7 +144,6 @@
|
|
145
144
|
"sinon": "^9.0.2",
|
146
145
|
"source-map-support": "^0.5.9",
|
147
146
|
"ts-node": "^10.0.0",
|
148
|
-
"typescript": "~4.2.0"
|
149
|
-
"typedoc": "0.15.2"
|
147
|
+
"typescript": "~4.2.0"
|
150
148
|
}
|
151
149
|
}
|