Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@arnog/esbuild-plugin-less
Advanced tools
Plugin for `esbuild` to import `.less` files in JavaScript or TypeScript
Plugin for esbuild
to import .less
files in JavaScript or TypeScript.
npm i @arnog/esbuild-plugin-less
// In your JS file:
import style from "style.less";
console.log(style);
// In your esbuild build file:
import { build } from "esbuild";
import { less } from "@arnog/esbuild-plugin-less";
build({
entryPoints: ["index.js"],
bundle: true,
outfile: "build/index.js",
plugins: [less()],
});
You can pass to the less()
function an option object literal as described here.
This plugin was inspired from @iam-medvedev/esbuild-plugin-less.
FAQs
Plugin for `esbuild` to import `.less` files in JavaScript or TypeScript
The npm package @arnog/esbuild-plugin-less receives a total of 322 weekly downloads. As such, @arnog/esbuild-plugin-less popularity was classified as not popular.
We found that @arnog/esbuild-plugin-less 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.