Skip to content

Commit a286846

Browse files
committed
Merge pull request #95 from aisk/master
localstorage => localStorage
2 parents a711bae + 930deaf commit a286846

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

gulpfile.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,19 +42,19 @@ var optionalSources = [
4242
'router.js',
4343
'collection.js',
4444
'view.js'
45-
]
45+
];
4646

4747

4848
getAVVersion = function() {
4949
return require('./lib/AV.js').AV.VERSION.replace('js', '');
5050
};
5151

5252
gulp.task('localstorage', function() {
53-
gulp.src(['lib/localstorage.js']).pipe(gulp.dest('dist'));
53+
gulp.src(['lib/localStorage.js']).pipe(gulp.dest('dist'));
5454
});
5555

5656
gulp.task('pack', shell.task([
57-
"find dist -not -iname 'av.js' -not -iname 'localstorage.js' -delete",
57+
"find dist -not -iname 'av.js' -not -iname 'localStorage.js' -delete",
5858
'rm -rf avos-javascript-sd',
5959
'rm -rf node_modules/',
6060
'rm -rf ./*.tgz',

0 commit comments

Comments
 (0)