Skip to content

Commit e6ab200

Browse files
committed
Update README.md
instructions for running compiler
1 parent 389bfeb commit e6ab200

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,23 @@ Default: date = new Date()
1919
```
2020
<DatepickerInput date={new Date()} />
2121
```
22+
23+
minified javascript and css are located in directory `src/build`
24+
25+
###Development
26+
If you want to make changes in code and use benefits of compiling code, you need to have gulp and bower installed.
27+
28+
```
29+
npm install -g gulp
30+
npm install -g bower
31+
```
32+
33+
before running gulp for the first time, install dependencies and download other stuff via bower
34+
35+
```
36+
cd react-datepicker
37+
npm install
38+
bower install
39+
```
40+
41+
Compile code via command `gulp build` or `gulp`

0 commit comments

Comments
 (0)