File tree 1 file changed +20
-1
lines changed
1 file changed +20
-1
lines changed Original file line number Diff line number Diff line change 3
3
The point of this app is to experiment with learning react and setting up a good
4
4
base application repo that can be easily forked for new projects down the road.
5
5
6
+ ## Dependencies & Initial Setup
7
+
8
+ ``` bash
9
+ $ npm install -g gulp
10
+ ```
11
+
12
+ ``` bash
13
+ $ npm install
14
+ ```
15
+
6
16
## Build Process
7
17
8
18
``` bash
@@ -15,6 +25,15 @@ transformation process. This includes:
15
25
16
26
* clean
17
27
* browserify
18
- * babel transofmration (for ES6)
28
+ * babel transformation (for ES6)
19
29
* bundling to ` app.js `
20
30
* watchers
31
+
32
+
33
+ ### Client
34
+
35
+ The ` client ` dir is the main folder referenced in the ` gulpfile.js ` . As such all
36
+ of the client files should reside there. The other directories ` client- ` are different
37
+ versions of the app in various stages of its life. For example ` client-basic ` is just that,
38
+ an extremely basic React app. ` client-flux ` is after Flux was introduced. The main
39
+ ` client ` folder is where the final ES6 version of the app resides.
You can’t perform that action at this time.
0 commit comments