@azure/web-pubsub-express 1.0.0 → 1.0.1-alpha.20211215.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/package.json +8 -20
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Release History
2
2
 
3
+ ## 1.0.1 (Unreleased)
4
+
5
+ ### Features Added
6
+
7
+ ### Breaking Changes
8
+
9
+ ### Bugs Fixed
10
+
11
+ ### Other Changes
12
+
3
13
  ## 1.0.0 (2021-11-11)
4
14
 
5
15
  No changes.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azure/web-pubsub-express",
3
- "version": "1.0.0",
3
+ "version": "1.0.1-alpha.20211215.2",
4
4
  "description": "Azure Web PubSub CloudEvents handlers",
5
5
  "sdk-type": "client",
6
6
  "main": "dist/index.js",
@@ -11,7 +11,7 @@
11
11
  "build:browser": "echo \"Browser is not supported.\" && exit 0",
12
12
  "build:node": "tsc -p . && cross-env ONLY_NODE=true rollup -c 2>&1",
13
13
  "build:samples": "echo Obsolete.",
14
- "build:test": "tsc -p . && rollup -c rollup.test.config.js 2>&1",
14
+ "build:test": "tsc -p . && rollup -c 2>&1",
15
15
  "build": "npm run clean && tsc -p . && rollup -c 2>&1 && api-extractor run --local",
16
16
  "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
17
17
  "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
@@ -28,9 +28,8 @@
28
28
  "test:node": "npm run build:test && npm run unit-test:node && npm run integration-test:node",
29
29
  "test": "npm run build:test && npm run unit-test && npm run integration-test",
30
30
  "unit-test:browser": "echo \"Browser is not supported.\" && exit 0",
31
- "unit-test:node": "mocha --reporter ../../../common/tools/mocha-multi-reporter.js dist-test/index.node.js",
32
- "unit-test": "npm run unit-test:node && npm run unit-test:browser",
33
- "docs": "typedoc --excludePrivate --excludeNotExported --excludeExternals --stripInternal --mode file --out ./dist/docs ./src"
31
+ "unit-test:node": "mocha -r esm --require ts-node/register --reporter ../../../common/tools/mocha-multi-reporter.js --full-trace \"test/{,!(browser)/**/}*.spec.ts\"",
32
+ "unit-test": "npm run unit-test:node && npm run unit-test:browser"
34
33
  },
35
34
  "files": [
36
35
  "dist/",
@@ -61,15 +60,10 @@
61
60
  "cloudevents": "^4.0.0"
62
61
  },
63
62
  "devDependencies": {
64
- "@azure/dev-tool": "^1.0.0",
65
- "@azure/eslint-plugin-azure-sdk": "^3.0.0",
63
+ "@azure/dev-tool": ">=1.0.0-alpha <1.0.0-alphb",
64
+ "@azure/eslint-plugin-azure-sdk": ">=3.0.0-alpha <3.0.0-alphb",
66
65
  "@azure-tools/test-recorder": "^1.0.0",
67
66
  "@microsoft/api-extractor": "^7.18.11",
68
- "@rollup/plugin-commonjs": "11.0.2",
69
- "@rollup/plugin-json": "^4.0.0",
70
- "@rollup/plugin-multi-entry": "^3.0.0",
71
- "@rollup/plugin-node-resolve": "^8.0.0",
72
- "@rollup/plugin-replace": "^2.2.0",
73
67
  "@types/chai": "^4.1.6",
74
68
  "@types/express": "^4.16.0",
75
69
  "@types/express-serve-static-core": "^4.17.19",
@@ -77,7 +71,6 @@
77
71
  "@types/mocha": "^7.0.2",
78
72
  "@types/node": "^12.0.0",
79
73
  "@types/sinon": "^9.0.4",
80
- "assert": "^1.4.1",
81
74
  "chai": "^4.2.0",
82
75
  "cross-env": "^7.0.2",
83
76
  "dotenv": "^8.2.0",
@@ -97,19 +90,14 @@
97
90
  "karma-mocha-reporter": "^2.2.5",
98
91
  "karma-sourcemap-loader": "^0.3.8",
99
92
  "mocha": "^7.1.1",
100
- "mocha-junit-reporter": "^1.18.0",
101
- "nyc": "^14.0.0",
93
+ "mocha-junit-reporter": "^2.0.0",
94
+ "nyc": "^15.0.0",
102
95
  "prettier": "^1.16.4",
103
96
  "puppeteer": "^10.2.0",
104
97
  "rimraf": "^3.0.0",
105
98
  "rollup": "^1.16.3",
106
- "rollup-plugin-shim": "^1.0.0",
107
- "rollup-plugin-sourcemaps": "^0.4.2",
108
- "rollup-plugin-terser": "^5.1.1",
109
- "rollup-plugin-visualizer": "^4.0.4",
110
99
  "sinon": "^9.0.2",
111
100
  "source-map-support": "^0.5.9",
112
- "typedoc": "0.15.2",
113
101
  "typescript": "~4.2.0"
114
102
  },
115
103
  "//sampleConfiguration": {