@kkt/stylus-modules
TypeScript icon, indicating that this package has built-in type declarations

7.5.5 • Public • Published

@kkt/stylus-modules

npm version

Use create-react-app to build react libraries. Support for regular styl files and *.module.styl files. This package contains a plugin for using stylus with kkt.

Installation

yarn add --dev @kkt/stylus-modules
# or use npm if you don't have yarn yet
npm install --save-dev @kkt/stylus-modules

Usage

In the .kktrc.js or .kktrc.ts you created for kkt add this code:

import stylusModules from '@kkt/stylus-modules';

export default (conf, evn, options) => {
  conf = stylusModules(conf, evn, options);
  return conf;
}

In package.json, add a separate npm script to build library

{
  "scripts": {
    ...
    "bundle": "kkt build --bundle",
    "bundle:min": "kkt build --bundle --mini",
    ...
  }
}

And you can now use CRA to build your library

Configurations

import stylusModules from '@kkt/stylus-modules';

export default (conf, evn, options) => {

  // with loaderOptions
  conf = stylusModules.withLoaderOptions({
    stylusOptions: {
      // Specify the path. where to find files
      paths: ["node_modules/vars"],
    },
  })(conf, env, options);

  return conf;
}

License

Licensed under the MIT License

Package Sidebar

Install

npm i @kkt/stylus-modules

Weekly Downloads

12

Version

7.5.5

License

MIT

Unpacked Size

14.3 kB

Total Files

5

Last publish

Collaborators

  • uiwjs
  • wcjiang