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;
How to configure Magento2 with Gulp instead Grunt.
Anyone have idea ?
magento2 magento-2.0 grunt
add a comment |
How to configure Magento2 with Gulp instead Grunt.
Anyone have idea ?
magento2 magento-2.0 grunt
Was my response the one you where looking for?
– Kay Int Veen
Feb 10 '17 at 14:20
add a comment |
How to configure Magento2 with Gulp instead Grunt.
Anyone have idea ?
magento2 magento-2.0 grunt
How to configure Magento2 with Gulp instead Grunt.
Anyone have idea ?
magento2 magento-2.0 grunt
magento2 magento-2.0 grunt
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
add a comment |
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
add a comment |
5 Answers
5
active
oldest
votes
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']);
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
add a comment |
I suggest to try SnowdogApps/magento2-frontools
With this you have gulp and also sass support
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
add a comment |
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.
That links are very informative. Thanks for sharing boss !
– Shahzaib Hayat Khan
Nov 1 '17 at 13:33
add a comment |
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
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
add a comment |
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
andliverreload
- compiling es6+ with
Babel
- creating
svg
sprites
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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']);
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
add a comment |
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']);
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
add a comment |
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']);
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']);
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
add a comment |
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
add a comment |
I suggest to try SnowdogApps/magento2-frontools
With this you have gulp and also sass support
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
add a comment |
I suggest to try SnowdogApps/magento2-frontools
With this you have gulp and also sass support
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
add a comment |
I suggest to try SnowdogApps/magento2-frontools
With this you have gulp and also sass support
I suggest to try SnowdogApps/magento2-frontools
With this you have gulp and also sass support
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
add a comment |
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
add a comment |
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.
That links are very informative. Thanks for sharing boss !
– Shahzaib Hayat Khan
Nov 1 '17 at 13:33
add a comment |
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.
That links are very informative. Thanks for sharing boss !
– Shahzaib Hayat Khan
Nov 1 '17 at 13:33
add a comment |
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.
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.
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
add a comment |
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
add a comment |
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
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
add a comment |
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
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
add a comment |
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
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
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
add a comment |
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
add a comment |
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
andliverreload
- compiling es6+ with
Babel
- creating
svg
sprites
add a comment |
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
andliverreload
- compiling es6+ with
Babel
- creating
svg
sprites
add a comment |
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
andliverreload
- compiling es6+ with
Babel
- creating
svg
sprites
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
andliverreload
- compiling es6+ with
Babel
- creating
svg
sprites
answered Aug 1 at 15:38
bob_motorbob_motor
1328 bronze badges
1328 bronze badges
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
Was my response the one you where looking for?
– Kay Int Veen
Feb 10 '17 at 14:20