Skip to content

Commit d9a05d8

Browse files
authored
Merge pull request #1039 from sacr3dc0w/theme-bundle
Reduce theme bundle size by using minified libraries
2 parents 469f1e6 + 0f7b428 commit d9a05d8

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
- Move some hard-coded validation messages to language file [#1040](https://github.com/bigcommerce/cornerstone/pull/1040)
55
- Use different id for gift cert in cart page [#1044](https://github.com/bigcommerce/cornerstone/pull/1044)
66
- Restore product image carousel [#1028](https://github.com/bigcommerce/cornerstone/pull/1028)
7+
- Reduce theme bundle size by using minified libraries where applicable [#1039](https://github.com/bigcommerce/cornerstone/pull/1039)
78

89
## 1.9.0 (2017-07-18)
910
- Product Images were obscuring product details on smaller viewports [#1019](https://github.com/bigcommerce/cornerstone/pull/1019)

webpack.conf.js

+3
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,12 @@ module.exports = {
6565
],
6666
resolve: {
6767
alias: {
68+
'async': path.resolve(__dirname, 'node_modules/async/dist/async.min.js'),
6869
'html5-history-api': path.resolve(__dirname, 'node_modules/html5-history-api/history.min.js'),
6970
jquery: path.resolve(__dirname, 'node_modules/jquery/dist/jquery.min.js'),
71+
'jquery-zoom': path.resolve(__dirname, 'node_modules/jquery-zoom/jquery.zoom.min.js'),
7072
jstree: path.resolve(__dirname, 'node_modules/jstree/dist/jstree.min.js'),
73+
'pace': path.resolve(__dirname, 'node_modules/pace/pace.min.js'),
7174
'slick-carousel': path.resolve(__dirname, 'node_modules/slick-carousel/slick/slick.min.js'),
7275
},
7376
},

0 commit comments

Comments
 (0)