https://github.com/megaarmos/gulp-opencart
Gulp file for OpenCart 3x, essential for theme makers
https://github.com/megaarmos/gulp-opencart
Last synced: about 1 month ago
JSON representation
Gulp file for OpenCart 3x, essential for theme makers
- Host: GitHub
- URL: https://github.com/megaarmos/gulp-opencart
- Owner: megaarmos
- License: mit
- Created: 2022-06-27T09:32:37.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-09-11T17:10:02.000Z (over 3 years ago)
- Last Synced: 2025-12-30T16:13:15.258Z (5 months ago)
- Language: JavaScript
- Size: 21.5 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Gulp for opencart
Ready gulp.js for your project.
***Supports only ```sass``` and ```scss```***
## Get Started
1. First make sure you have installed the right version of node.js and npm istalled.
- Recomended version of [node.js](https://nodejs.org/en/) is 8.17.0 or above.
```
node -v
```
- Recomended version of [npm](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm) is 6.13.7 or above.
```
npm -v
```
2. This command will install ```gulp``` globally.
```
npm install gulp-cli -g
```
***For next steps you need to be in your website root folder.***
For example:
> ...\domain\(domain name)>
3. This command will create package.json file.
```
npm init -y
```
4. This command will install required packages.
```
npm install gulp gulp-sass sass gulp-postcss cssnano gulp-terser browser-sync autoprefixer
```
## Command line usage
Rename ```gulp.js``` to ```gulpfile.js```.
Run ```gulp``` in command line and you are ready to go!