Home
last modified time | relevance | path

Searched refs:matchCssModule (Results 1 – 8 of 8) sorted by relevance

/expo/packages/@expo/metro-config/src/transform-worker/__tests__/
H A Dcss-modules.test.ts4 matchCssModule,
32 describe(matchCssModule, () => {
43 expect(matchCssModule(filename)).toBeTruthy();
48 expect(matchCssModule(filename)).toBeFalsy();
/expo/packages/@expo/metro-config/build/transform-worker/
H A Dcss-modules.js7 exports.matchCssModule = matchCssModule;
92 function matchCssModule(filePath) { function
H A Dcss-modules.d.ts21 export declare function matchCssModule(filePath: string): boolean; function
H A Dtransform-worker.js80 …const code = (0, _cssModules().matchCssModule)(filename) ? 'module.exports={ unstable_styles: {} }…
106 if ((0, _cssModules().matchCssModule)(filename)) {
H A Dcss-modules.js.map1matchCssModule","filePath","test"],"sources":["../../src/transform-worker/css-modules.ts"],"source…
H A Dtransform-worker.js.map1matchCssModule","toString","transformPostCssModule","src","syntax","matchSass","compileSass","_jsM…
/expo/packages/@expo/metro-config/src/transform-worker/
H A Dtransform-worker.ts16 import { matchCssModule, transformCssModuleWeb } from './css-modules';
84 const code = matchCssModule(filename) ? 'module.exports={ unstable_styles: {} };' : '';
111 if (matchCssModule(filename)) {
H A Dcss-modules.ts84 export function matchCssModule(filePath: string): boolean { function