@azure/web-pubsub-express 1.0.6-alpha.20240925.1 → 1.0.6-alpha.20240926.1

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 (1) hide show
  1. package/package.json +8 -7
package/package.json CHANGED
@@ -1,32 +1,33 @@
1
1
  {
2
2
  "name": "@azure/web-pubsub-express",
3
- "version": "1.0.6-alpha.20240925.1",
3
+ "version": "1.0.6-alpha.20240926.1",
4
4
  "description": "Azure Web PubSub CloudEvents handlers",
5
5
  "sdk-type": "client",
6
6
  "scripts": {
7
7
  "audit": "node ../../../common/scripts/rush-audit.js && rimraf node_modules package-lock.json && npm i --package-lock-only 2>&1 && npm audit",
8
+ "build": "npm run clean && dev-tool run build-package && dev-tool run bundle --browser-test=false && dev-tool run extract-api",
8
9
  "build:browser": "echo \"Browser is not supported.\" && exit 0",
9
10
  "build:node": "dev-tool run build-package",
10
11
  "build:samples": "echo Obsolete.",
11
12
  "build:test": "dev-tool run build-package",
12
- "build": "npm run clean && dev-tool run build-package && dev-tool run bundle --browser-test=false && dev-tool run extract-api",
13
13
  "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
14
- "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
15
14
  "clean": "rimraf --glob dist dist-esm test-dist temp types *.tgz *.log",
16
15
  "execute:samples": "dev-tool samples run samples-dev",
17
16
  "extract-api": "dev-tool run build-package && dev-tool run extract-api",
17
+ "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
18
+ "integration-test": "npm run integration-test:node && npm run integration-test:browser",
18
19
  "integration-test:browser": "echo \"Browser is not supported.\" && exit 0",
19
20
  "integration-test:node": "echo skipped",
20
- "integration-test": "npm run integration-test:node && npm run integration-test:browser",
21
- "lint:fix": "eslint package.json api-extractor.json README.md src test --fix --fix-type [problem,suggestion]",
22
21
  "lint": "eslint package.json api-extractor.json README.md src test",
22
+ "lint:fix": "eslint package.json api-extractor.json README.md src test --fix --fix-type [problem,suggestion]",
23
23
  "pack": "npm pack 2>&1",
24
+ "test": "npm run build:test && npm run unit-test && npm run integration-test",
24
25
  "test:browser": "echo \"Browser is not supported.\" && exit 0",
25
26
  "test:node": "npm run build:test && npm run unit-test:node && npm run integration-test:node",
26
- "test": "npm run build:test && npm run unit-test && npm run integration-test",
27
+ "unit-test": "npm run unit-test:node && npm run unit-test:browser",
27
28
  "unit-test:browser": "echo \"Browser is not supported.\" && exit 0",
28
29
  "unit-test:node": "dev-tool run test:vitest --no-test-proxy",
29
- "unit-test": "npm run unit-test:node && npm run unit-test:browser"
30
+ "update-snippets": "echo skipped"
30
31
  },
31
32
  "files": [
32
33
  "dist/",