This is me testing and learning Gulp.
$ npm install
$ gulp
gulpfile.js: Stores all Gulp configurations, like requirements and tasks.package.json: Stores information about the project, like dependencies.
-
$ gulp greetingSays «hello!» -
$ gulp browserSyncCreates local server (localhost:3000) and opens the browser window. -
$ gulp watchWatches scss-folder for changes, then writes them to styles.css. -
$ gulp scss-lintChecks your sass for suspiciousness. -
$ gulp sassCompiles your sass to styles.css. -
$ gulp zipCreates a zip of the entire project.