Skip to content

Commit

Permalink
Use local gulp when building
Browse files Browse the repository at this point in the history
  • Loading branch information
ewu02 committed Dec 1, 2014
1 parent 4807085 commit 46adbab
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,11 @@ Develop
git clone https://github.com/josebalius/ngReactGrid.git
cd ngReactGrid

# Install all the the dev dependencies, Gulp, etc.
# Install all the the dev dependencies
npm install
npm install -g gulp

# Run gulp inside the ngReactGrid to watch your files and build
gulp
npm run gulp
```

I use examples/basic.html to implement features, it is my "sandbox" environment. This file however is always changing (with whatever it is that I am working on) so beware. I suggest you copy this file and set it up your way. I will be creating more examples when I have some time.
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"version": "0.6.5",
"description": "A really fast Angular grid using the power of React to render",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"test": "echo \"Error: no test specified\" && exit 1",
"gulp": "gulp"
},
"repository": {
"type": "git",
Expand All @@ -16,7 +17,7 @@
},
"homepage": "http://josebalius.github.io/ngReactGrid/",
"devDependencies": {
"gulp": "~3.6.0",
"gulp": "^3.6.2",
"gulp-react": "0.3.3",
"gulp-concat": "2.2.0",
"gulp-filter": "0.4.1",
Expand All @@ -25,5 +26,4 @@
"gulp-replace": "0.3.0",
"gulp-browserify": "0.5.0"
}

}

0 comments on commit 46adbab

Please sign in to comment.