Skip to content

Commit 79efe0d

Browse files
author
Kevin Morris
committed
Moves JS file into 'src' folder
1 parent 836c4f1 commit 79efe0d

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jquery-form",
3-
"main": "jquery.form.js",
3+
"main": "src/jquery.form.js",
44
"author": "Kevin Morris",
55
"dependencies": {
66
"jquery": ">=1.7"

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"extra": {
3232
"component": {
3333
"scripts": [
34-
"jquery.form.js"
34+
"src/jquery.form.js"
3535
],
3636
"shim": {
3737
"deps": [

form.jquery.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"bugs": "https://github.com/jquery-form/form/issues",
2626
"homepage": "https://github.com/jquery-form/form/",
2727
"docs": "https://github.com/jquery-form/form/",
28-
"download": "https://github.com/jquery-form/form/blob/master/jquery.form.js",
28+
"download": "https://github.com/jquery-form/form/blob/master/src/jquery.form.js",
2929
"dependencies": {
3030
"jquery": ">=1.7"
3131
}

gulpfile.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ var gulp = require('gulp'),
55
uglify = require('gulp-uglify');
66

77
gulp.task('default', function() {
8-
gulp.src(['jquery.form.js'])
8+
gulp.src(['src/jquery.form.js'])
99
.pipe(jshint())
1010
.pipe(jshint.reporter('default'))
1111
.pipe(uglify({ preserveComments: 'some' }))
12-
.pipe(concat('jquery.form.min.js'))
12+
.pipe(concat('dist/jquery.form.min.js'))
1313
.pipe(gulp.dest('.'));
1414
});
1515

1616
gulp.task('watch', function () {
17-
gulp.watch('jquery.form.js', ['default']);
17+
gulp.watch('src/jquery.form.js', ['default']);
1818
});

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@
2828
"dependencies": {
2929
"jquery": ">=1.7"
3030
},
31-
"main": "jquery.form.js",
31+
"main": "src/jquery.form.js",
3232
"jam": {
33-
"main": "jquery.form.js",
33+
"main": "src/jquery.form.js",
3434
"dependencies": {
3535
"jquery": ">=1.7"
3636
}
File renamed without changes.

0 commit comments

Comments
 (0)