This package has been deprecated

Author message:

@stencil/stylus is no longer supported

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

1.0.1 • Public • Published

@stencil/stylus

This package is used to easily precompile Stylus files within the Stencil components.

First, npm install within the project:

npm install @stencil/stylus --save-dev

Next, within the project's stencil.config.js file, import the plugin and add it to the config's plugins config:

stencil.config.ts

import { Config } from '@stencil/core';
import { stylus } from '@stencil/stylus';

export const config: Config = {
  plugins: [
    stylus()
  ]
};

During development, this plugin will kick-in for .styl and .stylus style urls, and precompile them to CSS.

Options

Include Paths

The includePaths config is an array of paths that are used to resolve imports. By default, the plugin adds the project root dir and the current dir of the file to this array. The files should be relative to the root folder.

exports.config = {
  plugins: [
    stylus({
      includePaths: [
        'src/globals'
      ]
    })
  ]
};

Inject Globals Stylus Paths

The injectGlobalPaths config is an array of paths that automatically get added as @import declarations to all components. This can be useful to inject Stylus variables, mixins and functions to override defaults of external collections. Relative paths within injectGlobalPaths should be relative to the stencil.config.js file.

exports.config = {
  plugins: [
    stylus({
      injectGlobalPaths: [
        'src/globals/variables.styl',
        'src/globals/mixins.styl'
      ]
    })
  ]
};

Note that each of these files are always added to each component, so in most cases they shouldn't contain CSS because it'll get duplicated in each component. Instead, injectGlobalPaths should only be used for Stylus variables, mixins and functions, but not contain any CSS.

Plugins

The plugins config is an array of Stylus plugins.

const axis = require('axis');
const nib = require('nib');

exports.config = {
  plugins: [
    stylus({
      plugins: [
        axis(),
        nib()
      ]
    })
  ]
};

Related

Contributing

Please see our Contributor Code of Conduct for information on our rules of conduct.

Dependencies (1)

Dev Dependencies (11)

Package Sidebar

Install

npm i @stencil/stylus

Weekly Downloads

145

Version

1.0.1

License

MIT

Unpacked Size

20.3 kB

Total Files

12

Last publish

Collaborators

  • ionicjs
  • rwaskiewicz-ionic