1.1.0 • Published 8 months ago

postcss-indonesian-stylesheets v1.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

postcss-indonesian-stylesheets

PostCSS plugin for writing CSS in Indonesian.

.foo {
  /* Input example */
  a {
    warna: merah paksakan!;
  }
}
.foo {
  /* Output example */
  a {
    color: red !important;
  }
}

Usage

Step 1: Install plugin:

npm install --save-dev postcss postcss-indonesian-stylesheets

Step 2: Check you project for existed PostCSS config: postcss.config.js in the project root, "postcss" section in package.json or postcss in bundle config.

If you do not use PostCSS, add it according to official docs and set this plugin in settings.

Step 3: Add the plugin to plugins list:

module.exports = {
  plugins: [
+   require('postcss-indonesian-stylesheets'),
    require('autoprefixer')
  ]
}

Documentations

Contributing

postcss-indonesian-stylesheets doesn't cover all CSS properties and values in Indonesian. Any help in translating and adding more Indonesian word for properties and values is always appreciated.