Skip to content
This repository was archived by the owner on Mar 16, 2021. It is now read-only.

Commit 07bfef8

Browse files
author
Chris Ferdinandi
committed
Fixed Browserify bug
1 parent 95eb849 commit 07bfef8

15 files changed

+20
-18
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,8 @@ Gulp Boilerplate is licensed under the [MIT License](http://gomakethings.com/mit
205205

206206
Gulp Boilerplate uses [semantic versioning](http://semver.org/).
207207

208+
* v1.3.2 - May 13, 2015
209+
* Fixed Browserify `window` bug.
208210
* v1.3.1 - March 9, 2015
209211
* Fixed UMD wrapper.
210212
* v1.3.0 - January 7, 2014

dist/css/myplugin.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* gulp-boilerplate v1.3.1
2+
* gulp-boilerplate v1.3.2
33
* My Gulp.js boilerplate for creating new web projects, by Chris Ferdinandi.
44
* http://github.com/cferdinandi/Plugin
55
*

dist/css/myplugin.min.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
/** gulp-boilerplate v1.3.1, by Chris Ferdinandi | http://github.com/cferdinandi/Plugin | Licensed under MIT: http://gomakethings.com/mit/ */
1+
/** gulp-boilerplate v1.3.2, by Chris Ferdinandi | http://github.com/cferdinandi/Plugin | Licensed under MIT: http://gomakethings.com/mit/ */

dist/js/classList.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* gulp-boilerplate v1.3.1
2+
* gulp-boilerplate v1.3.2
33
* My Gulp.js boilerplate for creating new web projects, by Chris Ferdinandi.
44
* http://github.com/cferdinandi/Plugin
55
*

dist/js/classList.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/js/myplugin.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* gulp-boilerplate v1.3.1
2+
* gulp-boilerplate v1.3.2
33
* My Gulp.js boilerplate for creating new web projects, by Chris Ferdinandi.
44
* http://github.com/cferdinandi/Plugin
55
*
@@ -15,7 +15,7 @@
1515
} else {
1616
root.myPlugin = factory(root);
1717
}
18-
})(this, function (root) {
18+
})(typeof global !== "undefined" ? global : this.window || this.global, function (root) {
1919

2020
'use strict';
2121

dist/js/myplugin.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/dist/css/myplugin.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* gulp-boilerplate v1.3.1
2+
* gulp-boilerplate v1.3.2
33
* My Gulp.js boilerplate for creating new web projects, by Chris Ferdinandi.
44
* http://github.com/cferdinandi/Plugin
55
*

docs/dist/css/myplugin.min.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
/** gulp-boilerplate v1.3.1, by Chris Ferdinandi | http://github.com/cferdinandi/Plugin | Licensed under MIT: http://gomakethings.com/mit/ */
1+
/** gulp-boilerplate v1.3.2, by Chris Ferdinandi | http://github.com/cferdinandi/Plugin | Licensed under MIT: http://gomakethings.com/mit/ */

docs/dist/js/classList.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* gulp-boilerplate v1.3.1
2+
* gulp-boilerplate v1.3.2
33
* My Gulp.js boilerplate for creating new web projects, by Chris Ferdinandi.
44
* http://github.com/cferdinandi/Plugin
55
*

docs/dist/js/classList.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/dist/js/myplugin.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* gulp-boilerplate v1.3.1
2+
* gulp-boilerplate v1.3.2
33
* My Gulp.js boilerplate for creating new web projects, by Chris Ferdinandi.
44
* http://github.com/cferdinandi/Plugin
55
*
@@ -15,7 +15,7 @@
1515
} else {
1616
root.myPlugin = factory(root);
1717
}
18-
})(this, function (root) {
18+
})(typeof global !== "undefined" ? global : this.window || this.global, function (root) {
1919

2020
'use strict';
2121

docs/dist/js/myplugin.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gulp-boilerplate",
3-
"version": "1.3.1",
3+
"version": "1.3.2",
44
"description": "My Gulp.js boilerplate for creating new web projects",
55
"main": "./dist",
66
"author": {

src/js/myplugin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
} else {
77
root.myPlugin = factory(root);
88
}
9-
})(this, function (root) {
9+
})(typeof global !== "undefined" ? global : this.window || this.global, function (root) {
1010

1111
'use strict';
1212

0 commit comments

Comments
 (0)