Skip to content

Commit

Permalink
- Updating to babel 7
Browse files Browse the repository at this point in the history
- Updated the storybook to version 5
  • Loading branch information
Satyendra Singh Naruka committed Mar 13, 2019
1 parent a3b9b42 commit 4325402
Show file tree
Hide file tree
Showing 6 changed files with 6,415 additions and 1,876 deletions.
40 changes: 35 additions & 5 deletions .babelrc
@@ -1,9 +1,39 @@
{
"presets": [
["env", {
"modules": false
}],
"stage-0",
"react"
[
"@babel/preset-env",
{
"modules": false
}
],
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-syntax-dynamic-import",
"@babel/plugin-syntax-import-meta",
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-json-strings",
[
"@babel/plugin-proposal-decorators",
{
"legacy": true
}
],
"@babel/plugin-proposal-function-sent",
"@babel/plugin-proposal-export-namespace-from",
"@babel/plugin-proposal-numeric-separator",
"@babel/plugin-proposal-throw-expressions",
"@babel/plugin-proposal-export-default-from",
"@babel/plugin-proposal-logical-assignment-operators",
"@babel/plugin-proposal-optional-chaining",
[
"@babel/plugin-proposal-pipeline-operator",
{
"proposal": "minimal"
}
],
"@babel/plugin-proposal-nullish-coalescing-operator",
"@babel/plugin-proposal-do-expressions",
"@babel/plugin-proposal-function-bind"
]
}

0 comments on commit 4325402

Please sign in to comment.