This repository was archived by the owner on Jul 20, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +553
-1541
lines changed Expand file tree Collapse file tree 5 files changed +553
-1541
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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
9290and then dump out the bundles.
Original file line number Diff line number Diff line change 1- 'use strict' ;
2-
3- const gutil = require ( 'gulp-util' ) ;
1+ const log = require ( 'fancy-log' ) ;
42const webpack = require ( 'webpack' ) ;
53const config = require ( './webpack.config' ) ;
64const releaseConfig = require ( './webpack.config.release' ) ;
75
86const 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 } ) ) ;
Original file line number Diff line number Diff line change 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"
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}
You can’t perform that action at this time.
0 commit comments