diff --git a/browser/gulpfile.js b/browser/gulpfile.js index 90a461b7..69953670 100644 --- a/browser/gulpfile.js +++ b/browser/gulpfile.js @@ -62,7 +62,10 @@ gulp.task('images', () => { .pipe(gulp.dest(`dist/${target}/images`)); }); -gulp.task('clean', del.bind(null, ['.tmp', `dist/${target}`])); +gulp.task( + 'clean', + del.bind(null, ['.tmp', `dist/${target}`, `package/${target}`]) +); gulp.task( 'watch', diff --git a/browser/package.json b/browser/package.json index 78015c03..cbb3a815 100644 --- a/browser/package.json +++ b/browser/package.json @@ -12,7 +12,7 @@ }, "author": "Monomax Software Pty Ltd", "license": "GPL-3.0-or-later", - "version": "1.0.0", + "version": "1.1.0", "dependencies": { "classnames": "^2.2.5", "lodash": "^4.17.15", diff --git a/browser/scripts/zip.sh b/browser/scripts/zip.sh index 3b250894..03cb6acc 100755 --- a/browser/scripts/zip.sh +++ b/browser/scripts/zip.sh @@ -1,3 +1,3 @@ #!/bin/bash -tar --exclude='./node_modules' --exclude='./package' --exclude='./dist' -zcvf extension.tar.gz * .babelrc .eslintrc +tar --exclude='./node_modules' --exclude='./package' --exclude='./dist' -zcvf extension.tar.gz * .eslintrc diff --git a/browser/src/images/iconx16.png b/browser/src/images/iconx16.png index 3e8be0fe..07ef9d85 100644 Binary files a/browser/src/images/iconx16.png and b/browser/src/images/iconx16.png differ