├── LICENSE ├── README.md ├── dev └── tools │ └── gulp │ └── configs │ ├── .eslintrc │ ├── browser-sync.js │ ├── eslint.js │ ├── stylelint.js │ ├── themes.js │ └── uncss.js ├── gulpfile.js └── package.json /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketweb-fed/magento2-gulpfile/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketweb-fed/magento2-gulpfile/HEAD/README.md -------------------------------------------------------------------------------- /dev/tools/gulp/configs/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketweb-fed/magento2-gulpfile/HEAD/dev/tools/gulp/configs/.eslintrc -------------------------------------------------------------------------------- /dev/tools/gulp/configs/browser-sync.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | proxy : "local.magento" 3 | } -------------------------------------------------------------------------------- /dev/tools/gulp/configs/eslint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketweb-fed/magento2-gulpfile/HEAD/dev/tools/gulp/configs/eslint.js -------------------------------------------------------------------------------- /dev/tools/gulp/configs/stylelint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketweb-fed/magento2-gulpfile/HEAD/dev/tools/gulp/configs/stylelint.js -------------------------------------------------------------------------------- /dev/tools/gulp/configs/themes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketweb-fed/magento2-gulpfile/HEAD/dev/tools/gulp/configs/themes.js -------------------------------------------------------------------------------- /dev/tools/gulp/configs/uncss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketweb-fed/magento2-gulpfile/HEAD/dev/tools/gulp/configs/uncss.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketweb-fed/magento2-gulpfile/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketweb-fed/magento2-gulpfile/HEAD/package.json --------------------------------------------------------------------------------