├── .gitignore ├── README.md ├── README.old.md ├── gulpfile-example-01.js ├── gulpfile-example-API.js ├── gulpfile-example-proxy.js ├── gulpfile-example-reloading-after-tasks.js └── gulpfile-example-server.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | npm-debug.log 4 | .sass-cache -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/gulp-browser-sync/HEAD/README.md -------------------------------------------------------------------------------- /README.old.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/gulp-browser-sync/HEAD/README.old.md -------------------------------------------------------------------------------- /gulpfile-example-01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/gulp-browser-sync/HEAD/gulpfile-example-01.js -------------------------------------------------------------------------------- /gulpfile-example-API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/gulp-browser-sync/HEAD/gulpfile-example-API.js -------------------------------------------------------------------------------- /gulpfile-example-proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/gulp-browser-sync/HEAD/gulpfile-example-proxy.js -------------------------------------------------------------------------------- /gulpfile-example-reloading-after-tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/gulp-browser-sync/HEAD/gulpfile-example-reloading-after-tasks.js -------------------------------------------------------------------------------- /gulpfile-example-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrowserSync/gulp-browser-sync/HEAD/gulpfile-example-server.js --------------------------------------------------------------------------------