How to Configure Magento2 with Gulp instead GruntLESS w/ Grunt - Solutions For M2's Terrible LESS Workflow?Magento 2 - How to configure Grunt in PhpStormConfigure Grunt to watch the overrided vendor module css - Magento2Problem with installing Grunt on Magento2local grunt database errors, when I have a vagrant magento2 boxHow to add new theme name to grunt CLI command to run grunt tool in Magento 2 with CLI commands instead of editing less.js and themes.js file?How to configure the theme to use Grunt?How to install grunt on staging server.?How does Magento 2 work with CSS grunt-autoprefixerMagento 2 - How to use grunt or gulp for speed up development?Magento2 grunt issue occurs when running?

A torrent of foreign terms

Is this n-speak?

Generate Brainfuck for the numbers 1–255

Why is the result of ('b'+'a'+ + 'a' + 'a').toLowerCase() 'banana'?

How far did Gandalf and the Balrog drop from the bridge in Moria?

Is there a SQL/english like language that lets you define formulations given some data?

Why isn’t SHA-3 in wider use?

Do beef farmed pastures net remove carbon emissions?

Is There a Tool to Select Files to Download From an Org in VSCode?

When were the tantalum capacitors first used in computing?

Do I have to cite common CS algorithms?

Plotting octahedron inside the sphere and sphere inside the cube

If clocks themselves are based on light signals, wouldn't we expect the measured speed of light to always be the same constant?

What are these funnel-looking green things in my yard?

What is this 1990s horror game of otherworldly PCs dealing with monsters on modern Earth?

First amendment and employment: Can a police department terminate an officer for speech?

When does Tiana, Ship's Caretaker check card type?

Why did Gandalf use a sword against the Balrog?

Are 变 and 変 the same?

How many people would you need to pull a whale over cobblestone streets?

These were just lying around

Loading military units into ships optimally, using backtracking

TEMPO: play a sound in animated GIF/PDF/SVG

Does Molecular Weight of a Gas affect its lifting properties at the same velocity over the same wing?



How to Configure Magento2 with Gulp instead Grunt


LESS w/ Grunt - Solutions For M2's Terrible LESS Workflow?Magento 2 - How to configure Grunt in PhpStormConfigure Grunt to watch the overrided vendor module css - Magento2Problem with installing Grunt on Magento2local grunt database errors, when I have a vagrant magento2 boxHow to add new theme name to grunt CLI command to run grunt tool in Magento 2 with CLI commands instead of editing less.js and themes.js file?How to configure the theme to use Grunt?How to install grunt on staging server.?How does Magento 2 work with CSS grunt-autoprefixerMagento 2 - How to use grunt or gulp for speed up development?Magento2 grunt issue occurs when running?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








4















How to configure Magento2 with Gulp instead Grunt.
Anyone have idea ?










share|improve this question


























  • Was my response the one you where looking for?

    – Kay Int Veen
    Feb 10 '17 at 14:20

















4















How to configure Magento2 with Gulp instead Grunt.
Anyone have idea ?










share|improve this question


























  • Was my response the one you where looking for?

    – Kay Int Veen
    Feb 10 '17 at 14:20













4












4








4


4






How to configure Magento2 with Gulp instead Grunt.
Anyone have idea ?










share|improve this question
















How to configure Magento2 with Gulp instead Grunt.
Anyone have idea ?







magento2 magento-2.0 grunt






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 8 '16 at 4:38









mapaladiya

5023 silver badges15 bronze badges




5023 silver badges15 bronze badges










asked Feb 17 '16 at 12:22









hweb87hweb87

6523 gold badges10 silver badges27 bronze badges




6523 gold badges10 silver badges27 bronze badges















  • Was my response the one you where looking for?

    – Kay Int Veen
    Feb 10 '17 at 14:20

















  • Was my response the one you where looking for?

    – Kay Int Veen
    Feb 10 '17 at 14:20
















Was my response the one you where looking for?

– Kay Int Veen
Feb 10 '17 at 14:20





Was my response the one you where looking for?

– Kay Int Veen
Feb 10 '17 at 14:20










5 Answers
5






active

oldest

votes


















3














I personally use this simple gulpfile.js to process my css to the pub folders.



