Skip to content

Commit

Permalink
fix(plugin-meetings): generate types (#3339)
Browse files Browse the repository at this point in the history
  • Loading branch information
mkesavan13 authored Jan 31, 2024
1 parent 321cbda commit 3fe28f5
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,10 @@ jobs:
- name: Build Tools
run: yarn workspaces foreach --from '@webex/*-tools' --topological-dev --parallel --verbose run build:src

- name: Build
- name: Build Webex Core
run: yarn workspace @webex/webex-core run build:src

- name: Build Other Packages
run: yarn workspaces foreach --parallel --verbose run build:src

- name: Cache Distributables
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,10 @@ jobs:
- name: Build Tools
run: yarn workspaces foreach --from '@webex/*-tools' --topological-dev --parallel --verbose run build:src

- name: Build
- name: Build Webex Core
run: yarn workspace @webex/webex-core run build:src

- name: Build Other Packages
run: yarn workspaces foreach --parallel --verbose run build:src

- name: Cache Distributables
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"prebuild": "yarn run clean",
"build:publish": "yarn build:package && yarn workspaces foreach --parallel --verbose run build:src",
"build:tools": "yarn workspaces foreach --from '@webex/*-tools' --topological-dev --parallel --verbose run build:src",
"build:local": "yarn ws:tools && yarn package-tools sync --tag next && yarn workspaces foreach --parallel --verbose run build:src && yarn run samples:build",
"build:local": "yarn ws:tools && yarn package-tools sync --tag next && yarn workspace @webex/webex-core run build:src && yarn workspaces foreach --parallel --verbose run build:src && yarn run samples:build",
"build": "yarn workspace @webex/media-helpers run build:src && yarn workspace @webex/calling run build:src && node ./tooling/index.js build && yarn && yarn ws:tools build && yarn run build:tsc",
"build:tsc": "yarn run tsc -p ./config/tsconfig.typecheck.json --noEmit && yarn workspace @webex/internal-plugin-metrics run build && yarn workspace @webex/plugin-meetings run build",
"build:script": "node ./tooling/index.js build --umd",
Expand Down
4 changes: 2 additions & 2 deletions packages/@webex/media-helpers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"node": ">=16"
},
"scripts": {
"build": "yarn run -T tsc --declaration true --declarationDir ./dist",
"build:src": "webex-legacy-tools build -dest \"./dist\" -src \"./src\" -js -ts -maps && yarn run -T tsc --declaration true --declarationDir ./dist",
"build": "yarn run -T tsc --declaration true --declarationDir ./dist/types",
"build:src": "webex-legacy-tools build -dest \"./dist\" -src \"./src\" -js -ts -maps && yarn run -T tsc --declaration true --declarationDir ./dist/types",
"test:broken": "yarn test:style && yarn test:unit && yarn test:integration && yarn test:browser",
"test:browser:broken": "webex-legacy-tools test --integration --unit --runner karma",
"test:integration:broken": "webex-legacy-tools test --integration --runner mocha",
Expand Down

0 comments on commit 3fe28f5

Please sign in to comment.