Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
"prebuild:modules": "yarn && yarn @tools build:src && yarn @legacy-tools build:src && yarn workspace @webex/webex-core build:src && yarn @all build:src",
"prebuild:docs": "rimraf ./docs/api",
"build:docs": "yarn workspace @webex/plugin-presence run build:docs && yarn workspace @webex/calling run build:docs && yarn workspace @webex/byods run build:docs && yarn workspace @webex/contact-center run build:docs && yarn workspace @webex/plugin-encryption run build:docs && documentation build --config documentation/config.yml --format html --output ./docs/api --github ./packages/webex/src/index.js ./packages/@webex/contact-center/src/index.[tj]s ./packages/@webex/plugin-*/src/index.[tj]s --babel=./babel.config.json",
"build:docs:json": "yarn workspace @webex/plugin-presence run build:docs:json && yarn workspace @webex/calling run build:docs:json && yarn workspace @webex/byods run build:docs:json && yarn workspace @webex/contact-center run build:docs:json && yarn workspace @webex/plugin-encryption run build:docs:json && documentation build --config documentation/config.yml --format json --output ./docs/api --github ./packages/webex/src/index.js ./packages/@webex/contact-center/src/index.[tj]s ./packages/@webex/plugin-*/src/index.[tj]s --babel=./babel.config.json",
"check-karma-output": "./scripts/analyze-output.sh",
"build:package": "node ./tooling/index.js build",
"changelog:generate": "npx standard-changelog",
Expand Down
1 change: 1 addition & 0 deletions packages/@webex/contact-center/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
"build": " yarn workspace @webex/calling run build:src && yarn run -T tsc --declaration true --declarationDir ./dist/types",
"fix:lint": "eslint 'src/**/*.ts' --fix",
"build:docs": "typedoc --out ../../../docs/wxcc",
"build:docs:json": "typedoc --json ../../../docs/contact-center.json",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"prebuild": "rimraf dist",
"test": "yarn test:style && yarn test:unit",
Expand Down
1 change: 1 addition & 0 deletions packages/@webex/plugin-encryption/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
"scripts": {
"build": "yarn run -T tsc --declaration true --declarationDir ./dist/types",
"build:docs": "typedoc --out ../../../docs/plugin-encryption",
"build:docs:json": "typedoc --json ../../../docs/plugin-encryption.json",
"build:src": "webex-legacy-tools build -dest \"./dist\" -src \"./src\" -js -ts -maps && yarn build",
"deploy:npm": "yarn npm publish",
"test:browser": "webex-legacy-tools test --integration --runner karma",
Expand Down
1 change: 1 addition & 0 deletions packages/@webex/plugin-presence/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
"scripts": {
"build": "yarn run -T tsc --declaration true --declarationDir ./dist/types && yarn run build:src",
"build:docs": "typedoc --out ../../../docs/presence",
"build:docs:json": "typedoc --json ../../../docs/presence.json",
"build:src": "webex-legacy-tools build -dest \"./dist\" -src \"./src\" -js -ts -maps",
"deploy:npm": "yarn npm publish",
"test": "yarn test:style && yarn test:unit && yarn test:integration && yarn test:browser",
Expand Down
1 change: 1 addition & 0 deletions packages/byods/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
},
"scripts": {
"build:docs": "typedoc --out ../../docs/byods",
"build:docs:json": "typedoc --json ../../docs/byods.json",
"build:src": "webex-legacy-tools build -dest \"./dist\" -src \"./src\" -js -ts && yarn build",
"build": "yarn run -T tsc --declaration true --declarationDir ./dist/types",
"deploy:npm": "yarn npm publish",
Expand Down
1 change: 1 addition & 0 deletions packages/calling/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
"fix:lint": "eslint 'src/**/*.ts' --fix",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"build:docs": "typedoc --out ../../docs/calling",
"build:docs:json": "typedoc --json ../../docs/calling.json",
"docs": "typedoc --emit none",
"deploy:npm": "yarn npm publish"
},
Expand Down
Loading