Skip to content

Commit

Permalink
build(development): removed express and middleware
Browse files Browse the repository at this point in the history
BREAKING CHANGE:

removed express and middleware and mocha tests. Will now be just using
webpack-dev-server for dev process.
  • Loading branch information
jnmorse committed Jul 21, 2019
1 parent 71c952c commit 404d219
Show file tree
Hide file tree
Showing 16 changed files with 1,075 additions and 2,260 deletions.
10 changes: 7 additions & 3 deletions .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,11 @@
],
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-syntax-dynamic-import",
"react-hot-loader/babel"
]
"@babel/plugin-syntax-dynamic-import"
],
"env": {
"development": {
"plugins": ["react-hot-loader/babel"]
}
}
}
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

1. [Author](#author)
2. [How To Get Started](#how-to-get-started)
- [Prerequisites](#prerequisites)
- [Install Locally](#install-locally)
- [Build For Production](#build-for-production)
- [Prerequisites](#prerequisites)
- [Install Locally](#install-locally)
- [Build For Production](#build-for-production)

My Own attempt to create a starting point for react projects. Will attempt to
My Own attempt to create a starting point for react projects. Will attempt to
improve as I get more accustomed to work with these tools.

Any contributions will be welcome.
Expand All @@ -21,8 +21,7 @@ Follow these directions to get started.

## Installing Locally

*Using Degit*
___
### Using Degit

```sh
npx degit jnmorse/react-webpack project-name
Expand All @@ -31,8 +30,9 @@ npm install
npm run dev
```

*Git*
___
### Git

---

```sh
git clone https://github.com/jnmorse/react-webpack.git project-folder --depth 1
Expand All @@ -51,7 +51,7 @@ To use in production change NODE_ENV in the `.env` file to production.
npm run build
```

## Want to Contribute?
## Want to Contribute

Read our [Contributing Guide](.github/CONTRIBUTING.md)

Expand All @@ -65,4 +65,4 @@ This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md

## Acknowledgements

* [FreeCodeCamp](https://freecodecamp.org/) for getting me started on React
- [FreeCodeCamp](https://freecodecamp.org/) for getting me started on React
14 changes: 0 additions & 14 deletions index.js

This file was deleted.

Loading

0 comments on commit 404d219

Please sign in to comment.