@arco-plugins/webpack-react
Version:
arco webpack plugin
18 lines (17 loc) • 1.35 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.componentCssMatchers = exports.componentLessMatchers = exports.libLocalDefaultMatchers = exports.esLocalDefaultMatchers = exports.globalCssMatchers = exports.globalLessMatchers = exports.lessMatchers = void 0;
var _1 = require(".");
exports.lessMatchers = "**/node_modules/".concat(_1.ARCO_DESIGN_COMPONENT_NAME, "/**/*.less");
exports.globalLessMatchers = "**/node_modules/".concat(_1.ARCO_DESIGN_COMPONENT_NAME, "/{es,lib}/style/index.less");
exports.globalCssMatchers = "**/node_modules/".concat(_1.ARCO_DESIGN_COMPONENT_NAME, "/{es,lib}/style/index.css");
exports.esLocalDefaultMatchers = "**/node_modules/".concat(_1.ARCO_DESIGN_COMPONENT_NAME, "/es/locale/default.js");
exports.libLocalDefaultMatchers = "**/node_modules/".concat(_1.ARCO_DESIGN_COMPONENT_NAME, "/lib/locale/default.js");
var componentLessMatchers = function (componentName) {
return "**/node_modules/".concat(_1.ARCO_DESIGN_COMPONENT_NAME, "/{es,lib}/").concat(componentName, "/style/index.less");
};
exports.componentLessMatchers = componentLessMatchers;
var componentCssMatchers = function (componentName) {
return "**/node_modules/".concat(_1.ARCO_DESIGN_COMPONENT_NAME, "/{es,lib}/").concat(componentName, "/style/index.css");
};
exports.componentCssMatchers = componentCssMatchers;