aboutsummaryrefslogtreecommitdiff
path: root/node_modules/gulp-typescript/readme.md
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2017-08-14 05:01:11 +0200
committerFlorian Dold <florian.dold@gmail.com>2017-08-14 05:02:09 +0200
commit363723fc84f7b8477592e0105aeb331ec9a017af (patch)
tree29f92724f34131bac64d6a318dd7e30612e631c7 /node_modules/gulp-typescript/readme.md
parent5634e77ad96bfe1818f6b6ee70b7379652e5487f (diff)
downloadwallet-core-363723fc84f7b8477592e0105aeb331ec9a017af.tar.xz
node_modules
Diffstat (limited to 'node_modules/gulp-typescript/readme.md')
-rw-r--r--node_modules/gulp-typescript/readme.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/node_modules/gulp-typescript/readme.md b/node_modules/gulp-typescript/readme.md
index d70dd91c0..b3bf866c5 100644
--- a/node_modules/gulp-typescript/readme.md
+++ b/node_modules/gulp-typescript/readme.md
@@ -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
@@ -73,7 +73,7 @@ gulp.task('default', function () {
return gulp.src('src/**/*.ts')
.pipe(ts({
noImplicitAny: true,
- out: 'output.js'
+ outFile: 'output.js'
}))
.pipe(gulp.dest('built/local'));
});
@@ -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```.