Skip to content

Commit

Permalink
v0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
benlau committed Oct 22, 2015
1 parent 041502e commit 9312585
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion chrome/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "__MSG_appName__",
"version": "0.2.1",
"version": "0.2.2",
"description": "__MSG_appDesc__",
"manifest_version": 2,
"background" : {
Expand Down
2 changes: 1 addition & 1 deletion chrome/sites.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var sites = [
"newstube01.tv",
"bomb01.com",
"share001.net",
"cmoney.net",
"cmoney.tw",
"daliulian.net",
"hssszn.com",
"hothk.com",
Expand Down
4 changes: 2 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ gulp.task('clean', del.bind(
null, ['build/*'], {dot: true}
));

gulp.task('chrome',["chrome:assets","chrome:background","chrome:stop","chrome:bundle"]);
gulp.task('chrome',["chrome:assets","chrome:background","chrome:stop"]);

gulp.task("chrome:assets", function() {
var assets = [
Expand All @@ -81,7 +81,7 @@ gulp.task("chrome:stop", function(callback) {
});

gulp.task("chrome:bundle", function() {
return gulp.src(["chrome/**/*"], { base: "./chrome" })
return gulp.src(["build/chrome/**/*"], { base: "./build/chrome" })
.pipe(zip("chrome.zip"))
.pipe(gulp.dest("./build"));
});
Expand Down

0 comments on commit 9312585

Please sign in to comment.