
Security News
Package Maintainers Call for Improvements to GitHub’s New npm Security Plan
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
@farmfe/js-plugin-less
Advanced tools
English | 简体中文
Support compiling Less in Farm.
To begin, you'll need to install less
and @farmfe/js-plugin-less
:
npm install less @farmfe/js-plugin-less --save-dev
or
yarn add -D less @farmfe/js-plugin-less
or
pnpm add -D less @farmfe/js-plugin-less
Configuring the plugin in farm.config.ts
:
import { defineFarmConfig } from '@farmfe/core/dist/config';
import Less from '@farmfe/js-plugin-less'; // import the plugin
export default defineFarmConfig({
compilation: {
input: {
index: './index.html',
},
output: {
path: './build',
},
},
plugins: [
// use the less plugin.
Less({
// custom options here
}),
],
});
Type:
type lessOptions = import('less').options | ((loaderContext: LoaderContext) => import('less').options})
Default: { relativeUrls: true }
Here you can pass any Less specific options to the @farm/js-plugin-less
.See the Less options for any available options you need.
Type:
type additionalData =
| string
| ((content: string, resolvePath:string) => string);
Default: undefined
Appends Less
code to the actual entry file.
In this case, the @farm/js-plugin-less
will not override the source but just prepend the entry's content.
In actual development, this becomes useful, we don't need to add new files.
Since you're injecting code, this will break the source mappings in your entry file. Often there's a simpler solution than this, like multiple Less entry files.
string
export default defineFarmConfig({
compilation: {
input: {
index: './index.html',
},
output: {
path: './build',
},
},
plugins: [
// use the less plugin.
Less({
additionalData: `@hoverColor: #f10215;`
}),
],
});
function
export default defineFarmConfig({
compilation: {
input: {
index: './index.html',
},
output: {
path: './build',
},
},
plugins: [farmLessPlugin({
additionalData: (content:string, resolvePath:string) => {
if (path.basename(resolvePath,'.less') === 'index') {
return `@hoverColor: #f10215;` + content;
}
},
}) ],
});
Type: boolean
Default: false
Whether to generate sourceMap
If not set, it will read the compilation.sourcemap configuration in the farm configuration
Type: string | undefined
Default: undefined
@farm/js-plugin-less
compatible with Less 3 and 4 versions
The special implementation
option determines which implementation of Less to use. If you not config, it will find the less in you local node_modules.
FAQs
support less compile for farm.
The npm package @farmfe/js-plugin-less receives a total of 69 weekly downloads. As such, @farmfe/js-plugin-less popularity was classified as not popular.
We found that @farmfe/js-plugin-less demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers 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
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.