
Security News
PEP 810 Proposes Explicit Lazy Imports for Python 3.15
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
@ptb/gatsby-plugin-stylus
Advanced tools
Provides drop-in support for Stylus with or without CSS Modules
yarn add gatsby-plugin-stylus
gatsby-config.js
file..styl
files) and require/import them// in gatsby-config.js
plugins: [`gatsby-plugin-stylus`];
Using CSS modules requires no additional configuration. Simply prepend .module
to the extension. For example: App.styl
-> App.module.styl
. Any file with
the module
extension will use CSS modules.
This plugin has the same API as
stylus-loader, which
means you can add stylus plugins with use
:
// in gatsby-config.js
const rupture = require("rupture");
module.exports = {
plugins: [
{
resolve: "gatsby-plugin-stylus",
options: {
use: [rupture()],
},
},
],
};
FAQs
Gatsby support for Stylus
We found that @ptb/gatsby-plugin-stylus demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
Security News
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.