Package Exports
- fxos-reloadcss
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (fxos-reloadcss) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
fxos-reloadcss
Live-reload CSS in a FirefoxOS simulator, without reloading the app
Install
$ npm install fxos-reloadcssUsage
var reloadcss = require('fxos-reloadcss');
reloadcss('manifest.webapp', function(err, result) {
console.log('done!');
});
reloadcss('manifest.webapp').then(nextPromise);
reloadcss({
manifestURL: 'manifest.webapp',
port:8004
}, function(err, result) {
console.log('done!');
});