Upgraded imagemagick and manually altered pdf to image module to handle changes....
[yaffs-website] / web / modules / contrib / paragraphs / css / gulp-options.yml
1 # This file holds various gulp configurations that we need in our Gulp process.
2
3 # Locations of our SASS and CSS files.
4 scssSrc: "./"
5 cssDest: "./"
6
7 # This are the paths that will be added to sass search paths for include.
8 # @todo - note that we are not using this for now really, this pattern will
9 # maybe make sense for more complex CSS work that we will do. If this is not
10 # reused in near future lets consider to remove it.
11 sassIncludePaths:
12   - "./sass/"
13   - "./node_modules/"
14
15 # Automatically load any gulp plugins in package.json.
16 gulpLoadPlugins:
17   pattern:
18     - "gulp-*"
19     - "gulp.*"
20     - "autoprefixer"
21     - "postcss-*"
22     - "stylelint"
23     - "syntax_scss"
24   # Rename mapping to values that we will use in JS code.
25   rename:
26     postcss-reporter: "reporter"
27     postcss-scss: "syntax_scss"
28
29 autoprefixer:
30   # Autoprefixer 7.x version by default is disabling grid support for IE but
31   # we still needs to support old IE versions.
32   # @see https://github.com/postcss/autoprefixer/releases/tag/7.0.0.
33   grid: true
34   # Browsers support is last two versions of all browsers by default, IE10+ and
35   # Safari 7+ because of iPhone 5c and 5s.
36   browsers:
37     - "last 2 versions"
38     - "ie >= 10"
39     - "Safari >= 7"
40
41 # Path to stylelint config file.
42 stylelintOptions:
43   configFile: "./.stylelintrc.yml"
44 # Processor configuration for stylelint postcss plugin.
45 processorsOptions:
46   reporterOptions:
47     # Clear all messages after displaying so they are not redisplayed in other
48     # plugins that are coming after stylelint.
49     clearAllMessages: true
50     # Don't throw exception but continue with gulp tasks.
51     throwError: false