Skip to content

Commit a0611b3

Browse files
author
Michael Wegman
authored
Merge pull request #1150 from mwegman/meetings-plugin-widget
Meetings plugin widget
2 parents 88c2fb7 + bc815b6 commit a0611b3

File tree

32 files changed

+6725
-6961
lines changed

32 files changed

+6725
-6961
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ jobs:
177177
- run:
178178
name: 'Generate Version Number'
179179
command: |
180-
npm run release -- --release-as patch --no-verify
180+
npm run release -- --release-as minor --no-verify
181181
echo export VERSION_NUMBER=$(npx -c 'echo \"$npm_package_version\"') >> $BASH_ENV
182182
git rev-parse HEAD > gitcommit
183183
- run:

jest.config.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"<rootDir>/packages/node_modules/"
44
],
55
"testPathIgnorePatterns": ["<rootDir>/node_modules/"],
6-
"transformIgnorePatterns": ["<rootDir>/node_modules/"],
6+
"transformIgnorePatterns": ["<rootDir>/node_modules/(?!@webex/sdk-component-adapter)"],
77
"moduleNameMapper": {
88
"^.+\\.(css|scss|less)$": "identity-obj-proxy",
99
"^.+\\.(mp3|wav)$": "<rootDir>/__mocks__/sound-mock.js",
@@ -15,6 +15,7 @@
1515
"@webex/react-(.*)": "<rootDir>/packages/node_modules/@webex/react-$1/src",
1616
"@webex/redux-(.*)": "<rootDir>/packages/node_modules/@webex/redux-$1/src",
1717
"@webex/widget-(.*)": "<rootDir>/packages/node_modules/@webex/widget-$1/src",
18+
"@webex/components": "<rootDir>/node_modules/@webex/components/dist/umd/webex-components.umd.js",
1819
"@webex/webex-widget-base": "<rootDir>/packages/node_modules/@webex/webex-widget-base/src"
1920
},
2021
"testRegex": ".test.js$",

package-lock.json

Lines changed: 6027 additions & 4957 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 31 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -56,30 +56,32 @@
5656
"@formatjs/intl-pluralrules": "^1.5.4",
5757
"@formatjs/intl-relativetimeformat": "^4.5.11",
5858
"@momentum-ui/react": "^23.21.5",
59-
"@webex/common": "1.80.271",
60-
"@webex/common-timers": "1.80.271",
61-
"@webex/helper-html": "1.80.271",
62-
"@webex/http-core": "1.80.271",
63-
"@webex/internal-plugin-conversation": "1.80.271",
64-
"@webex/internal-plugin-encryption": "1.80.271",
65-
"@webex/internal-plugin-feature": "1.80.271",
66-
"@webex/internal-plugin-flag": "1.80.271",
67-
"@webex/internal-plugin-mercury": "1.80.271",
68-
"@webex/internal-plugin-metrics": "1.80.271",
69-
"@webex/internal-plugin-presence": "1.80.271",
70-
"@webex/internal-plugin-search": "1.80.271",
71-
"@webex/internal-plugin-team": "1.80.271",
72-
"@webex/internal-plugin-user": "1.80.271",
73-
"@webex/internal-plugin-wdm": "1.80.271",
74-
"@webex/plugin-authorization": "1.80.271",
75-
"@webex/plugin-logger": "1.80.271",
76-
"@webex/plugin-meetings": "1.80.271",
77-
"@webex/plugin-people": "1.80.271",
78-
"@webex/plugin-phone": "1.80.271",
79-
"@webex/plugin-rooms": "1.80.271",
80-
"@webex/storage-adapter-local-forage": "1.80.271",
81-
"@webex/storage-adapter-local-storage": "1.80.271",
82-
"@webex/webex-core": "1.80.271",
59+
"@webex/common": "1.118.0",
60+
"@webex/common-timers": "1.118.0",
61+
"@webex/components": "^1.47.0",
62+
"@webex/helper-html": "1.118.0",
63+
"@webex/http-core": "1.118.0",
64+
"@webex/internal-plugin-conversation": "1.118.0",
65+
"@webex/internal-plugin-encryption": "1.118.0",
66+
"@webex/internal-plugin-feature": "1.118.0",
67+
"@webex/internal-plugin-flag": "1.118.0",
68+
"@webex/internal-plugin-mercury": "1.118.0",
69+
"@webex/internal-plugin-metrics": "1.118.0",
70+
"@webex/internal-plugin-presence": "1.118.0",
71+
"@webex/internal-plugin-search": "1.118.0",
72+
"@webex/internal-plugin-team": "1.118.0",
73+
"@webex/internal-plugin-user": "1.118.0",
74+
"@webex/internal-plugin-wdm": "1.118.0",
75+
"@webex/plugin-authorization": "1.118.0",
76+
"@webex/plugin-logger": "1.118.0",
77+
"@webex/plugin-meetings": "1.118.0",
78+
"@webex/plugin-people": "1.118.0",
79+
"@webex/plugin-phone": "1.118.0",
80+
"@webex/plugin-rooms": "1.118.0",
81+
"@webex/sdk-component-adapter": "^1.26.2",
82+
"@webex/storage-adapter-local-forage": "1.118.0",
83+
"@webex/storage-adapter-local-storage": "1.118.0",
84+
"@webex/webex-core": "1.118.0",
8385
"adaptivecards": "^2.0.0",
8486
"ampersand-events": "^2.0.2",
8587
"bowser": "^1.9.4",
@@ -113,7 +115,7 @@
113115
"react-mentions": "^1.2.1",
114116
"react-redux": "^5.0.1",
115117
"react-syntax-highlighter": "^6.0.2",
116-
"react-virtualized": "^9.18.5",
118+
"react-virtualized": "9.18.5",
117119
"recompose": "^0.26.0",
118120
"redux": "^3.6.0",
119121
"redux-logger": "^3.0.1",
@@ -142,10 +144,10 @@
142144
"@rollup/plugin-url": "^4.0.1",
143145
"@webex/eslint-config-base": "^0.8.0",
144146
"@webex/eslint-config-react": "^0.8.0",
145-
"@webex/test-helper-appid": "1.80.271",
146-
"@webex/test-helper-file": "1.80.271",
147-
"@webex/test-helper-server": "1.80.271",
148-
"@webex/test-helper-test-users": "1.80.271",
147+
"@webex/test-helper-appid": "1.98.2",
148+
"@webex/test-helper-file": "1.98.2",
149+
"@webex/test-helper-server": "1.98.2",
150+
"@webex/test-helper-test-users": "1.98.2",
149151
"axe-core": "^2.3.1",
150152
"babel-eslint": "^10.0.3",
151153
"babel-loader": "^8.0.6",

packages/node_modules/@webex/react-component-activity-post/src/index.js

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)