npm uninstall gulp-nunjucks-render
npm install gulp-nunjucks -D
- const nunjucksRender = require("gulp-nunjucks-render");
+ const nunjucks = require("gulp-nunjucks");
- .pipe(nunjucksRender())
+ .pipe(nunjucks.compile())
include
будет ошибка, надо будет app/module/...
. Возвращаемое значение
A non-live NodeList containing one Element object for each element that matches at least one of the specified selectors or an empty NodeList in case of no matches.
For example, the HTMLElement interface is the base interface for HTML elements, while the SVGElement interface is the basis for all SVG elements.
\.
на .
во всех случаях, которые находятся внутри []
. Или проигнорируйте data() {
return {
// eslint-disable no-useless-escape
regex: new RegExp(/^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,24}))$/)
}
}
а онлайн сервисы записывают все входные файлы как минимум чтобы повторно не обрабатывать одно и тожеесли знаете таковых - по рукам надавать. Во-вторых, открываете консоль, отслеживаете запросы - запросов нет, всё норм, никуда ничего не шлётся. В третьих - тогда руками модифицируйте, раз такие большие проблемы.
import React, { useState } from 'react';
export const Demo = () => {
const [hidden, setHidden] = useState(false);
const hideBlock = () => setHidden(true);
return (
<div style={{
padding: 20,
backgroundColor: 'tomato'
}}>
{!hidden && <button onClick={hideBlock}>Hide me</button>}
</div>
);
};