tidy up
parent
a7a2fe243a
commit
2391e08ac1
|
@ -185,11 +185,8 @@ class Recipe {
|
||||||
log.debug(`[*] Executing recipe of ${this.opList.length} operations, starting at ${startFrom}`);
|
log.debug(`[*] Executing recipe of ${this.opList.length} operations, starting at ${startFrom}`);
|
||||||
|
|
||||||
for (let i = startFrom; i < this.opList.length; i++) {
|
for (let i = startFrom; i < this.opList.length; i++) {
|
||||||
|
|
||||||
op = this.opList[i];
|
op = this.opList[i];
|
||||||
|
|
||||||
log.debug(`[${i}] ${op.name} ${JSON.stringify(op.ingValues)}`);
|
log.debug(`[${i}] ${op.name} ${JSON.stringify(op.ingValues)}`);
|
||||||
|
|
||||||
if (op.disabled) {
|
if (op.disabled) {
|
||||||
log.debug("Operation is disabled, skipping");
|
log.debug("Operation is disabled, skipping");
|
||||||
continue;
|
continue;
|
||||||
|
|
|
@ -8,8 +8,6 @@ import HTMLOperation from "./HTMLOperation";
|
||||||
import Sortable from "sortablejs";
|
import Sortable from "sortablejs";
|
||||||
import Utils from "../core/Utils";
|
import Utils from "../core/Utils";
|
||||||
|
|
||||||
/*eslint no-console: ["off"] */
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Waiter to handle events related to the recipe.
|
* Waiter to handle events related to the recipe.
|
||||||
|
|
|
@ -56,24 +56,6 @@ module.exports = {
|
||||||
jquery: "jquery/src/jquery"
|
jquery: "jquery/src/jquery"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// optimization: {
|
|
||||||
// splitChunks: {
|
|
||||||
// cacheGroups: {
|
|
||||||
// styles: {
|
|
||||||
// name: "styles",
|
|
||||||
// test: /\.css$/,
|
|
||||||
// chunks: "all",
|
|
||||||
// enforce: true
|
|
||||||
// },
|
|
||||||
// vendor: {
|
|
||||||
// name: "vendor",
|
|
||||||
// test: /\.scss$/,
|
|
||||||
// chunks: "all",
|
|
||||||
// enforce: true,
|
|
||||||
// },
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// },
|
|
||||||
module: {
|
module: {
|
||||||
rules: [
|
rules: [
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue