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

css-types

v1.1.0

Published

Package for creating typings for stylesheet files.

Downloads

23

Readme

Css Types

What is this package for

The package provides a convenient way to create a typescript enum for css classes in *.css and *.scss files for later use in typescript or javascript files. It does not require a bundler and can be used on directories or separate files.

Usage

Install it from npm using your preferred package manager, i.e.:

npm install css-types --save-dev

Create a custom script in your package.json file:

"scripts": {
    "css-types": "css-types"
}

Then run it:

npm run css-types

You can also set it to watch mode:

"scripts": {
    "css-types": "css-types --watch"
}

By default css-types looks for the src directory and walks it, creating typescript enums for every *.css and *.scss file it finds. To set a different directory for crawling simply pass its relative path:

"scripts": {
    "css-types": "css-types --watch --directory=src/css"
},

What does it do

It creates a typescript a *.style.ts file containing enum with all style classes found in the stylesheet file as enum values *.css and *.scss file will receive.

For example, provided you have a stylesheet main.scss with the following contents:

// Hypothetical main.css file.
.content {
  color: pink;
  .ads {
    background: red;
  }
}

Performing css-types command will create main.style.ts file with the following enum:

export enum Main {
  Content = 'content',
  Ads = 'ads',
}

Now it can be used in ts:

import { Main } from './css/main.style';

document.getElementById('some-element-id').classList.add(Main.Content);

No need to worry about accidental renaming of css class that is used somewhere - as soon as types are updated and enum keys change, it will trigger an error if non-existant css classes are in use somewhere.

Plans for future

  • ~~add --watch flag for auto-updates of typings;~~ added in version 1.1.0.
  • add enumeration for IDs;
  • add support for LESS.