// Load gulp and plug-ins
var gulp = require('gulp'),
jshint = require('gulp-jshint'),
less = require('gulp-less'),
concat = require('gulp-concat'),
uglify = require('gulp-uglify'),
rename = require('gulp-rename'),
gutil = require('gulp-util'),
livereload = require('gulp-livereload'),
sourcemaps = require('gulp-sourcemaps');


// Generate less to CSS.
gulp.task('less', function()
return gulp.src(['app/design/frontend/Vendor/theme/web/css/theme.less'])
.pipe(less())
.pipe( sourcemaps.write() )
.pipe( livereload() )
.pipe(gulp.dest('pub/static/frontend/Vendor/theme/nl_NL/css'))
.pipe(gulp.dest('pub/static/frontend/Vendor/theme/de_DE/css'))
);


// Watch Files For Changes and livereload
gulp.task('watch', function()
livereload.listen();
gulp.watch('app/design/frontend/Vendor/theme/web/css/**/*.less', ['less']);
);


gulp.task('default', ['less']);





share|improve this answer

























  • What about for languages though?

    – TheBlackBenzKid
    Mar 26 '17 at 13:22











  • What do you mean?

    – Kay Int Veen
    Mar 26 '17 at 17:51











  • Sorry I meant what about for JS files? This is really good BTW

    – TheBlackBenzKid
    Apr 2 '17 at 9:29











  • How to get output using this code?

    – Pratik Mehta
    Aug 11 '18 at 6:45



















2














I suggest to try SnowdogApps/magento2-frontools



With this you have gulp and also sass support






share|improve this answer

























  • This is no longer the case, Frontools only supports Sass now

    – Ben Crook
    Jun 1 '17 at 14:10











  • @BenCrook just use version 0.11.4 and lower

    – Lorenzo
    Jun 1 '17 at 14:22











  • That means missing out on new features and bug fixes, not an ideal solution.

    – Ben Crook
    Jun 1 '17 at 15:46


















1














there is an ongoing discussion in including gulp to magento2 here:
https://github.com/magento/magento2/issues/2104



alen kent also wrote a blog post on how to integrate it in the current release:
http://alankent.me/2016/01/27/gulp-et-al-in-magento-2/



I think the process will be still much enhanced for fe developers since many parts of the frontend workflow are pretty hard to change currently. I hope and think magento2 will be more flexibel with this in the future like it is in most cases for the backend development.






share|improve this answer

























  • That links are very informative. Thanks for sharing boss !

    – Shahzaib Hayat Khan
    Nov 1 '17 at 13:33


















1














some step :



  • apt-get install nodejs and tape ln -s /usr/bin/nodejs /usr/bin/node

  • go to root prject and : apt-get install npm

  • npm install --global gulp-cli and tape npm install --save-dev gulp

  • donwload gulp.js from https://github.com/poddubny/magento2-gulp => npm install gulp-less npm install gulp-sourcemaps npm install gulp-cssmin npm install gulp-livereload npm install gulp-if
    npm install -g graceful-fs

  • bin/magento dev:source-theme:deploy --locale="en_US" --area="frontend" --theme="Ibnab/Salam"

  • php bin/magento setup:static-content:deploy

the complete video tutorials is here : http://www.ibnab.com/en/blog/magento-2/magento-2-video-introduction-for-using-gulp-in-frontend






share|improve this answer

























  • Hi inab do you have the script the repo is not there anymore

    – open-ecommerce.org
    Nov 7 '17 at 11:41











  • try from here ufile.io/xhw1b

    – Ibnab
    Nov 16 '17 at 13:29


















0














If you are looking for something that stays with core magento style and structures, our team has developed this AbsoluteWebServices/magento-2-gulp that supports:



  • default magento 2 project structure with theme config inside dev/tools/grunt/configs/themes.js

  • installation with composer

  • .less


  • browsersync and liverreload

  • compiling es6+ with Babel

  • creating svg sprites





