Skip to content

Commit

Permalink
2 - part one
Browse files Browse the repository at this point in the history
  • Loading branch information
btholt committed Mar 25, 2019
1 parent 5ae3dce commit b7b49a7
Show file tree
Hide file tree
Showing 10 changed files with 1,504 additions and 14 deletions.
10 changes: 10 additions & 0 deletions .editorconfig
@@ -0,0 +1,10 @@
# editorconfig.org
root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
insert_final_newline = true
trim_trailing_whitespace = true
15 changes: 15 additions & 0 deletions .eslintrc.json
@@ -0,0 +1,15 @@
{
"extends": ["eslint:recommended", "prettier", "prettier/react"],
"parserOptions": {
"ecmaVersion": 2016,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"env": {
"es6": true,
"browser": true,
"node": true
}
}
7 changes: 7 additions & 0 deletions .gitignore
@@ -0,0 +1,7 @@
node_modules
.cache/
dist/
.env
.DS_Store
coverage/
.vscode/
1 change: 1 addition & 0 deletions .prettierrc
@@ -0,0 +1 @@
{}
14 changes: 14 additions & 0 deletions README.md
@@ -0,0 +1,14 @@
# Welcome to the Complete Intro to React v4 and Intermediate React v1!

[See the course website here][v4].

This course was written for and recorded by [Frontend Masters][fem]. The code here is licensed under the Apache 2.0 license and the [course notes][v4] are licensed under the Creative Commons Attribution-NonCommercial 4.0 International license.

## Debugging

Parcel is an ever evolving project that's just getting better. If you run into problems with it not respecting changes (particularly to your `.babelrc` or `.env` files) then delete the `dist/` and the `.cache/` directories. You can do this in bash by running from the root directoy of your project `rm -rf dist/ .cache/` or just by deleting those directories in your editor. This will force Parcel to start over and not cache anything.

If you run into anything else, open an issue and we'll try to clarify or help.

[v4]: https://bit.ly/react-v4
[fem]: https://frontendmasters.com/courses/react/

0 comments on commit b7b49a7

Please sign in to comment.