Skip to content

Commit bf4963b

Browse files
committed
Prepare to release version 1.3.2
1 parent 39081b7 commit bf4963b

File tree

11 files changed

+2520
-87
lines changed

11 files changed

+2520
-87
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ npm-error
66

77
# build output
88
build/
9-
dist/
109
coverage/
1110

1211
# Visual Studio cache/options directory

README.md

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,14 @@ This JavaScript library is part of the [Microsoft Teams developer platform](http
66
[![Coverage Status](https://coveralls.io/repos/github/OfficeDev/microsoft-teams-library-js/badge.svg?branch=master)](https://coveralls.io/github/OfficeDev/microsoft-teams-library-js?branch=master)
77

88
## Getting Started
9-
1. Clone the repo
10-
2. Navigate to the repo root
11-
3. `yarn install`
12-
4. `gulp`
9+
10+
1. Clone the repo
11+
2. Navigate to the repo root
12+
3. `yarn install`
13+
4. `gulp`
1314

1415
### Installation
16+
1517
To install the stable version:
1618

1719
#### npm
@@ -24,7 +26,7 @@ To install the stable version:
2426

2527
#### Production
2628

27-
You can access [these files on unpkg](https://unpkg.com/@microsoft/teams-js@1.2.5/dist/MicrosoftTeams.min.js), download them, or point your package manager to them.
29+
You can access [these files on unpkg](https://unpkg.com/@microsoft/teams-js@1.3.2/dist/MicrosoftTeams.min.js), download them, or point your package manager to them.
2830

2931
## Usage
3032

@@ -35,26 +37,28 @@ Install either using npm or yarn
3537
**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.
3638

3739
```typescript
38-
import * as microsoftTeams from '@microsoft/teams-js';
40+
import * as microsoftTeams from "@microsoft/teams-js";
3941
```
4042

4143
### As a Script Tag
4244

4345
Reference the library inside of your `.html` page using:
46+
4447
```html
4548
<!-- Microsoft Teams JavaScript API (via CDN) -->
46-
<script src="https://unpkg.com/@microsoft/teams-js@1.2.5/dist/MicrosoftTeams.min.js" integrity="sha384-fTjWNTelhUDsOG+6Xvsly5BVO8estmdrfVmaRQuTGRTtcjHYA3oQANo805/kHXvJ" crossorigin="anonymous"></script>
49+
<script src="https://unpkg.com/@microsoft/teams-js@1.3.2/dist/MicrosoftTeams.min.js" integrity="sha384-THb+EtVmtLJrfkyxSofMOuiqwvgYx3y7idmPMtGAum+I+KKHZDbNaUPbGOSzCu0i" crossorigin="anonymous"></script>
4750

4851
<!-- Microsoft Teams JavaScript API (via npm) -->
49-
<script src="node_modules/@microsoft/teams-js@1.2.5/dist/MicrosoftTeams.min.js"></script>
52+
<script src="node_modules/@microsoft/teams-js@1.3.2/dist/MicrosoftTeams.min.js"></script>
5053

5154
<!-- Microsoft Teams JavaScript API (via local) -->
5255
<script src="MicrosoftTeams.min.js"></script>
5356
```
5457

5558
## Contributing
59+
5660
We strongly welcome and encourage contributions to this project. Please read the [contributor's guide](CONTRIBUTING.md).
5761

58-
- - -
62+
---
5963

60-
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
64+
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.

0 commit comments

Comments
 (0)