An open API service indexing awesome lists of open source software.

https://github.com/willianfalbo/aspnet-core-mvc-and-gulp

Using Gulp (https://gulpjs.com/) to automate and enhance workflows
https://github.com/willianfalbo/aspnet-core-mvc-and-gulp

Last synced: 7 months ago
JSON representation

Using Gulp (https://gulpjs.com/) to automate and enhance workflows

Awesome Lists containing this project

README

          

# 1 - Install Node.js
https://nodejs.org/en/download/

# 2 - Install Gulp
https://gulpjs.com/docs/en/getting-started/quick-start

# 3 - Restore aspnet core dependencies
`dotnet restore`

# 4 - Restore node modules
`npm install`

# 5 - Run or watch for changes in aspnet core mvc
`dotnet run` or `dotnet watch run`

# 6 - Run or watch for changes in './scripts', './styles' and './node_modules'
`gulp build` or `gulp watch`
(after running the above command, all changes will be located in './wwwroot/...')
(to modify it, open the file 'gulpfile.js')