-
Notifications
You must be signed in to change notification settings - Fork 186
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(deps): Upgrade deps & support ts internally (#100)
- Loading branch information
1 parent
02d5f01
commit 5b506d8
Showing
30 changed files
with
10,496 additions
and
7,437 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
{ | ||
"presets": [ | ||
"@babel/preset-typescript", | ||
"@babel/preset-env", | ||
"@babel/preset-react" | ||
] | ||
], | ||
"plugins": ["@babel/plugin-proposal-class-properties"] | ||
} |
This file was deleted.
Oops, something went wrong.
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
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
Large diffs are not rendered by default.
Oops, something went wrong.
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,24 +1,22 @@ | ||
{ | ||
"name": "office-ui-fabric-react-playroom", | ||
"private": true, | ||
"version": "1.0.0", | ||
"description": "Office UI Fabric React Playroom", | ||
"scripts": { | ||
"playroom:start": "playroom start", | ||
"playroom:build": "playroom build" | ||
}, | ||
"dependencies": { | ||
"office-ui-fabric-react": "^7.58.0", | ||
"playroom": "^0.10.1", | ||
"react": "^16.11.0" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.2.0", | ||
"@babel/preset-env": "^7.2.0", | ||
"@babel/preset-react": "^7.0.0", | ||
"@babel/preset-typescript": "^7.1.0", | ||
"@types/react": "^16.7.13", | ||
"babel-loader": "^8.0.4", | ||
"typescript": "3.7.2" | ||
} | ||
} | ||
{ | ||
"name": "office-ui-fabric-react-playroom", | ||
"private": true, | ||
"version": "1.0.0", | ||
"description": "Office UI Fabric React Playroom", | ||
"scripts": { | ||
"build": "node ./../../bin/cli build", | ||
"start": "node ./../../bin/cli start" | ||
}, | ||
"dependencies": { | ||
"office-ui-fabric-react": "^7.70.0" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.7.5", | ||
"@babel/plugin-proposal-class-properties": "^7.7.4", | ||
"@babel/preset-env": "^7.7.6", | ||
"@babel/preset-react": "^7.7.4", | ||
"@babel/preset-typescript": "^7.7.4", | ||
"babel-loader": "^8.0.6", | ||
"typescript": "3.7.3" | ||
} | ||
} |
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
Oops, something went wrong.