mirror of
https://github.com/dataarts/dat.gui.git
synced 2024-12-12 04:08:27 +00:00
tidy up how optional CSS file is built
This commit is contained in:
parent
dbd80251f3
commit
986494ac80
@ -8,8 +8,10 @@
|
|||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "node ./node_modules/eslint/bin/eslint.js src/",
|
"test": "node ./node_modules/eslint/bin/eslint.js src/",
|
||||||
"build": "webpack --config ./webpack/webpack.config.js --devtool sourcemap && webpack --config ./webpack/webpack.config.min.js",
|
"dev": "webpack --progress --colors --watch --config webpack/webpack.config.js --devtool sourcemap",
|
||||||
"dev": "webpack --progress --colors --watch --config webpack/webpack.config.js --devtool sourcemap"
|
"build": "npm run build-js && npm run build-css",
|
||||||
|
"build-js": "webpack --config ./webpack/webpack.config.js --devtool sourcemap && webpack --config ./webpack/webpack.config.min.js",
|
||||||
|
"build-css": "node-sass src/dat/gui/style.scss build/dat.gui.css"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -25,10 +25,9 @@ import CenteredDiv from '../dom/CenteredDiv';
|
|||||||
import dom from '../dom/dom';
|
import dom from '../dom/dom';
|
||||||
import common from '../utils/common';
|
import common from '../utils/common';
|
||||||
|
|
||||||
import styleSheet from '!css!sass!./style.scss'; // CSS to embed in build
|
import styleSheet from './style.scss'; // CSS to embed in build
|
||||||
import styleSheetExternal from '!file?name=dat.gui.css!extract!css!sass!./style.scss'; // CSS as external file
|
|
||||||
|
|
||||||
css.inject(styleSheet, styleSheetExternal);
|
css.inject(styleSheet);
|
||||||
|
|
||||||
/** Outer-most className for GUI's */
|
/** Outer-most className for GUI's */
|
||||||
const CSS_NAMESPACE = 'dg';
|
const CSS_NAMESPACE = 'dg';
|
||||||
|
@ -21,7 +21,7 @@ module.exports = {
|
|||||||
doc.getElementsByTagName('head')[0].appendChild(link);
|
doc.getElementsByTagName('head')[0].appendChild(link);
|
||||||
},
|
},
|
||||||
|
|
||||||
inject: function(css, externalCssFileName, indoc) {
|
inject: function(css, indoc) {
|
||||||
const doc = indoc || document;
|
const doc = indoc || document;
|
||||||
const injected = document.createElement('style');
|
const injected = document.createElement('style');
|
||||||
injected.type = 'text/css';
|
injected.type = 'text/css';
|
||||||
|
@ -19,7 +19,8 @@ module.exports = {
|
|||||||
context: path.resolve(__dirname, '..', 'src'),
|
context: path.resolve(__dirname, '..', 'src'),
|
||||||
|
|
||||||
entry: {
|
entry: {
|
||||||
main: '../index'
|
main: '../index',
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
||||||
module: {
|
module: {
|
||||||
@ -48,7 +49,7 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
test: /\.scss$/,
|
test: /\.scss$/,
|
||||||
loader: 'style!css!sass'
|
loader: 'css-loader!sass-loader'
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user