-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Upgrade config files to Rush 5 syntax * rush update * Start updating scripts to avoid a phantom node_modules folder in the repository root * update rush version * update lint-staged to ignore common/scripts * add hooks * update shrinkwrap * update snapshots * update experiments snapshot * change files * update snapshots * add tslib as a dependency in dashboard * dashboard change file * update DatePicker snapshots * add apps/vr-tests/** to ignore of lint-staged * add newline * should be rush update --full instead of --force * generate runs with full and update runs without full * change type to none for upgrading react-test-renderer * add newline to package.json * update to rush-update * update SpinButton snapshot to remove undefined * change file for prettier fixes in fabric-website
- Loading branch information
1 parent
19037b6
commit f425097
Showing
271 changed files
with
1,492 additions
and
5,678 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
149 changes: 64 additions & 85 deletions
149
apps/fabric-website/src/pages/GetStarted/GetStartedPage.tsx
Large diffs are not rendered by default.
Oops, something went wrong.
11 changes: 11 additions & 0 deletions
11
common/changes/@uifabric/dashboard/pgonzal-upgrade-to-rush-5_2018-09-07-22-32.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"changes": [ | ||
{ | ||
"packageName": "@uifabric/dashboard", | ||
"comment": "add tslib as a dependency in dashboard", | ||
"type": "patch" | ||
} | ||
], | ||
"packageName": "@uifabric/dashboard", | ||
"email": "natalie.ethell@microsoft.com" | ||
} |
11 changes: 11 additions & 0 deletions
11
common/changes/@uifabric/experiments/pgonzal-upgrade-to-rush-5_2018-09-06-21-14.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"changes": [ | ||
{ | ||
"packageName": "@uifabric/experiments", | ||
"comment": "react-test-renderer version updated 16.4.2 -> 16.5.0", | ||
"type": "none" | ||
} | ||
], | ||
"packageName": "@uifabric/experiments", | ||
"email": "natalie.ethell@microsoft.com" | ||
} |
11 changes: 11 additions & 0 deletions
11
common/changes/@uifabric/fabric-website/pgonzal-upgrade-to-rush-5_2018-09-12-18-10.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"changes": [ | ||
{ | ||
"packageName": "@uifabric/fabric-website", | ||
"comment": "prettier fixes", | ||
"type": "patch" | ||
} | ||
], | ||
"packageName": "@uifabric/fabric-website", | ||
"email": "naethell@microsoft.com" | ||
} |
11 changes: 11 additions & 0 deletions
11
common/changes/office-ui-fabric-react/pgonzal-upgrade-to-rush-5_2018-09-06-21-14.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"changes": [ | ||
{ | ||
"packageName": "office-ui-fabric-react", | ||
"comment": "react-test-renderer version updated 16.4.2 -> 16.5.0", | ||
"type": "none" | ||
} | ||
], | ||
"packageName": "office-ui-fabric-react", | ||
"email": "natalie.ethell@microsoft.com" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,41 @@ | ||
{ | ||
"customCommands": [ | ||
"$schema": "https://developer.microsoft.com/json-schemas/rush/v5/command-line.schema.json", | ||
"commands": [ | ||
{ | ||
"name": "code-style", | ||
"summary": "Runs prettier and tslint.", | ||
"documentation": "Runs prettier and tslint for each of the packages that have a code-style task.", | ||
"parallelized": true | ||
"commandKind": "bulk", | ||
"description": "Runs prettier and tslint for each of the packages that have a code-style task.", | ||
"enableParallelism": true | ||
} | ||
], | ||
"customOptions": { | ||
"--production": { | ||
"optionType": "flag", | ||
"parameters": [ | ||
{ | ||
"longName": "--production", | ||
"parameterKind": "flag", | ||
"description": "Builds production bits.", | ||
"associatedCommands": ["build", "rebuild"] | ||
"associatedCommands": [ | ||
"build", | ||
"rebuild" | ||
] | ||
}, | ||
"--lint": { | ||
"optionType": "flag", | ||
{ | ||
"longName": "--lint", | ||
"parameterKind": "flag", | ||
"description": "Builds with linting.", | ||
"associatedCommands": ["build", "rebuild"] | ||
"associatedCommands": [ | ||
"build", | ||
"rebuild" | ||
] | ||
}, | ||
"--npm-install-mode": { | ||
"optionType": "flag", | ||
{ | ||
"longName": "--npm-install-mode", | ||
"parameterKind": "flag", | ||
"description": "Skips tasks that are irrelevant during npm install", | ||
"associatedCommands": ["build", "rebuild"] | ||
"associatedCommands": [ | ||
"build", | ||
"rebuild" | ||
] | ||
} | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"$schema": "https://developer.microsoft.com/json-schemas/rush/v5/common-versions.schema.json", | ||
"preferredVersions": { | ||
"webpack": "3.11.0", | ||
"webpack-dev-server": "2.11.2", | ||
"webpack-cli": "2.0.15" | ||
} | ||
} |
Oops, something went wrong.