Skip to content

Commit

Permalink
Update fluentui version in samples to fix scenario test pipeline (#441)
Browse files Browse the repository at this point in the history
Co-authored-by: Chengcheng Hu <[email protected]>
  • Loading branch information
stephaniewhoo and Chengcheng Hu committed Mar 29, 2023
1 parent 94fc825 commit 14bdaec
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .azure-devops/live-share-pr-scenario.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,15 @@ extends:
cancelTimeoutInMinutes: 1

steps:
- script: "npm install --no-audit --legacy-peer-deps"
- script: "npm install --no-audit"
workingDirectory: ""
displayName: "npm install"

- script: "npm run build"
workingDirectory: ""
displayName: "npm run build"

- script: "npm install --no-audit --legacy-peer-deps"
- script: "npm install --no-audit"
workingDirectory: "${{ variables.sdk_samples_directory }}/javascript/02.react-video"
displayName: "npm install sample"

Expand Down
2 changes: 1 addition & 1 deletion samples/javascript/02.react-video/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"license": "Microsoft",
"author": "Microsoft",
"dependencies": {
"@fluentui/react-components": "^9.9.1",
"@fluentui/react-components": "^9.18.6",
"@fluentui/react-icons": "^2.0.179",
"@fluentui/react-theme": "^9.0.0",
"@fluidframework/azure-client": "~1.0.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
Card,
CardPreview,
CardFooter,
} from "@fluentui/react-components/unstable";
} from "@fluentui/react-components";
import { Image, Text, Button } from "@fluentui/react-components";
import { getFlexRowStyles } from "../styles/layouts";

Expand Down
2 changes: 1 addition & 1 deletion samples/javascript/21.react-media-template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"author": "Microsoft",
"license": "MIT",
"dependencies": {
"@fluentui/react-components": "^9.9.1",
"@fluentui/react-components": "^9.18.6",
"@fluentui/react-icons": "^2.0.179",
"@fluentui/react-theme": "^9.0.0",
"@fluidframework/azure-client": "~1.0.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
Card,
CardPreview,
CardFooter,
} from "@fluentui/react-components/unstable";
} from "@fluentui/react-components";
import { Image, Text, Button, mergeClasses } from "@fluentui/react-components";
import { Delete20Regular } from "@fluentui/react-icons";
import { getFlexRowStyles, getFlexItemStyles } from "../styles/layouts";
Expand Down
2 changes: 1 addition & 1 deletion samples/javascript/22.react-agile-poker/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"author": "Microsoft",
"license": "MIT",
"dependencies": {
"@fluentui/react-components": "^9.9.1",
"@fluentui/react-components": "^9.18.6",
"@fluentui/react-icons": "^2.0.179",
"@fluentui/react-theme": "^9.0.0",
"@fluidframework/azure-client": "~1.0.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { useSharedObjects, useUserStories } from "../live-share-hooks";
import { useTeamsContext } from "../teams-js-hooks/useTeamsContext";
// UI imports
import { Button, Text, Subtitle2 } from "@fluentui/react-components";
import { Card, CardFooter } from "@fluentui/react-components/unstable";
import { Card, CardFooter } from "@fluentui/react-components";
import { getFlexItemStyles } from "../styles/layout";
import * as UI from "../components";
import { LiveSharePage } from "../components/LiveSharePage";
Expand Down
2 changes: 1 addition & 1 deletion samples/typescript/21.react-media-template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"author": "Microsoft",
"license": "MIT",
"dependencies": {
"@fluentui/react-components": "^9.9.1",
"@fluentui/react-components": "^9.18.6",
"@fluentui/react-icons": "^2.0.179",
"@fluentui/react-theme": "^9.0.0",
"@fluidframework/azure-client": "~1.0.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
Card,
CardPreview,
CardFooter,
} from "@fluentui/react-components/unstable";
} from "@fluentui/react-components";
import { Image, Text, Button, mergeClasses } from "@fluentui/react-components";
import { Delete20Regular } from "@fluentui/react-icons";
import { getFlexRowStyles, getFlexItemStyles } from "../styles/layouts";
Expand Down

0 comments on commit 14bdaec

Please sign in to comment.