Blame view

node_modules/postcss-load-config/src/options.js 1.02 KB
aaac7fed   liuqimichale   add
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
  'use strict'
  
  const req = require('import-cwd')
  
  /**
   * Load Options
   *
   * @private
   * @method options
   *
   * @param  {Object} config  PostCSS Config
   *
   * @return {Object} options PostCSS Options
   */
  const options = (config, file) => {
    if (config.parser && typeof config.parser === 'string') {
      try {
        config.parser = req(config.parser)
      } catch (err) {
        throw new Error(`Loading PostCSS Parser failed: ${err.message}\n\n(@${file})`)
      }
    }
  
    if (config.syntax && typeof config.syntax === 'string') {
      try {
        config.syntax = req(config.syntax)
      } catch (err) {
        throw new Error(`Loading PostCSS Syntax failed: ${err.message}\n\n(@${file})`)
      }
    }
  
    if (config.stringifier && typeof config.stringifier === 'string') {
      try {
        config.stringifier = req(config.stringifier)
      } catch (err) {
        throw new Error(`Loading PostCSS Stringifier failed: ${err.message}\n\n(@${file})`)
      }
    }
  
    if (config.plugins) {
      delete config.plugins
    }
  
    return config
  }
  
  module.exports = options