Skip to content
This repository has been archived by the owner on May 8, 2021. It is now read-only.

Commit

Permalink
Fixed #54 完善formDataShim 感谢@SevenBoy2012 @jcs12311
Browse files Browse the repository at this point in the history
  • Loading branch information
think2011 committed Nov 17, 2015
1 parent 4436e0f commit 2dafb24
Show file tree
Hide file tree
Showing 12 changed files with 39 additions and 35 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lrz",
"version": "4.7.27",
"version": "4.7.29",
"homepage": "https://github.com/think2011/localResizeIMG",
"authors": [
"think2011 <[email protected]>"
Expand Down
2 changes: 1 addition & 1 deletion dist/1.chunk.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/2.chunk.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/lrz.all.bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/lrz.all.bundle.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/lrz.bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/lrz.bundle.js.map

Large diffs are not rendered by default.

21 changes: 11 additions & 10 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ var packageJSON = require('./package.json');
var webpack = require("webpack");

var paths = {
src : './src',
dist: './dist',
test: './test'
src : 'src',
dist: 'dist',
test: 'test'
};

var files = {
Expand All @@ -26,7 +26,8 @@ gulp.task('default', ['clean'], function () {
// 开发
gulp.task('dev', function () {
gulp.start([
'dev:js'
'dev:js',
'build:html'
]);
});

Expand Down Expand Up @@ -88,13 +89,13 @@ gulp.task('build:html', ['build:js'], function () {

gulp.task('build:copy', ['build:html'], function () {
// 未来可能可能采用 #48
/* gulp.src(files.lrzAll)
.pipe(plugins.rename('index.js'))
.pipe(gulp.dest('./'));
/* gulp.src(files.lrzAll)
.pipe(plugins.rename('index.js'))
.pipe(gulp.dest('./'));
gulp.src(files.lrzAllMap)
.pipe(plugins.rename('index.js.map'))
.pipe(gulp.dest('./'));*/
gulp.src(files.lrzAllMap)
.pipe(plugins.rename('index.js.map'))
.pipe(gulp.dest('./'));*/

return gulp.src(files.txt)
.pipe(gulp.dest(paths.dist));
Expand Down
Loading

0 comments on commit 2dafb24

Please sign in to comment.