Answer the question
In order to leave comments, you need to log in
Gulp js import plugin?
Good afternoon! Please tell me if there is a gulp plugin for such needs:
---- Available
//file1.js
alert(1);
//file2.js
alert(2);
//result1.js
//Специальная конструкция этого плагина
@import "file1.js", "file2.js";
//result2.js
//Специальная конструкция этого плагина
@import "file1.js";
//From result1
alert(1);
alert(2);
//From result2
alert(1);
Answer the question
In order to leave comments, you need to log in
It's not very clear from the question, but it looks like you're looking for browserify . For gulp, of course, there is a plugin.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question