Skip to content

Commit 0149905

Browse files
committed
update
1 parent e3f14e5 commit 0149905

File tree

19 files changed

+16971
-87
lines changed

19 files changed

+16971
-87
lines changed

React_Full_Project/.babelrc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"presets": [
3+
["react"], ["env"]
4+
],
5+
"plugins": ["transform-object-rest-spread"]
6+
}

React_Full_Project/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,5 @@ build
1212
# misc
1313
.DS_Store
1414
.env
15+
.idea
1516
npm-debug.log

React_Full_Project/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
## Changelog CoreUI react
2+
3+
### 2017.08.01
4+
- Sidebar component:
5+
- title item with optional wrapper and class (_nav.js)
6+
- nav link item with optional badge
7+
- code refactoring
8+
9+
### 2017.07.31
10+
- moved to [reactstrap](https://reactstrap.github.io/)
11+
- moved to [webpack](https://webpack.js.org/) (dropping gulp)
12+
- data driven Sidebar component (_nav.js)
13+

React_Full_Project/CORE_REACT.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# CoreUI React version
2+
3+
## Intro
4+
5+
It uses Sass (with .scss). The style is loaded at the component level.
6+
7+
Dependencies can be handled by **npm**.
8+
9+
## Directories
10+
11+
```
12+
src (js|jsx source)
13+
scss (scss source)
14+
public (html template)
15+
public/img (images)
16+
```
17+
18+
## Usage
19+
20+
**npm i** - to install dependencies
21+
22+
## Sctipts
23+
24+
**npm start** for developing (it runs webpack-dev-server)
25+
26+
**npm run build** to run a dev build
27+
28+
**npm run clean** to clean build dir
29+
30+
**npm run dev** to run a dev build with watching filesystem for changes

0 commit comments

Comments
 (0)