Skip to content

Commit b768422

Browse files
authored
Merge pull request #6 from andrewconnell/fy2019q3-refresh
FY2019Q3 Quarterly refresh
2 parents f77c27d + b504915 commit b768422

File tree

11 files changed

+10951
-7152
lines changed

11 files changed

+10951
-7152
lines changed

02 Create AzureAD Application.pptx

-34.8 KB
Binary file not shown.
7 Bytes
Binary file not shown.

demos/01-create-app/graph-tutorial/package-lock.json

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

demos/01-create-app/graph-tutorial/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
"version": "0.1.0",
44
"private": true,
55
"dependencies": {
6-
"@fortawesome/fontawesome-free": "^5.4.2",
7-
"@microsoft/microsoft-graph-client": "^1.3.0",
8-
"bootstrap": "^4.1.3",
9-
"moment": "^2.22.2",
10-
"msal": "^0.2.3",
11-
"react": "^16.6.0",
12-
"react-dom": "^16.6.0",
6+
"@fortawesome/fontawesome-free": "^5.7.2",
7+
"@microsoft/microsoft-graph-client": "^1.5.2",
8+
"bootstrap": "^4.3.1",
9+
"moment": "^2.24.0",
10+
"msal": "^0.2.4",
11+
"react": "^16.8.4",
12+
"react-dom": "^16.8.4",
1313
"react-router-dom": "^4.3.1",
14-
"react-scripts": "2.1.0",
15-
"reactstrap": "^6.5.0"
14+
"react-scripts": "2.1.5",
15+
"reactstrap": "^7.1.0"
1616
},
1717
"scripts": {
1818
"start": "react-scripts start",

demos/02-add-aad-auth/graph-tutorial/package-lock.json

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

demos/02-add-aad-auth/graph-tutorial/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
"version": "0.1.0",
44
"private": true,
55
"dependencies": {
6-
"@fortawesome/fontawesome-free": "^5.4.2",
7-
"@microsoft/microsoft-graph-client": "^1.3.0",
8-
"bootstrap": "^4.1.3",
9-
"moment": "^2.22.2",
10-
"msal": "^0.2.3",
11-
"react": "^16.6.0",
12-
"react-dom": "^16.6.0",
6+
"@fortawesome/fontawesome-free": "^5.7.2",
7+
"@microsoft/microsoft-graph-client": "^1.5.2",
8+
"bootstrap": "^4.3.1",
9+
"moment": "^2.24.0",
10+
"msal": "^0.2.4",
11+
"react": "^16.8.4",
12+
"react-dom": "^16.8.4",
1313
"react-router-dom": "^4.3.1",
14-
"react-scripts": "^2.1.0",
15-
"reactstrap": "^6.5.0"
14+
"react-scripts": "2.1.5",
15+
"reactstrap": "^7.1.0"
1616
},
1717
"scripts": {
1818
"start": "react-scripts start",

demos/03-add-msgraph/graph-tutorial/package-lock.json

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

demos/03-add-msgraph/graph-tutorial/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
"version": "0.1.0",
44
"private": true,
55
"dependencies": {
6-
"@fortawesome/fontawesome-free": "^5.4.2",
7-
"@microsoft/microsoft-graph-client": "^1.3.0",
8-
"bootstrap": "^4.1.3",
9-
"moment": "^2.22.2",
10-
"msal": "^0.2.3",
11-
"react": "^16.6.0",
12-
"react-dom": "^16.6.0",
6+
"@fortawesome/fontawesome-free": "^5.7.2",
7+
"@microsoft/microsoft-graph-client": "^1.5.2",
8+
"bootstrap": "^4.3.1",
9+
"moment": "^2.24.0",
10+
"msal": "^0.2.4",
11+
"react": "^16.8.4",
12+
"react-dom": "^16.8.4",
1313
"react-router-dom": "^4.3.1",
14-
"react-scripts": "^2.1.0",
15-
"reactstrap": "^6.5.0"
14+
"react-scripts": "2.1.5",
15+
"reactstrap": "^7.1.0"
1616
},
1717
"scripts": {
1818
"start": "react-scripts start",

tutorial/create-app.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Open your command-line interface (CLI), navigate to a directory where you have rights to create files, and run the following commands to install the [create-react-app](https://www.npmjs.com/package/create-react-app) tool and create a new React app.
44

55
```Shell
6-
npm install [email protected].0 -g
6+
npm install [email protected].5 -g
77
create-react-app graph-tutorial
88
```
99

@@ -28,8 +28,8 @@ Before moving on, install some additional packages that you will use later:
2828
Run the following command in your CLI.
2929

3030
```Shell
31-
npm install [email protected] bootstrap@4.1.3 reactstrap@6.5.0 @fortawesome/fontawesome-free@5.4.2
32-
npm install moment@2.22.2 [email protected].3 @microsoft/microsoft-graph-client@1.3.0
31+
npm install [email protected] bootstrap@4.3.1 reactstrap@7.1.0 @fortawesome/fontawesome-free@5.7.2
32+
npm install moment@2.24.0 [email protected].4 @microsoft/microsoft-graph-client@1.5.2
3333
```
3434

3535
## Design the app
4.8 KB
Loading

0 commit comments

Comments
 (0)