-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- changed file permissions to 644 - added babel transform class properties plugin - added eslint plugin to go with babel plugin - added babelrc to package.json - added some binary font and image filetypes to the file loader - changed webpack build to production
- Loading branch information
1 parent
3febf99
commit d3ef57d
Showing
4 changed files
with
84 additions
and
88 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,22 +1,24 @@ | ||
module.exports = { | ||
dependencies: [ | ||
'i', | ||
'react', | ||
'react-dom', | ||
'prop-types', | ||
'webpack', | ||
'css-loader', | ||
'style-loader', | ||
'file-loader', | ||
"i", | ||
"react", | ||
"react-dom", | ||
"webpack", | ||
"prop-types", | ||
"css-loader", | ||
"style-loader", | ||
"file-loader" | ||
], | ||
devDependencies: [ | ||
'i', | ||
'--save-dev', | ||
'babel-cli', | ||
'babel-core', | ||
'babel-loader', | ||
'babel-plugin-transform-object-rest-spread', | ||
'babel-plugin-transform-react-jsx', | ||
'babel-preset-env', | ||
], | ||
"i", | ||
"--save-dev", | ||
"babel-cli", | ||
"babel-core", | ||
"babel-loader", | ||
"babel-plugin-transform-object-rest-spread", | ||
"babel-plugin-transform-react-jsx", | ||
"babel-preset-env", | ||
"babel-plugin-transform-class-properties", | ||
"eslint-plugin-class-property" | ||
] | ||
}; |
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
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