share|improve this answer



























    Your Answer








    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "479"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: false,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f102183%2fhow-to-configure-magento2-with-gulp-instead-grunt%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    5 Answers
    5






    active

    oldest

    votes








    5 Answers
    5






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    3














    I personally use this simple gulpfile.js to process my css to the pub folders.



    // Load gulp and plug-ins
    var gulp = require('gulp'),
    jshint = require('gulp-jshint'),
    less = require('gulp-less'),
    concat = require('gulp-concat'),
    uglify = require('gulp-uglify'),
    rename = require('gulp-rename'),
    gutil = require('gulp-util'),
    livereload = require('gulp-livereload'),
    sourcemaps = require('gulp-sourcemaps');


    // Generate less to CSS.
    gulp.task('less', function()
    return gulp.src(['app/design/frontend/Vendor/theme/web/css/theme.less'])
    .pipe(less())
    .pipe( sourcemaps.write() )
    .pipe( livereload() )
    .pipe(gulp.dest('pub/static/frontend/Vendor/theme/nl_NL/css'))
    .pipe(gulp.dest('pub/static/frontend/Vendor/theme/de_DE/css'))
    );


    // Watch Files For Changes and livereload
    gulp.task('watch', function()
    livereload.listen();
    gulp.watch('app/design/frontend/Vendor/theme/web/css/**/*.less', ['less']);
    );


    gulp.task('default', ['less']);





    share|improve this answer

























    • What about for languages though?

      – TheBlackBenzKid
      Mar 26 '17 at 13:22











    • What do you mean?

      – Kay Int Veen
      Mar 26 '17 at 17:51











    • Sorry I meant what about for JS files? This is really good BTW

      – TheBlackBenzKid
      Apr 2 '17 at 9:29











    • How to get output using this code?

      – Pratik Mehta
      Aug 11 '18 at 6:45
















    3














    I personally use this simple gulpfile.js to process my css to the pub folders.



    // Load gulp and plug-ins
    var gulp = require('gulp'),
    jshint = require('gulp-jshint'),
    less = require('gulp-less'),
    concat = require('gulp-concat'),
    uglify = require('gulp-uglify'),
    rename = require('gulp-rename'),
    gutil = require('gulp-util'),
    livereload = require('gulp-livereload'),
    sourcemaps = require('gulp-sourcemaps');


    // Generate less to CSS.
    gulp.task('less', function()
    return gulp.src(['app/design/frontend/Vendor/theme/web/css/theme.less'])
    .pipe(less())
    .pipe( sourcemaps.write() )
    .pipe( livereload() )
    .pipe(gulp.dest('pub/static/frontend/Vendor/theme/nl_NL/css'))
    .pipe(gulp.dest('pub/static/frontend/Vendor/theme/de_DE/css'))
    );


    // Watch Files For Changes and livereload
    gulp.task('watch', function()
    livereload.listen();
    gulp.watch('app/design/frontend/Vendor/theme/web/css/**/*.less', ['less']);
    );


    gulp.task('default', ['less']);





    share|improve this answer

























    • What about for languages though?

      – TheBlackBenzKid
      Mar 26 '17 at 13:22











    • What do you mean?

      – Kay Int Veen
      Mar 26 '17 at 17:51











    • Sorry I meant what about for JS files? This is really good BTW

      – TheBlackBenzKid
      Apr 2 '17 at 9:29











    • How to get output using this code?

      – Pratik Mehta
      Aug 11 '18 at 6:45














    3












    3








    3







    I personally use this simple gulpfile.js to process my css to the pub folders.



    // Load gulp and plug-ins
    var gulp = require('gulp'),
    jshint = require('gulp-jshint'),
    less = require('gulp-less'),
    concat = require('gulp-concat'),
    uglify = require('gulp-uglify'),
    rename = require('gulp-rename'),
    gutil = require('gulp-util'),
    livereload = require('gulp-livereload'),
    sourcemaps = require('gulp-sourcemaps');


    // Generate less to CSS.
    gulp.task('less', function()
    return gulp.src(['app/design/frontend/Vendor/theme/web/css/theme.less'])
    .pipe(less())
    .pipe( sourcemaps.write() )
    .pipe( livereload() )
    .pipe(gulp.dest('pub/static/frontend/Vendor/theme/nl_NL/css'))
    .pipe(gulp.dest('pub/static/frontend/Vendor/theme/de_DE/css'))
    );


    // Watch Files For Changes and livereload
    gulp.task('watch', function()
    livereload.listen();
    gulp.watch('app/design/frontend/Vendor/theme/web/css/**/*.less', ['less']);
    );


    gulp.task('default', ['less']);





    share|improve this answer













    I personally use this simple gulpfile.js to process my css to the pub folders.



    // Load gulp and plug-ins
    var gulp = require('gulp'),
    jshint = require('gulp-jshint'),
    less = require('gulp-less'),
    concat = require('gulp-concat'),
    uglify = require('gulp-uglify'),
    rename = require('gulp-rename'),
    gutil = require('gulp-util'),
    livereload = require('gulp-livereload'),
    sourcemaps = require('gulp-sourcemaps');


    // Generate less to CSS.
    gulp.task('less', function()
    return gulp.src(['app/design/frontend/Vendor/theme/web/css/theme.less'])
    .pipe(less())
    .pipe( sourcemaps.write() )
    .pipe( livereload() )
    .pipe(gulp.dest('pub/static/frontend/Vendor/theme/nl_NL/css'))
    .pipe(gulp.dest('pub/static/frontend/Vendor/theme/de_DE/css'))
    );


    // Watch Files For Changes and livereload
    gulp.task('watch', function()
    livereload.listen();
    gulp.watch('app/design/frontend/Vendor/theme/web/css/**/*.less', ['less']);
    );


    gulp.task('default', ['less']);






    share|improve this answer












    share|improve this answer



    share|improve this answer










    answered Feb 7 '17 at 11:16









    Kay Int VeenKay Int Veen

    1,0831 gold badge9 silver badges23 bronze badges




    1,0831 gold badge9 silver badges23 bronze badges















    • What about for languages though?

      – TheBlackBenzKid
      Mar 26 '17 at 13:22











    • What do you mean?

      – Kay Int Veen
      Mar 26 '17 at 17:51











    • Sorry I meant what about for JS files? This is really good BTW

      – TheBlackBenzKid
      Apr 2 '17 at 9:29











    • How to get output using this code?

      – Pratik Mehta
      Aug 11 '18 at 6:45


















    • What about for languages though?

      – TheBlackBenzKid
      Mar 26 '17 at 13:22











    • What do you mean?

      – Kay Int Veen
      Mar 26 '17 at 17:51











    • Sorry I meant what about for JS files? This is really good BTW

      – TheBlackBenzKid
      Apr 2 '17 at 9:29











    • How to get output using this code?

      – Pratik Mehta
      Aug 11 '18 at 6:45

















    What about for languages though?

    – TheBlackBenzKid
    Mar 26 '17 at 13:22





    What about for languages though?

    – TheBlackBenzKid
    Mar 26 '17 at 13:22













    What do you mean?

    – Kay Int Veen
    Mar 26 '17 at 17:51





    What do you mean?

    – Kay Int Veen
    Mar 26 '17 at 17:51













    Sorry I meant what about for JS files? This is really good BTW

    – TheBlackBenzKid
    Apr 2 '17 at 9:29





    Sorry I meant what about for JS files? This is really good BTW

    – TheBlackBenzKid
    Apr 2 '17 at 9:29













    How to get output using this code?

    – Pratik Mehta
    Aug 11 '18 at 6:45






    How to get output using this code?

    – Pratik Mehta
    Aug 11 '18 at 6:45














    2














    I suggest to try SnowdogApps/magento2-frontools



    With this you have gulp and also sass support






    share|improve this answer

























    • This is no longer the case, Frontools only supports Sass now

      – Ben Crook
      Jun 1 '17 at 14:10











    • @BenCrook just use version 0.11.4 and lower

      – Lorenzo
      Jun 1 '17 at 14:22











    • That means missing out on new features and bug fixes, not an ideal solution.

      – Ben Crook
      Jun 1 '17 at 15:46















    2














    I suggest to try SnowdogApps/magento2-frontools



    With this you have gulp and also sass support






    share|improve this answer

























    • This is no longer the case, Frontools only supports Sass now

      – Ben Crook
      Jun 1 '17 at 14:10











    • @BenCrook just use version 0.11.4 and lower

      – Lorenzo
      Jun 1 '17 at 14:22











    • That means missing out on new features and bug fixes, not an ideal solution.

      – Ben Crook
      Jun 1 '17 at 15:46













    2












    2








    2







    I suggest to try SnowdogApps/magento2-frontools



    With this you have gulp and also sass support






    share|improve this answer













    I suggest to try SnowdogApps/magento2-frontools



    With this you have gulp and also sass support







    share|improve this answer












    share|improve this answer



    share|improve this answer










    answered May 27 '16 at 15:14









    LorenzoLorenzo

    4044 silver badges16 bronze badges




    4044 silver badges16 bronze badges















    • This is no longer the case, Frontools only supports Sass now

      – Ben Crook
      Jun 1 '17 at 14:10











    • @BenCrook just use version 0.11.4 and lower

      – Lorenzo
      Jun 1 '17 at 14:22











    • That means missing out on new features and bug fixes, not an ideal solution.

      – Ben Crook
      Jun 1 '17 at 15:46

















    • This is no longer the case, Frontools only supports Sass now

      – Ben Crook
      Jun 1 '17 at 14:10











    • @BenCrook just use version 0.11.4 and lower

      – Lorenzo
      Jun 1 '17 at 14:22











    • That means missing out on new features and bug fixes, not an ideal solution.

      – Ben Crook
      Jun 1 '17 at 15:46
















    This is no longer the case, Frontools only supports Sass now

    – Ben Crook
    Jun 1 '17 at 14:10





    This is no longer the case, Frontools only supports Sass now

    – Ben Crook
    Jun 1 '17 at 14:10













    @BenCrook just use version 0.11.4 and lower

    – Lorenzo
    Jun 1 '17 at 14:22





    @BenCrook just use version 0.11.4 and lower

    – Lorenzo
    Jun 1 '17 at 14:22













    That means missing out on new features and bug fixes, not an ideal solution.

    – Ben Crook
    Jun 1 '17 at 15:46





    That means missing out on new features and bug fixes, not an ideal solution.

    – Ben Crook
    Jun 1 '17 at 15:46











    1














    there is an ongoing discussion in including gulp to magento2 here:
    https://github.com/magento/magento2/issues/2104



    alen kent also wrote a blog post on how to integrate it in the current release:
    http://alankent.me/2016/01/27/gulp-et-al-in-magento-2/



    I think the process will be still much enhanced for fe developers since many parts of the frontend workflow are pretty hard to change currently. I hope and think magento2 will be more flexibel with this in the future like it is in most cases for the backend development.






    share|improve this answer

























    • That links are very informative. Thanks for sharing boss !

      – Shahzaib Hayat Khan
      Nov 1 '17 at 13:33















    1














    there is an ongoing discussion in including gulp to magento2 here:
    https://github.com/magento/magento2/issues/2104



    alen kent also wrote a blog post on how to integrate it in the current release:
    http://alankent.me/2016/01/27/gulp-et-al-in-magento-2/



    I think the process will be still much enhanced for fe developers since many parts of the frontend workflow are pretty hard to change currently. I hope and think magento2 will be more flexibel with this in the future like it is in most cases for the backend development.






    share|improve this answer

























    • That links are very informative. Thanks for sharing boss !

      – Shahzaib Hayat Khan
      Nov 1 '17 at 13:33













    1












    1








    1







    there is an ongoing discussion in including gulp to magento2 here:
    https://github.com/magento/magento2/issues/2104



    alen kent also wrote a blog post on how to integrate it in the current release:
    http://alankent.me/2016/01/27/gulp-et-al-in-magento-2/



    I think the process will be still much enhanced for fe developers since many parts of the frontend workflow are pretty hard to change currently. I hope and think magento2 will be more flexibel with this in the future like it is in most cases for the backend development.






    share|improve this answer













    there is an ongoing discussion in including gulp to magento2 here:
    https://github.com/magento/magento2/issues/2104



    alen kent also wrote a blog post on how to integrate it in the current release:
    http://alankent.me/2016/01/27/gulp-et-al-in-magento-2/



    I think the process will be still much enhanced for fe developers since many parts of the frontend workflow are pretty hard to change currently. I hope and think magento2 will be more flexibel with this in the future like it is in most cases for the backend development.







    share|improve this answer












    share|improve this answer



    share|improve this answer










    answered Feb 17 '16 at 22:08









    David VerholenDavid Verholen

    5,5661 gold badge12 silver badges31 bronze badges




    5,5661 gold badge12 silver badges31 bronze badges















    • That links are very informative. Thanks for sharing boss !

      – Shahzaib Hayat Khan
      Nov 1 '17 at 13:33

















    • That links are very informative. Thanks for sharing boss !

      – Shahzaib Hayat Khan
      Nov 1 '17 at 13:33
















    That links are very informative. Thanks for sharing boss !

    – Shahzaib Hayat Khan
    Nov 1 '17 at 13:33





    That links are very informative. Thanks for sharing boss !

    – Shahzaib Hayat Khan
    Nov 1 '17 at 13:33











    1














    some step :



    • apt-get install nodejs and tape ln -s /usr/bin/nodejs /usr/bin/node

    • go to root prject and : apt-get install npm

    • npm install --global gulp-cli and tape npm install --save-dev gulp

    • donwload gulp.js from https://github.com/poddubny/magento2-gulp => npm install gulp-less npm install gulp-sourcemaps npm install gulp-cssmin npm install gulp-livereload npm install gulp-if
      npm install -g graceful-fs

    • bin/magento dev:source-theme:deploy --locale="en_US" --area="frontend" --theme="Ibnab/Salam"

    • php bin/magento setup:static-content:deploy

    the complete video tutorials is here : http://www.ibnab.com/en/blog/magento-2/magento-2-video-introduction-for-using-gulp-in-frontend






    share|improve this answer

























    • Hi inab do you have the script the repo is not there anymore

      – open-ecommerce.org
      Nov 7 '17 at 11:41











    • try from here ufile.io/xhw1b

      – Ibnab
      Nov 16 '17 at 13:29















    1














    some step :



    • apt-get install nodejs and tape ln -s /usr/bin/nodejs /usr/bin/node

    • go to root prject and : apt-get install npm

    • npm install --global gulp-cli and tape npm install --save-dev gulp

    • donwload gulp.js from https://github.com/poddubny/magento2-gulp => npm install gulp-less npm install gulp-sourcemaps npm install gulp-cssmin npm install gulp-livereload npm install gulp-if
      npm install -g graceful-fs

    • bin/magento dev:source-theme:deploy --locale="en_US" --area="frontend" --theme="Ibnab/Salam"

    • php bin/magento setup:static-content:deploy

    the complete video tutorials is here : http://www.ibnab.com/en/blog/magento-2/magento-2-video-introduction-for-using-gulp-in-frontend






    share|improve this answer

























    • Hi inab do you have the script the repo is not there anymore

      – open-ecommerce.org
      Nov 7 '17 at 11:41











    • try from here ufile.io/xhw1b

      – Ibnab
      Nov 16 '17 at 13:29













    1












    1








    1







    some step :



    • apt-get install nodejs and tape ln -s /usr/bin/nodejs /usr/bin/node

    • go to root prject and : apt-get install npm

    • npm install --global gulp-cli and tape npm install --save-dev gulp

    • donwload gulp.js from https://github.com/poddubny/magento2-gulp => npm install gulp-less npm install gulp-sourcemaps npm install gulp-cssmin npm install gulp-livereload npm install gulp-if
      npm install -g graceful-fs

    • bin/magento dev:source-theme:deploy --locale="en_US" --area="frontend" --theme="Ibnab/Salam"

    • php bin/magento setup:static-content:deploy

    the complete video tutorials is here : http://www.ibnab.com/en/blog/magento-2/magento-2-video-introduction-for-using-gulp-in-frontend






    share|improve this answer













    some step :



    • apt-get install nodejs and tape ln -s /usr/bin/nodejs /usr/bin/node

    • go to root prject and : apt-get install npm

    • npm install --global gulp-cli and tape npm install --save-dev gulp

    • donwload gulp.js from https://github.com/poddubny/magento2-gulp => npm install gulp-less npm install gulp-sourcemaps npm install gulp-cssmin npm install gulp-livereload npm install gulp-if
      npm install -g graceful-fs

    • bin/magento dev:source-theme:deploy --locale="en_US" --area="frontend" --theme="Ibnab/Salam"

    • php bin/magento setup:static-content:deploy

    the complete video tutorials is here : http://www.ibnab.com/en/blog/magento-2/magento-2-video-introduction-for-using-gulp-in-frontend







    share|improve this answer












    share|improve this answer



    share|improve this answer










    answered Feb 28 '16 at 21:55









    IbnabIbnab

    1,65910 silver badges13 bronze badges




    1,65910 silver badges13 bronze badges















    • Hi inab do you have the script the repo is not there anymore

      – open-ecommerce.org
      Nov 7 '17 at 11:41











    • try from here ufile.io/xhw1b

      – Ibnab
      Nov 16 '17 at 13:29

















    • Hi inab do you have the script the repo is not there anymore

      – open-ecommerce.org
      Nov 7 '17 at 11:41











    • try from here ufile.io/xhw1b

      – Ibnab
      Nov 16 '17 at 13:29
















    Hi inab do you have the script the repo is not there anymore

    – open-ecommerce.org
    Nov 7 '17 at 11:41





    Hi inab do you have the script the repo is not there anymore

    – open-ecommerce.org
    Nov 7 '17 at 11:41













    try from here ufile.io/xhw1b

    – Ibnab
    Nov 16 '17 at 13:29





    try from here ufile.io/xhw1b

    – Ibnab
    Nov 16 '17 at 13:29











    0














    If you are looking for something that stays with core magento style and structures, our team has developed this AbsoluteWebServices/magento-2-gulp that supports:



    • default magento 2 project structure with theme config inside dev/tools/grunt/configs/themes.js

    • installation with composer

    • .less


    • browsersync and liverreload

    • compiling es6+ with Babel

    • creating svg sprites





    share|improve this answer





























      0














      If you are looking for something that stays with core magento style and structures, our team has developed this AbsoluteWebServices/magento-2-gulp that supports:



      • default magento 2 project structure with theme config inside dev/tools/grunt/configs/themes.js

      • installation with composer

      • .less


      • browsersync and liverreload

      • compiling es6+ with Babel

      • creating svg sprites





      share|improve this answer



























        0












        0








        0







        If you are looking for something that stays with core magento style and structures, our team has developed this AbsoluteWebServices/magento-2-gulp that supports:



        • default magento 2 project structure with theme config inside dev/tools/grunt/configs/themes.js

        • installation with composer

        • .less


        • browsersync and liverreload

        • compiling es6+ with Babel

        • creating svg sprites





        share|improve this answer













        If you are looking for something that stays with core magento style and structures, our team has developed this AbsoluteWebServices/magento-2-gulp that supports:



        • default magento 2 project structure with theme config inside dev/tools/grunt/configs/themes.js

        • installation with composer

        • .less


        • browsersync and liverreload

        • compiling es6+ with Babel

        • creating svg sprites






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Aug 1 at 15:38









        bob_motorbob_motor

        1328 bronze badges




        1328 bronze badges






























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Magento Stack Exchange!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f102183%2fhow-to-configure-magento2-with-gulp-instead-grunt%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Get product attribute by attribute group code in magento 2get product attribute by product attribute group in magento 2Magento 2 Log Bundle Product Data in List Page?How to get all product attribute of a attribute group of Default attribute set?Magento 2.1 Create a filter in the product grid by new attributeMagento 2 : Get Product Attribute values By GroupMagento 2 How to get all existing values for one attributeMagento 2 get custom attribute of a single product inside a pluginMagento 2.3 How to get all the Multi Source Inventory (MSI) locations collection in custom module?Magento2: how to develop rest API to get new productsGet product attribute by attribute group code ( [attribute_group_code] ) in magento 2

            Category:9 (number) SubcategoriesMedia in category "9 (number)"Navigation menuUpload mediaGND ID: 4485639-8Library of Congress authority ID: sh85091979ReasonatorScholiaStatistics

            Magento 2.3: How do i solve this, Not registered handle, on custom form?How can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlmain.CRITICAL: Plugin class doesn't existMagento 2 : Problem while adding custom button order view page?Magento 2.2.5: Overriding Admin Controller sales/orderMagento 2.2.5: Add, Update and Delete existing products Custom OptionsMagento 2.3 : File Upload issue in UI Component FormMagento2 Not registered handleHow to configured Form Builder Js in my custom magento 2.3.0 module?Magento 2.3. How to create image upload field in an admin form