Skip to content

Commit

Permalink
ver. 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
光弘 committed Aug 16, 2018
1 parent ac9b9eb commit ee46ee2
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "uxcore-checkbox-group",
"version": "1.3.0",
"version": "1.4.0",
"description": "uxcore-checkbox-group component for uxcore.",
"repository": "https://github.com/uxcore/uxcore-checkbox-group.git",
"author": "eternalsky",
Expand Down Expand Up @@ -53,4 +53,4 @@
},
"contributors": [],
"license": "MIT"
}
}
1 change: 1 addition & 0 deletions style/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
import '../src/CheckboxGroup.less';
19 changes: 19 additions & 0 deletions webpack.custom.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
const modifyVars = require('kuma-base/jsvars/orange');

/* eslint-disable no-param-reassign */
module.exports = (config) => {
config.module.rules.forEach((rule) => {
if (rule.test.toString() === /\.less$/.toString()) {
rule.use = [
'style-loader',
'css-loader',
{
loader: 'less-loader',
options: {
modifyVars,
},
},
];
}
});
};

0 comments on commit ee46ee2

Please sign in to comment.