Skip to content

Commit 17e026a

Browse files
andreasknoepfletessi
authored andcommitted
[#79] Release 1.3 (#80)
1 parent 562a151 commit 17e026a

File tree

3 files changed

+34
-2
lines changed

3 files changed

+34
-2
lines changed

package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"private": true,
3-
"version": "1.2.2",
3+
"version": "1.3.0",
44
"name": "tickety-tick",
55
"description": "A browser extension that helps you to create commit messages and branch names from story trackers.",
66
"author": "Bodo Tasche <[email protected]>",
@@ -59,7 +59,8 @@
5959
"sass-loader": "6.0.6",
6060
"web-ext": "2.2.2",
6161
"webpack": "3.8.1",
62-
"webpack-chain": "4.4.2"
62+
"webpack-chain": "4.4.2",
63+
"zip-webpack-plugin": "^2.1.0"
6364
},
6465
"dependencies": {
6566
"bootstrap": "4.0.0-alpha.4",

webpack.webext.babel.js

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
/* eslint-disable import/no-extraneous-dependencies */
22

3+
import path from 'path';
4+
import ZipWebpackPlugin from 'zip-webpack-plugin';
5+
36
import config, { src, dist } from './webpack.common';
47
import pkg from './package.json';
58

@@ -44,4 +47,12 @@ config.plugin('copy').tap(([patterns]) => [[
4447
},
4548
]]);
4649

50+
config.plugin('zip')
51+
.use(ZipWebpackPlugin, [
52+
{
53+
path: path.join(__dirname, 'dist'),
54+
filename: variant,
55+
},
56+
]);
57+
4758
export default config.toConfig();

yarn.lock

+20
Original file line numberDiff line numberDiff line change
@@ -7118,6 +7118,13 @@ webpack-sources@^1.0.1:
71187118
source-list-map "^2.0.0"
71197119
source-map "~0.6.1"
71207120

7121+
webpack-sources@^1.0.2:
7122+
version "1.1.0"
7123+
resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.1.0.tgz#a101ebae59d6507354d71d8013950a3a8b7a5a54"
7124+
dependencies:
7125+
source-list-map "^2.0.0"
7126+
source-map "~0.6.1"
7127+
71217128
71227129
version "3.8.1"
71237130
resolved "https://registry.yarnpkg.com/webpack/-/webpack-3.8.1.tgz#b16968a81100abe61608b0153c9159ef8bb2bd83"
@@ -7425,6 +7432,12 @@ [email protected]:
74257432
buffer-crc32 "~0.2.3"
74267433
fd-slicer "~1.0.1"
74277434

7435+
yazl@^2.4.3:
7436+
version "2.4.3"
7437+
resolved "https://registry.yarnpkg.com/yazl/-/yazl-2.4.3.tgz#ec26e5cc87d5601b9df8432dbdd3cd2e5173a071"
7438+
dependencies:
7439+
buffer-crc32 "~0.2.3"
7440+
74287441
74297442
version "1.0.2"
74307443
resolved "https://registry.yarnpkg.com/zip-dir/-/zip-dir-1.0.2.tgz#253f907aead62a21acd8721d8b88032b2411c051"
@@ -7440,3 +7453,10 @@ zip-stream@^1.1.0:
74407453
compress-commons "^1.2.0"
74417454
lodash "^4.8.0"
74427455
readable-stream "^2.0.0"
7456+
7457+
zip-webpack-plugin@^2.1.0:
7458+
version "2.1.0"
7459+
resolved "https://registry.yarnpkg.com/zip-webpack-plugin/-/zip-webpack-plugin-2.1.0.tgz#e9d060ccd6afcf7c60b09b6e2e56275b181e1d72"
7460+
dependencies:
7461+
webpack-sources "^1.0.2"
7462+
yazl "^2.4.3"

0 commit comments

Comments
 (0)