Skip to content

Instantly share code, notes, and snippets.

https://github.com/Sergioamjr/replacing-redux-with-react-hooks/blob/master/src/store/reducers/auth.js
@maribel1995
maribel1995 / .travis.yml
Last active March 24, 2021 09:25
Deploying your app to Netlify with Travis using Webpack
language: node_js
node_js:
- 12
before_script:
- npm install
- npm run build
deploy:
provider: netlify
site: SITE_ID
edge: true
@maribel1995
maribel1995 / .eslintrc.json
Created July 7, 2020 21:12
config para webpack padrao para aplicacoes react
{
"parserOptions": {
"ecmaVersion": 7,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"parser": "babel-eslint",
"rules": {