This module has been moved to the monorepo wocss (and renamed to
@wocss/starter-kit
)
The wocss-starter-kit
simply ties together a few key dependencies that are usually the starting point for any new project.
- Global variables
- Colors variables
- Typography variables
- Media queries mixins
- Bem constructor mixins
- Sanitize.css
Install using npm:
$ npm install wocss-starter-kit --save
With a tool like webpack you can import all modules writing:
// SETTINGS
@import "~wocss-settings-global";
@import "~wocss-settings-colors";
@import "~wocss-settings-breakpoints";
@import "~wocss-settings-typography";
// TOOLS
@import '~wocss-tools-bem-constructor';
@import '~wocss-tools-mq';
// GENERIC
@import '~wocss-generic-sanitize';