/
opt
/
canhelp
/
node_modules
/
postcss-load-config
/
src
/
/opt/canhelp/node_modules/postcss-load-config/src
mkdir
upload
Name
Size
Mode
Actions
index.d.ts
2093
0644
edit
dl
rm
index.js
3948
0644
edit
dl
rm
options.js
1079
0644
edit
dl
rm
plugins.js
1906
0644
edit
dl
rm
req.js
1276
0644
edit
dl
rm
Edit:
/opt/canhelp/node_modules/postcss-load-config/src/options.js
(1079B)
// @ts-check const req = require('./req.js') /** * Load Options * * @private * @method options * * @param {Object} config PostCSS Config * * @return {Promise<Object>} options PostCSS Options */ async function options(config, file) { if (config.parser && typeof config.parser === 'string') { try { config.parser = await req(config.parser, file) } catch (err) { throw new Error( `Loading PostCSS Parser failed: ${err.message}\n\n(@${file})` ) } } if (config.syntax && typeof config.syntax === 'string') { try { config.syntax = await req(config.syntax, file) } catch (err) { throw new Error( `Loading PostCSS Syntax failed: ${err.message}\n\n(@${file})` ) } } if (config.stringifier && typeof config.stringifier === 'string') { try { config.stringifier = await req(config.stringifier, file) } catch (err) { throw new Error( `Loading PostCSS Stringifier failed: ${err.message}\n\n(@${file})` ) } } return config } module.exports = options
Save
cmd:
run