Skip to content
This repository was archived by the owner on Jul 20, 2024. It is now read-only.

Commit 8e4e9f3

Browse files
committed
update deps
1 parent 2a0151f commit 8e4e9f3

File tree

5 files changed

+553
-1541
lines changed

5 files changed

+553
-1541
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 11.0.0
2+
3+
* upgrade to typescript 2.9.2
4+
* gulp is now a peer dependancy rather
5+
* remove use of gulp-util as it is deprecated
6+
17
## 10.0.0
28

39
* upgrade to typescript 2.8.3 and webpack 4

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ Wraps together:
44

55
* webpack
66
* typescript
7-
* babel
87
* gulp
98
* tslint
109

@@ -13,7 +12,7 @@ leaving you a nice simple bundle to use in your browser
1312

1413
## setting up
1514

16-
* install node > v4 + npm (note: node v6 is preferred)
15+
* install node > v4 + npm (note: node v8 is preferred)
1716
* npm init your project in a folder `npm init`
1817
* install global gulp `npm install -g gulp`
1918
* add gulp package `npm install gulp --save-dev`
@@ -86,7 +85,6 @@ You now have the following commands:
8685

8786
* linting (tslint)
8887
* typescript (ts -> es6)
89-
* babel (es6 -> es5)
9088
* webpack (bundling)
9189

9290
and then dump out the bundles.

index.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
1-
'use strict';
2-
3-
const gutil = require('gulp-util');
1+
const log = require('fancy-log');
42
const webpack = require('webpack');
53
const config = require('./webpack.config');
64
const releaseConfig = require('./webpack.config.release');
75

86
const handleWebpackOutput = (err, stats) => {
97
if (err) throw new gutil.PluginError('tsPipeline', err);
10-
gutil.log('[tsPipeline]', stats.toString({
8+
log('[tsPipeline]', stats.toString({
119
colors: true,
1210
chunks: false
1311
}));

package.json

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
{
22
"name": "gulp-webpack-typescript-pipeline",
3-
"version": "10.0.3",
3+
"version": "11.0.0",
44
"description": "easy transpiling and bundling of typescript back to es5",
55
"main": "index.js",
6-
"engines": {
7-
"node": ">=6.3.0"
8-
},
96
"repository": {
107
"type": "git",
118
"url": "git+https://github.com/stevejhiggs/gulp-webpack-typescript-pipeline"
@@ -16,13 +13,13 @@
1613
"author": "steve higgs",
1714
"license": "MIT",
1815
"dependencies": {
19-
"gulp": "^3.9.1",
20-
"gulp-util": "^3.0.8",
21-
"ts-loader": "^4.2.0",
22-
"tslint": "^5.9.1",
16+
"ts-loader": "^4.4.1",
2317
"tslint-loader": "^3.6.0",
24-
"typescript": "^2.8.3",
25-
"webpack": "^4.6.0",
18+
"typescript": "^2.9.2",
19+
"webpack": "^4.12.0",
2620
"webpack-node-externals": "^1.7.2"
21+
},
22+
"peerDependencies": {
23+
"gulp": "^3.9.1"
2724
}
2825
}

0 commit comments

Comments
 (0)