Release browser extension 0.1.0 (#256)

* Bump browser extension version

* Fix browser extension alert
This commit is contained in:
Sung Won Cho 2019-09-30 15:36:11 +08:00 committed by GitHub
commit 35c41a219e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 3 deletions

View file

@ -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',

View file

@ -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",

View file

@ -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

Binary file not shown.

Before

Width:  |  Height:  |  Size: 362 B

After

Width:  |  Height:  |  Size: 327 B

Before After
Before After