Skip to content

Commit

Permalink
Update global gulp references to gulp-cli
Browse files Browse the repository at this point in the history
Users should not install gulp globally. Gulp-cli is the package for global installation, and gulp is the package for project level consumption.
  • Loading branch information
owendismuke authored May 22, 2017
1 parent 44b4249 commit 4907612
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ Features

How to install
--------------
##### 1. Install gulp
##### 1. Install gulp CLI
```shell
npm install --global gulp
npm install --global gulp-cli
```
##### 2. Install gulp in the project dependency
```shell
Expand Down Expand Up @@ -219,7 +219,7 @@ Build gulp-typescript
1. Clone this repo
2. Execute `npm install`
3. Execute `git submodule update --init` to pull down the TypeScript compiler/services versions used in the test suite.
4. Ensure the gulp CLI is globally installed (`npm install -g gulp`).
4. Ensure the gulp CLI is globally installed (`npm install -g gulp-cli`).
5. Execute the tests: `gulp`.

The plugin uses itself to compile. There are 2 build directories, ```release``` and ```release-2```. ```release``` must always contain a working build. ```release-2``` contains the last build. When you run ```gulp compile```, the build will be saved in the ```release-2``` directory. ```gulp test``` will compile the source to ```release-2```, and then it will run some tests. If these tests give no errors, you can run ```gulp release```. The contents from ```release-2``` will be copied to ```release```.
Expand Down

0 comments on commit 4907612

Please sign in to comment.