npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

rx-css-loader

v0.1.13

Published

css loader for weex-rx

Downloads

12

Readme

rx-css-loader

0.1.11

fix border-width 0px bug

0.1.9

fix border-width =>borderWidth

0.1.8

fix border-width less than 1px will parse to 1px

0.1.7

fix border-width 1px will not parse to 2rem

0.1.3

fix: opacity translate to rem

fix: flex bug:flex-grow && flex-basis && flex-shrink

fix: ignnore css prefix info

feature:add notValidate argument to hide warning

rx-css-loader?notValidate=true

**feature: add unit test

  • inspired by react-native-css-loader

Installation

$ npm install rx-css-loader --save-dev

Usage

within the webpack config:

// only css:
module: {
  loaders: [{
    test: /\.css$/,
    loader: 'rx-css-loader'
  }]
}

// use sass:
module: {
  loaders: [{
    test: /\.rxscss$/,
    loader: 'rx-css-loader!sass-loader'
  }]
}

// use less:
module: {
  loaders: [{
    test: /\.rxless$/,
    loader: 'rx-css-loader!less-loader'
  }]
}

Properties supported

Any property found in your CSS will be camelCased. By default, this plugin will always output values as JavaScript Number or Boolean objects when appropriate. Values with units attached, including "em" and "px," will be output without their unit suffixes.

Special-case properties

The following properties output different keys to satisfy React Native's requirements. Unless otherwise noted, the values for each correspond with CSS3.

Property | Example Values | Notes -------- | -------------- | ----- margin | 2px

2px 4px 3px 1px 5px 1px 3px 2px 6px | padding | 2px 2px 4px 3px 1px 5px 1px 3px 2px 6px | box-shadow | none 0 2px 4px rgba(52, 21, 23, 0.32) | Inset shadows and spread values are not supported. flex | 1 1 30px 1 2 10% | Only the first value will be output and the rest will be ignored, as React Native does not support flex-basis or flex-shrink. transform | perspective(90) rotate(10deg) rotateX(5deg) rotateY(10deg) rotateZ(15deg) rotate3d(5deg, 10deg, 15deg) scale(1.2) scaleX(1.5) scaleY(0.5) scale2d(1.5, 0.5) or scale3d(1.5, 0.5) translateX(5px) translateY(10px) translate2d(5px, 10px) or translate3d(5px, 10px) | You may chain multiple transformations together with a space delimiter, like in CSS3 (see example above).

Contributing

  • Fork this Repo first
  • Clone your Repo
  • Install dependencies by $ npm install
  • Checkout a feature branch
  • Feel free to add your features
  • Make sure your features are fully tested
  • Publish your local branch, Open a pull request
  • Enjoy hacking <3