chenxixian 87c5fa25d0 add files 6 سال پیش
..
.npmignore 87c5fa25d0 add files 6 سال پیش
example.js 87c5fa25d0 add files 6 سال پیش
index.html 87c5fa25d0 add files 6 سال پیش
index.js 87c5fa25d0 add files 6 سال پیش
package.json 87c5fa25d0 add files 6 سال پیش
readme.md 87c5fa25d0 add files 6 سال پیش

readme.md

###bs-snippet-injector Write & Remove the BrowserSync Snippet to a file

This is an alternative to using the BrowserSync proxy.

##Install

$ npm install browser-sync bs-snippet-injector

###Example

// requires version 1.3.3 of BrowserSync or higher.
var browserSync = require("browser-sync");

// register the plugin
browserSync.use(require("bs-snippet-injector"), {
    // path to the file containing the closing </body> tag
    file: "app/design/frontend/project/template/page/1column.phtml" 
});

// now run BrowserSync, wathching CSS files.
browserSync({
  files: "skin/frontend/project/assets/css/*.css"
});