Skip to content
This repository was archived by the owner on Aug 1, 2022. It is now read-only.

Commit 762819f

Browse files
committed
v2.3.5
1 parent bcaab0d commit 762819f

File tree

6 files changed

+21
-15
lines changed

6 files changed

+21
-15
lines changed

.npmignore

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
node_modules
2-
lib
2+
src
33
common
44
.gitignore
55
.gitattributes
66
gulpfile.js
77
.travis.yml
8-
test.js
98
jhub.min.js

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Change log
22
==========
33

4+
## 2.3.5 (2016-10-13)
5+
6+
**Fixed**
7+
8+
* Fixed bad JavaScript code
9+
* Updated the way Gulp tests jhub
10+
411
## 2.3.4 (2016-10-08)
512

613
**Fixed**

gulpfile.js

+10-10
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,18 @@ var uglify = require("gulp-uglify");
99
var watch = require('gulp-watch');
1010
var stylish = require('jshint-stylish');
1111
var map = require('map-stream');
12+
var path = require('path');
1213
var events = require('events');
1314
var emmitter = new events.EventEmitter();
14-
var path = require('path');
15+
16+
var pkg = require('./package.json');
17+
var banner = ['/**',
18+
' * <%= pkg.name %> - <%= pkg.description %>',
19+
' * @version <%= pkg.version %>',
20+
' * @link <%= pkg.homepage %>',
21+
' * @license <%= pkg.license %>',
22+
' */',
23+
''].join('\n');
1524

1625
// Custom linting reporter used for error notify
1726
var jsHintErrorReporter = map(function (file, cb) {
@@ -37,15 +46,6 @@ var jsHintErrorReporter = map(function (file, cb) {
3746
cb(null, file);
3847
});
3948

40-
var pkg = require('./package.json');
41-
var banner = ['/**',
42-
' * <%= pkg.name %> - <%= pkg.description %>',
43-
' * @version <%= pkg.version %>',
44-
' * @link <%= pkg.homepage %>',
45-
' * @license <%= pkg.license %>',
46-
' */',
47-
''].join('\n');
48-
4949
gulp.task('build', function () {
5050
return gulp.src(['./common/head.js',
5151
'./common/jsonp.js',

jhub.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* jhub - JavaScript bindings for the GitHub API
3-
* @version 2.3.4
3+
* @version 2.3.5
44
* @link http://willitcompile.net/projects/jhub
55
* @license MIT
66
*/

jhub.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jhub",
3-
"version": "2.3.4",
3+
"version": "2.3.5",
44
"description": "JavaScript bindings for the GitHub API",
55
"main": "index",
66
"repository": {

0 commit comments

Comments
 (0)