@microsoft/teams-js 2.10.0-beta.1 → 2.10.0-beta.2
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.
- package/README.md +4 -4
- package/dist/MicrosoftTeams.js +239 -394
- package/dist/MicrosoftTeams.js.map +1 -1
- package/dist/MicrosoftTeams.min.js +1 -1
- package/dist/MicrosoftTeams.min.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
@@ -8,7 +8,7 @@ This JavaScript library is part of the [Microsoft Teams developer platform](http
|
|
8
8
|
|
9
9
|
See [instructions](../../README.md#Getting-Started) in the monorepo root for how to clone and build the repository.
|
10
10
|
|
11
|
-
Whenever building or testing the Teams client library, you can run `
|
11
|
+
Whenever building or testing the Teams client library, you can run `pnpm build` or `pnpm test` from the packages/teams-js directory.
|
12
12
|
|
13
13
|
## Installation
|
14
14
|
|
@@ -18,9 +18,9 @@ To install the stable [version](https://learn.microsoft.com/javascript/api/overv
|
|
18
18
|
|
19
19
|
`npm install --save @microsoft/teams-js`
|
20
20
|
|
21
|
-
###
|
21
|
+
### pnpm
|
22
22
|
|
23
|
-
`
|
23
|
+
`pnpm add @microsoft/teams-js`
|
24
24
|
|
25
25
|
### Production
|
26
26
|
|
@@ -30,7 +30,7 @@ You can reference these files directly [from here](https://res.cdn.office.net/te
|
|
30
30
|
|
31
31
|
### As a package
|
32
32
|
|
33
|
-
Install either using npm or
|
33
|
+
Install either using npm or pnpm.
|
34
34
|
|
35
35
|
**If you are using any dependency loader** such as [RequireJS](http://requirejs.org/) or [SystemJS](https://github.com/systemjs/systemjs) or module bundler such as [browserify](http://browserify.org/), [webpack](https://webpack.github.io/), you can use `import` syntax to import specific modules. For e.g.
|
36
36
|
|