Commit c1d04c60 authored by Simonas's avatar Simonas

live reload working version

parent 909418f9
This diff is collapsed.
......@@ -51,8 +51,8 @@ export function serveCoreCSS () {
.on('error', logError);
} else {
stream = stream
.pipe(cached('css-core'))
.on('error', logError)
// .pipe(cached('css-core'))
// .on('error', logError)
.pipe(sourcemaps.write())
.on('error', logError);
}
......
......@@ -50,8 +50,8 @@ export function serveMainCSS () {
.pipe(rev());
} else {
stream = stream
.pipe(cached('css-main'))
.on('error', logError)
// .pipe(cached('css-main'))
// .on('error', logError)
.pipe(sourcemaps.write('.'))
.on('error', logError);
}
......
......@@ -41,6 +41,10 @@ let config = {
mode: conf.env,
watchOptions: {
poll: true
},
module: {
rules: [{
test: /\.js?$/,
......
......@@ -36,7 +36,7 @@ qa-: Signify that a QA or Test Engineering team is running an automated UI test
/* critical:start */
/* critical:end */
/** { border: 1px solid #000; }*/
/** { border: 1px solid #000; }*/
input::-webkit-calendar-picker-indicator {
display: none;
......
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -59,6 +59,8 @@ const lisp = (str) => {
return str;
};
// console.error(46);
const autocomplete = (str) => {
const node = document.getElementById(str);
const arrow = document.querySelector('.js-toggle--' + str);
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment