Skip to content

Commit 06d6e8e

Browse files
authored
Merge pull request #47 from uicrooks/dev
v2.4.11
2 parents 66781c6 + 5ac305f commit 06d6e8e

File tree

3 files changed

+46
-48
lines changed

3 files changed

+46
-48
lines changed

.config/webpack/webpack.common.js

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,14 @@ module.exports = {
3636
},
3737
{
3838
test: /\.(woff|woff2|eot|ttf|otf)$/,
39-
use: [
40-
'file-loader'
41-
]
39+
use: {
40+
loader: 'file-loader',
41+
options: {
42+
name: '[name].[ext]',
43+
publicPath: './',
44+
outputPath: './'
45+
}
46+
}
4247
}
4348
]
4449
},
@@ -49,7 +54,7 @@ module.exports = {
4954
* docs: https://github.com/johnagan/clean-webpack-plugin
5055
*/
5156
new CleanWebpackPlugin({
52-
cleanOnceBeforeBuildPatterns: ['**/*', '!+(*)static+(*)'],
57+
cleanOnceBeforeBuildPatterns: ['**/*', '!*static*']
5358
}),
5459
new VueLoaderPlugin()
5560
]

package-lock.json

Lines changed: 34 additions & 41 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "shopify-theme-lab",
33
"description": "Customizable modular development environment for blazing-fast Shopify theme creation",
44
"author": "Sergej Samsonenko <contact@sergej.codes>",
5-
"version": "2.4.10",
5+
"version": "2.4.11",
66
"license": "MIT",
77
"config": {
88
"reloadr": {
@@ -31,7 +31,7 @@
3131
},
3232
"dependencies": {
3333
"axios": "^0.21.1",
34-
"tailwindcss": "^2.0.1",
34+
"tailwindcss": "^2.0.3",
3535
"vue": "^2.6.12",
3636
"vuex": "^3.6.2"
3737
},
@@ -65,7 +65,7 @@
6565
"url-loader": "^4.1.1",
6666
"vue-loader": "^15.9.6",
6767
"vue-template-compiler": "^2.6.12",
68-
"webpack": "^5.21.1",
68+
"webpack": "^5.21.2",
6969
"webpack-cli": "^4.5.0",
7070
"webpack-merge": "^5.7.3"
7171
}

0 commit comments

Comments
 (0)