Skip to content

Commit 488f3ea

Browse files
committed
fix gulp process & bump v1.0.2
1 parent 84464a2 commit 488f3ea

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
HON-Provisu-Extension Changelog
22
===============================
33

4+
v1.0.2 - 2016-11-03
5+
-------------------
6+
7+
* fix gulp process
8+
49
v1.0.1 - 2016-11-03
510
-------------------
611

app/manifest.firefox.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "__MSG_appName__",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"manifest_version": 2,
55
"description": "__MSG_appDescription__",
66
"default_locale": "en",

app/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "__MSG_appName__",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"manifest_version": 2,
55
"description": "__MSG_appDescription__",
66
"icons": {

gulpfile.babel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ gulp.task('package', function() {
214214
return gulp.src('dist/**')
215215
.pipe($.zip('provisu-look-' + manifest.version + '.zip'))
216216
.pipe(gulp.dest('package'))
217-
.pipe(symlink('package/provisu-look-latest.zip'));
217+
.pipe(symlink('package/provisu-look-latest.zip', { force: true }));
218218
});
219219

220220
gulp.task('build', (cb) => {

0 commit comments

Comments
 (0)