We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Task never defined: tasks Support gulp4?
function client(cb) { src('src/webui/*.tsx') .pipe(webpack(require('./config/webpack.dev.client'))) .pipe(dest('public')); cb(); } function ejs(cb) { src('src/nodeui/views/*.ejs') .pipe(minifyejs()) .pipe(dest('build/nodeui/views')); cb(); } function server(cb) { src(['src/**/*.ts', 'src/**/*.tsx']) .pipe(tsProject()) .pipe(dest('build/')); cb(); } function development(done) { const stream = nodemon({ script: 'build/app.js', ext: 'tsx ts ejs', ignore: [ 'node_modules' ], watch: 'src', tasks: ['client', 'ejs', 'server'], done: done }) } exports.default = series(client, ejs, server, development);
The text was updated successfully, but these errors were encountered:
It has been solved. exports.ejs = ejs; exports.ejs = server;
Sorry, something went wrong.
@logictuLuoqi this issue should be closed?
Yes, it can be closed.
No branches or pull requests
Task never defined: tasks
Support gulp4?
The text was updated successfully, but these errors were encountered: