0.0.5 • Published 4 months ago

@inthepocket/stylelint-config-standard v0.0.5

Weekly downloads
-
License
MIT
Repository
-
Last release
4 months ago

@inthepocket/stylelint-config

Usage

Install

npm i -D @inthepocket/stylelint-config-<type>

Configure Stylelint

{
  "extends": ["@inthepocket/stylelint-config-<type>"]
}

Add script in package.json

For example:

{
  "scripts": {
    "stylelint": "stylelint '**/*.{css,scss,sass}' --fix"
  }
}

Development

Install

npm i

Releasing a new version

npm run lerna:version

When run, this command does the following:

  1. Identifies packages that have been updated since the previous tagged release.
  2. Prompts for a new version.
  3. Modifies package metadata to reflect new release, running appropriate lifecycle scripts in root and per-package.
  4. Commits those changes and tags the commit.
  5. Pushes to the git remote.
  6. Publish packages updated since the last release.