Skip to content

Commit

Permalink
Merge pull request #321 from pnp/preview
Browse files Browse the repository at this point in the history
Merge 4.0.1 into master
  • Loading branch information
wictorwilen authored Jun 28, 2022
2 parents 1cc7359 + d9b87c8 commit e02e11c
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
10 changes: 10 additions & 0 deletions packages/generator-teams/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).


## [*4.0.1*]- <*2022-06-28*>

### Fixes

* Fixed an issue with tab configuration

### Changes

* Updated dependencies

## [*4.0.0*]- <*2022-06-23*>

### Added
Expand Down
2 changes: 1 addition & 1 deletion packages/generator-teams/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "generator-teams",
"version": "4.0.0",
"version": "4.0.1",
"description": "Yeoman generator for Microsoft Teams Apps, including support for extending Teams apps to other parts of the Microsoft 365 ecosystem.",
"main": "generators/app/index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/generator-teams/src/app/GeneratorTeamsApp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -624,7 +624,7 @@ export class GeneratorTeamsApp extends Generator {
// if we have added any react based components
if (this.options.reactComponents) {
Yotilities.addAdditionalDeps([
["msteams-react-base-component", "^4.0.0"]
["msteams-react-base-component", "^4.0.1"]
], this.fs);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@ export const <%=tabReactComponentName%>Config = () => {
suggestedDisplayName: "<%=tabTitle%>",
removeUrl: host + "/<%=tabName%>/remove.html?theme={theme}",
entityId: entityId.current
}).then(() => {
saveEvent.notifySuccess();
});
app.notifySuccess();
};

useEffect(() => {
Expand Down

0 comments on commit e02e11c

Please sign in to comment.