twilio-taskrouter 0.8.2 → 0.8.4

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.
@@ -1 +1 @@
1
- /*! twilio-taskrouter.js 0.8.2 */
1
+ /*! twilio-taskrouter.js 0.8.4 */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "twilio-taskrouter",
3
3
  "title": "Twilio TaskRouter",
4
- "version": "0.8.2",
4
+ "version": "0.8.4",
5
5
  "description": "Twilio TaskRouter JavaScript library",
6
6
  "homepage": "https://www.twilio.com",
7
7
  "author": "Wanjun Li <wli@twilio.com>",
@@ -33,12 +33,13 @@
33
33
  "test:integration-six-sigma": "mocha --full-trace --check-leaks --require @babel/register -r ./test/mocha/no-unicode-reporter.js -r ./test/mocha/fetch.js ./test/integration/index.js --reporter mochawesome --reporter-options reportDir=reports,reportFilename=e2e-test-report --timeout 40000 --exit -g '@SixSigma'",
34
34
  "test:integration:voice": "mocha --full-trace --check-leaks --require @babel/register ./test/voice/index.js --timeout 40000 --exit",
35
35
  "test:integration:media": "mocha --full-trace --check-leaks --require @babel/register ./test/media/index.js --timeout 40000 --exit",
36
- "test": "npm run test:unit && npm run test:integration",
37
- "build:dev": "npm run webpack development",
38
- "build:prod": "npm run webpack production",
39
- "prebuild": "npm run clean && yarn install",
40
- "build": "npm run lint && npm run build:prod",
41
- "postbuild": "npm run docs && npm run coverage",
36
+ "test": "yarn test:unit && yarn test:integration",
37
+ "build:dev": "yarn webpack development",
38
+ "build:prod": "yarn webpack production",
39
+ "build:types": "tsc && node ./scripts/types.js",
40
+ "prebuild": "yarn clean && yarn install",
41
+ "build": "yarn lint && yarn build:prod",
42
+ "postbuild": "yarn docs && yarn coverage",
42
43
  "docs": "node ./scripts/docs.js ./dist/docs",
43
44
  "coverage": "nyc --report-dir coverage --reporter lcov --reporter text-summary yarn test:unit",
44
45
  "test:setup": "node test/integration_test_setup/IntegrationTestSetup.js"
@@ -90,6 +91,7 @@
90
91
  "sinon-chai": "^3.5.0",
91
92
  "twilio": "^3.71.3",
92
93
  "twilio-sync": "^2.0.1",
94
+ "typescript": "^4.5.5",
93
95
  "webpack": "^5.65.0",
94
96
  "webpack-cli": "^4.9.1",
95
97
  "webpack-node-externals": "^3.0.0"