css-filter-converter
Version:
A tool used to generate css filter color property via hexadecimal or rgb color formats
14 lines (13 loc) • 1.26 kB
JavaScript
;
// if there are too many new issues being created, change the below variables to the following:
// export const UNEXPECTED_ERROR_MESSAGE_PREFIX =
// 'Unexpected error has occurred, please report this by creating a new issue in the following link: ';
Object.defineProperty(exports, "__esModule", { value: true });
exports.MUST_INSTALL_PUPPETEER = exports.DEFAULT_CONVERSION_ERROR_MESSAGE = exports.UNEXPECTED_ERROR_MESSAGE_INTRODUCTION = exports.UNEXPECTED_ERROR_MESSAGE_LINK = exports.UNEXPECTED_ERROR_MESSAGE_PREFIX = void 0;
// export const UNEXPECTED_ERROR_MESSAGE_LINK = 'https://github.com/OvidijusParsiunas/css-filter-converter/issues';
exports.UNEXPECTED_ERROR_MESSAGE_PREFIX = 'Unexpected error has occurred, please report this by using the following link: ';
exports.UNEXPECTED_ERROR_MESSAGE_LINK = 'https://github.com/OvidijusParsiunas/css-filter-converter/issues/new';
exports.UNEXPECTED_ERROR_MESSAGE_INTRODUCTION = exports.UNEXPECTED_ERROR_MESSAGE_PREFIX + exports.UNEXPECTED_ERROR_MESSAGE_LINK;
exports.DEFAULT_CONVERSION_ERROR_MESSAGE = 'Input value is invalid';
exports.MUST_INSTALL_PUPPETEER = "To convert filter values to color in Node - you will first need to install 'puppeteer' by running:" +
' \n npm install puppeteer';