Tag: Angular

  • Digging into CSS variables at runtime

    I’ve had a need to be able to see how multiple CSS variables are computed at runtime. I’m dealing with interactions between SCSS and CSS variables so I needed to know what was happening. There are a few ways to do this in Chrome Dev Tools. One way is in the Styles inspector, you can…

  • Development on a Pixelbook?!?

    Development on a Pixelbook?!?

    I’ve started on a strange journey, one I didn’t think was possible before. I don’t even know if it is possible now, though I have started on it. I’m attempting to do all of my development work and teaching Angular on a Pixelbook. I’m not the first to start this journey, but I haven’t found…

  • Publishing an Angular library with assets

    Publishing an Angular library with assets

    In the current Angular CLI (Angular 8 at the time of this writing) the tooling for libraries is really good except for one area, assets. Unlike when you build a project for production, building a library does not package assets like you might expect. tl;dr – the boiled down steps Build the library This article…