Skip to content

Files

49 lines (36 loc) · 1.17 KB

processHtml.md

File metadata and controls

49 lines (36 loc) · 1.17 KB

rcs.process.html

rcs.process.html(src[, options][, callback])

Important! process.css should run first, otherwise there are no minified selectors

Sync: process.htmlSync

Parameters:

  • src <String | Array>
  • options <Object> optional
  • callback <Function> optional

Options:

Example:

const rcs = require('rename-css-selectors');

// callback
rcs.process.html('**/*.html', options, (err) => {
  if (err) {
    return console.error(err);
  }

  console.log('Successfully wrote new HTML files');
});

// promise
rcs.process.html('**/*.html', options)
  .then(() => console.log('Successfully wrote new HTML files'))
  .catch(console.error);

// async/await
(async () => {
  try {
    await rcs.process.html('**/*.html', options);

    console.log('Successfully wrote new HTML files');
  } catch (err) {
    console.error(err);
  }
})();