Skip to content

Commit bf1772d

Browse files
committed
Renamed strip[.min].js to strip.pkgd[.min].js
This makes it clearer which files are packaged and which files are source files.
1 parent 598a347 commit bf1772d

6 files changed

Lines changed: 10 additions & 10 deletions

File tree

Gruntfile.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ module.exports = function(grunt) {
4242

4343
'src/js/outro.js'
4444
],
45-
dest: 'js/strip.js'
45+
dest: 'js/strip.pkgd.js'
4646
}
4747
},
4848

@@ -51,8 +51,8 @@ module.exports = function(grunt) {
5151
options: {
5252
preserveComments: 'some'
5353
},
54-
'src': ['js/strip.js'],
55-
'dest': 'js/strip.min.js'
54+
'src': ['js/strip.pkgd.js'],
55+
'dest': 'js/strip.pkgd.min.js'
5656
}
5757
},
5858

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Make sure the [grunt command line interface](https://github.com/gruntjs/grunt-cl
3838
npm install -g grunt-cli
3939
```
4040

41-
Now run the `grunt` command, this updates `js/strip.js` and `js/strip.min.js` to include the latest changes made in the `src` folder:
41+
Now run the `grunt` command, this updates `js/strip.pkgd.js` and `js/strip.pkgd.min.js` to include the latest changes made in the `src` folder:
4242

4343
```
4444
grunt

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "strip",
33
"description": "A Less Intrusive Responsive Lightbox",
4-
"version": "1.2.2",
4+
"version": "1.2.3",
55
"homepage": "http://stripjs.com",
66
"keywords": [
77
"lightbox",

js/strip.js renamed to js/strip.pkgd.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Strip - A Less Intrusive Responsive Lightbox - v1.2.2
2+
* Strip - A Less Intrusive Responsive Lightbox - v1.2.3
33
* (c) 2014 Nick Stakenburg
44
*
55
* http://www.stripjs.com
@@ -23,7 +23,7 @@
2323
var Strip = {};
2424

2525
$.extend(Strip, {
26-
version: '1.2.2'
26+
version: '1.2.3'
2727
});
2828

2929
// unexposed _Skins, for internal use only

js/strip.min.js renamed to js/strip.pkgd.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,7 +1,7 @@
11
{
22
"name": "strip",
33
"title": "Strip",
4-
"version": "1.2.2",
4+
"version": "1.2.3",
55
"description": "A Less Intrusive Responsive Lightbox",
66
"homepage": "http://stripjs.com",
77
"author": {

0 commit comments

Comments
 (0)