JSPM

fxos-reloadcss

0.3.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1
  • Score
    100M100P100Q19146F
  • License ISC

Live-reload CSS in a FirefoxOS simulator, without reloading the app

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-reloadcss

Usage

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!');
});