Skip to content

Commit 76462d1

Browse files
Merge pull request #658 from prince-deriv/redesign
Quill initial configuration
2 parents e510550 + 76acf5e commit 76462d1

File tree

7 files changed

+364
-3
lines changed

7 files changed

+364
-3
lines changed

build/config/constants.js

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ const release_config = {
3939

4040
const node_modules_paths = {
4141
binary_style: 'node_modules/@binary-com/binary-style',
42+
quill : 'node_modules/@deriv-com/quill-ui',
4243
};
4344

4445
const config = {

build/cssmin.js

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ module.exports = {
66
files: [
77
{
88
src: [
9+
`${global.node_modules_paths.quill}/dist/assets/style.css`,
910
`${global.dist}/css/common.css`,
1011
`${global.node_modules_paths.binary_style}/binary.css`,
1112
`${global.node_modules_paths.binary_style}/binary.more.css`,

build/webpack/config_common.js

+4
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,10 @@ const commonConfig = (grunt) => ({
6262
},
6363
],
6464
},
65+
{
66+
test: /\.css$/,
67+
use : ['style-loader', 'css-loader'],
68+
},
6569
],
6670
},
6771
watch : false,

0 commit comments

Comments
 (0)