8000 Releases · csstime/csstime-gulp-tasks · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Releases: csstime/csstime-gulp-tasks

Introduce "variables" in config for preprocessors

23 Oct 18:19
Compare
Choose a tag to compare

New option in config:

{
  variables: {
    MY_VARIABLE: 'fancy'
  }
}

It will generate variables for preprocessors like:

$MY_VARIABLE: "fancy";

Better error handling

13 Apr 20:20
Compare
Choose a tag to compare
6.0.2

v6.0.2

SASS support

13 Mar 18:44
Compare
Choose a tag to compare

Now it's possible to use LESS or SASS for your styles.

Just set preprocessor in the config for csstime and store less/styles.less or sass/styles.scss inside assets of components.

Read more in Migration guide.

Added excludes for Csscomb config

16 Feb 09:14
Compare
Choose a tag to compare

Remove support for svg2png fallback

20 Jan 22:06
Compare
Choose a tag to compare

Svg symbols support

08 Aug 03:48
Compare
Choose a tag to compare

Now you can combine your svg-icons to single symbols.svg file. Just store your svg icons in assets/symbols directory.

Default configuration options:
"svgSymbolsDir": "symbols"
"svgSymbolsFileName": "symbols"
"useSvgSymbols": false // set it to true
"svgSymbolsPrefix": "icon-"
"svgstoreConfig": { "inlineSvg": true }"

Plugin gulp-svgstore will be used to generate single svg-file with symbols.

How to use svg-symbols you can read here.

Themes support

07 Aug 14:13
Compare
Choose a tag to compare

Now you can split css-bundle to several files. To do that put named less-files to less/themes directory and describe such names in themedStylesFileNames section of config.

For example,
Create assets/less/themes/dark.less and add config section themedStylesFileNames: ['dark'].
After the build process you will get separated themes/dark.css file.

Support component-based approach

26 Apr 09:35
Compare
Choose a tag to compare
  • recursively search for components in specified directories,
  • read name of component in component.json
  • new names of default directories
  • incremental builds.

Remove gulp-pleeease, add PostCSS processors

19 Mar 15:42
Compare
Choose a tag to compare
Merge pull request #7 from csstime/develop

Remove gulp-pleeease, add PostCSS processors

Refactored tasks to cache plugins and optimise the execution

14 Mar 16:00
Compare
Choose a tag to compare
0