Skip to content

Commit ad344d8

Browse files
Merge pull request #8 from ArrayZoneYour/develop
v0.0.1
2 parents 3f61bbc + 67efc58 commit ad344d8

28 files changed

+5561
-208
lines changed

.babelrc

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
11
{
2-
"presets": ["@babel/env", "@babel/react", "@babel/preset-typescript"]
2+
"presets": [
3+
"react-hot-loader/babel",
4+
"@babel/env",
5+
"@babel/react",
6+
"@babel/preset-typescript"
7+
]
38
}

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
node_modules/
2-
.idea/
2+
.idea/
3+
dist/

README.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
## Circle
2+
3+
### Quick Start
4+
5+
```bash
6+
# Shell 1
7+
cd server
8+
npm install
9+
npm run start
10+
```
11+
```bash
12+
# shell 2
13+
npm install
14+
npm run start
15+
```
16+
17+
### Feature Map v0.0.1
18+
19+
- [x] Webpack Naive Pipeline
20+
- [x] Quick Start apollo-server and apollo-client
21+
- [x] Integrate Ant Design (It doesn't support CSS Module)
22+
- [x] Babel 7.0 Bug Fix
23+
- [x] Doc Support
24+
- [x] Make Menu Configurable
25+
- [x] Mock Apollo Server Integrate
26+
- [x] Integrate the basic router
27+
- [x] Route automatically by the construction under `src/pages`
28+
- [x] Refresh the browser when code change
29+
- [x] Code Review and Release v0.0.1
30+
31+
### Feature Map v0.0.2
32+
33+
- [ ] TreeShaking npm packages
34+
- [ ] Separate the css and js when webpack build
35+
- [ ] Debug mode (Show the build time ... info on the right-bottom corner)
36+
37+
### Feature Map
38+
39+
- [ ] Visualize the folder structure and code lines
40+
- [ ] Visualize the npm dependencies
41+
42+
## License
43+
44+
MIT

0 commit comments

Comments
 (0)