Skip to content

Commit

Permalink
[#79] Release 1.3 (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasknoepfle authored and tessi committed Dec 7, 2017
1 parent 562a151 commit 17e026a
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 2 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"private": true,
"version": "1.2.2",
"version": "1.3.0",
"name": "tickety-tick",
"description": "A browser extension that helps you to create commit messages and branch names from story trackers.",
"author": "Bodo Tasche <[email protected]>",
Expand Down Expand Up @@ -59,7 +59,8 @@
"sass-loader": "6.0.6",
"web-ext": "2.2.2",
"webpack": "3.8.1",
"webpack-chain": "4.4.2"
"webpack-chain": "4.4.2",
"zip-webpack-plugin": "^2.1.0"
},
"dependencies": {
"bootstrap": "4.0.0-alpha.4",
Expand Down
11 changes: 11 additions & 0 deletions webpack.webext.babel.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
/* eslint-disable import/no-extraneous-dependencies */

import path from 'path';
import ZipWebpackPlugin from 'zip-webpack-plugin';

import config, { src, dist } from './webpack.common';
import pkg from './package.json';

Expand Down Expand Up @@ -44,4 +47,12 @@ config.plugin('copy').tap(([patterns]) => [[
},
]]);

config.plugin('zip')
.use(ZipWebpackPlugin, [
{
path: path.join(__dirname, 'dist'),
filename: variant,
},
]);

export default config.toConfig();
20 changes: 20 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7118,6 +7118,13 @@ webpack-sources@^1.0.1:
source-list-map "^2.0.0"
source-map "~0.6.1"

webpack-sources@^1.0.2:
version "1.1.0"
resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.1.0.tgz#a101ebae59d6507354d71d8013950a3a8b7a5a54"
dependencies:
source-list-map "^2.0.0"
source-map "~0.6.1"

[email protected]:
version "3.8.1"
resolved "https://registry.yarnpkg.com/webpack/-/webpack-3.8.1.tgz#b16968a81100abe61608b0153c9159ef8bb2bd83"
Expand Down Expand Up @@ -7425,6 +7432,12 @@ [email protected]:
buffer-crc32 "~0.2.3"
fd-slicer "~1.0.1"

yazl@^2.4.3:
version "2.4.3"
resolved "https://registry.yarnpkg.com/yazl/-/yazl-2.4.3.tgz#ec26e5cc87d5601b9df8432dbdd3cd2e5173a071"
dependencies:
buffer-crc32 "~0.2.3"

[email protected]:
version "1.0.2"
resolved "https://registry.yarnpkg.com/zip-dir/-/zip-dir-1.0.2.tgz#253f907aead62a21acd8721d8b88032b2411c051"
Expand All @@ -7440,3 +7453,10 @@ zip-stream@^1.1.0:
compress-commons "^1.2.0"
lodash "^4.8.0"
readable-stream "^2.0.0"

zip-webpack-plugin@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/zip-webpack-plugin/-/zip-webpack-plugin-2.1.0.tgz#e9d060ccd6afcf7c60b09b6e2e56275b181e1d72"
dependencies:
webpack-sources "^1.0.2"
yazl "^2.4.3"

0 comments on commit 17e026a

Please sign in to comment.