Skip to content

Commit 95ab2dc

Browse files
committed
0.3.0 release
1 parent 4e8423d commit 95ab2dc

File tree

3 files changed

+19
-4
lines changed

3 files changed

+19
-4
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,15 @@
1+
## 0.3.0 (2015-11-08)
2+
- For esdoc task added [esdoc-importpath-plugin](https://www.npmjs.com/package/esdoc-importpath-plugin]) and
3+
[esdoc-es7-plugin](https://www.npmjs.com/package/esdoc-es7-plugin) plugin support.
4+
- updated [esdoc-plugin-jspm](https://www.npmjs.com/package/esdoc-plugin-jspm) to `0.4.0` and
5+
[esdoc-plugin-extends-replace](https://www.npmjs.com/package/esdoc-plugin-extends-replace) to `0.2.0`.
6+
7+
## 0.2.0 (2015-11-06)
8+
- Added [esdoc-plugin-extends-replace](https://www.npmjs.com/package/esdoc-plugin-extends-replace) plugin support +
9+
updated [esdoc-plugin-jspm](https://www.npmjs.com/package/esdoc-plugin-jspm) to `0.3.1` which now does automatic
10+
parsing of JSPM packages.
11+
- Added `importTasks` optional parameter which takes an array of task groups to load. The task groups are: 'esdoc',
12+
'eslint', 'git', 'jspm', 'npm', 'test'.
13+
114
## 0.1.0 (2015-11-01)
215
- Initial release

package.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "typhonjs-core-gulptasks",
3-
"version": "0.2.0",
3+
"version": "0.3.0",
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",
@@ -20,8 +20,10 @@
2020
"dependencies": {
2121
"jspm": "^0.16.14",
2222
"bluebird": "^3.0.3",
23-
"esdoc-plugin-extends-replace": "^0.1.0",
24-
"esdoc-plugin-jspm": "^0.3.1",
23+
"esdoc-es7-plugin": "^0.0.3",
24+
"esdoc-importpath-plugin": "^0.0.1",
25+
"esdoc-plugin-extends-replace": "^0.2.0",
26+
"esdoc-plugin-jspm": "^0.4.0",
2527
"gulp": "^3.9.0",
2628
"gulp-esdoc": "^0.1.0",
2729
"gulp-eslint": "^1.0.0",

tasks/jspm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ module.exports = function(gulp, options)
7171
{
7272
var entry = bundleInfo.entryPoints[cntr];
7373

74-
var inMemoryBuild = entry.inMemoryBuild || false;
74+
var inMemoryBuild = entry.inMemoryBuild || argv.travis || process.env.TRAVIS || false;
7575
var destBaseDir = entry.destBaseDir;
7676
var destFilename = entry.destFilename;
7777
var srcFilename = entry.src;

0 commit comments

Comments
 (0)