Skip to content

Commit 21507f0

Browse files
committed
0.3.1 release
1 parent 2886bb8 commit 21507f0

File tree

2 files changed

+16
-11
lines changed

2 files changed

+16
-11
lines changed

gulpfile.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@
66
var gulp = require('gulp');
77

88
// require all tasks
9-
require('./index.js')(gulp, { rootPath: __dirname, srcGlob: ['index.js', './tasks/**/*.js'] });
9+
require('./index.js')(gulp,
10+
{
11+
rootPath: __dirname,
12+
importTasks: ['eslint', 'npm'],
13+
srcGlob: ['index.js', './tasks/**/*.js']
14+
});
1015

1116
/**
1217
* Generates task listing

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "typhonjs-core-gulptasks",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"homepage": "https://github.com/typhonjs/typhonjs-core-gulptasks/",
55
"description": "Provides common gulp tasks shared by TyphonJS and beyond for JSPM / SystemJS projects.",
66
"license": "MIT",
@@ -18,21 +18,21 @@
1818
}
1919
],
2020
"dependencies": {
21-
"jspm": "^0.16.14",
22-
"bluebird": "^3.0.3",
21+
"jspm": "^0.16.19",
22+
"bluebird": "^3.1.1",
2323
"esdoc-es7-plugin": "^0.0.3",
2424
"esdoc-importpath-plugin": "^0.0.1",
25-
"esdoc-plugin-extends-replace": "^0.2.0",
26-
"esdoc-plugin-jspm": "^0.4.0",
25+
"esdoc-plugin-extends-replace": "^0.2.1",
26+
"esdoc-plugin-jspm": "^0.4.1",
2727
"gulp": "^3.9.0",
28-
"gulp-esdoc": "^0.1.0",
29-
"gulp-eslint": "^1.1.0",
30-
"run-sequence": "^1.1.4",
31-
"yargs": "^3.27.0"
28+
"gulp-esdoc": "^0.2.0",
29+
"gulp-eslint": "^1.1.1",
30+
"run-sequence": "^1.1.5",
31+
"yargs": "^3.31.0"
3232
},
3333
"devDependencies": {
3434
"gulp-task-listing": "^1.0.1",
35-
"typhonjs-config-eslint": "^0.2.0"
35+
"typhonjs-config-eslint": "^0.2.1"
3636
},
3737
"main": "index.js",
3838
"scripts": {

0 commit comments

Comments
 (0)