@azure/storage-blob-changefeed 12.0.0-alpha.20220104.2 → 12.0.0-alpha.20220105.6

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 +4 -5
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@azure/storage-blob-changefeed",
3
3
  "sdk-type": "client",
4
- "version": "12.0.0-alpha.20220104.2",
4
+ "version": "12.0.0-alpha.20220105.6",
5
5
  "description": "Microsoft Azure Storage SDK for JavaScript - Blob Change Feed",
6
6
  "main": "./dist/index.js",
7
7
  "module": "./dist-esm/storage-blob-changefeed/src/index.js",
@@ -26,12 +26,11 @@
26
26
  "scripts": {
27
27
  "audit": "node ../../../common/scripts/rush-audit.js && rimraf node_modules package-lock.json && npm i --package-lock-only 2>&1 && npm audit",
28
28
  "build:es6": "tsc -p tsconfig.json",
29
- "build:nodebrowser": "rollup -c 2>&1",
30
29
  "build:samples": "cross-env ONLY_NODE=true npm run build && npm run build:prep-samples",
31
30
  "build:prep-samples": "dev-tool samples prep && cd dist-samples && tsc",
32
- "build:test": "npm run build:es6 && rollup -c rollup.test.config.js 2>&1",
31
+ "build:test": "npm run build:es6 && rollup -c 2>&1",
33
32
  "build:types": "downlevel-dts typings/latest typings/3.1",
34
- "build": "npm run clean && npm run build:es6 && npm run build:nodebrowser && api-extractor run --local && npm run build:types",
33
+ "build": "npm run clean && npm run build:es6 && rollup -c 2>&1 && api-extractor run --local && npm run build:types",
35
34
  "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"",
36
35
  "clean": "rimraf dist dist-* typings temp statistics.html coverage coverage-browser .nyc_output *.tgz *.log test*.xml TEST*.xml",
37
36
  "clean:samples": "rimraf samples/javascript/node_modules samples/typescript/node_modules samples/typescript/dist samples/typescript/package-lock.json samples/javascript/package-lock.json",
@@ -48,7 +47,7 @@
48
47
  "test:node": "npm run clean && npm run build:test && npm run unit-test:node",
49
48
  "test": "npm run clean && npm run build:test && npm run unit-test",
50
49
  "unit-test:browser": "echo 'browser not supported yet.'",
51
- "unit-test:node": "mocha --require source-map-support/register --reporter ../../../common/tools/mocha-multi-reporter.js --full-trace -t 120000 \"dist-test/index.node.js\"",
50
+ "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\"",
52
51
  "unit-test": "npm run unit-test:node && npm run unit-test:browser",
53
52
  "emulator-tests": "cross-env STORAGE_CONNECTION_STRING=UseDevelopmentStorage=true && npm run test:node"
54
53
  },