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

fis-parser-less-preprocessor

v1.0.0

Published

less文件编译前预处理

Downloads

4

Readme

fis-parser-less-preprocessor

less文件编译之前预处理
问题:less编译合并过程中合并顺序无法干涉,可能某些样式我们希望放在顶部或者某些自定义位置
解决:1.在指定file.id的less文件中,import指定路径,达到干涉合并顺序的目的,被import的路径则可以不再参与fis的编译发布
解决:2.在配置文件更新文件内容,更灵活更自由的任务配置

Install

npm i fis-parser-less-preprocessor -g

Setting

fis.config.set('modules.parser.less', ['less-preprocessor', 'less']);

Config

// 配置文件可以是单个对象
var config = {
	id: '/css/aio.less',
	// import指定路径,值可以是数组,指定多个import项,可选
	import: '/css/reset.less',
	// 自定义处理文件内容,可选
	fn: function(content){
		return content;
	}
}

// 配置文件也可以是一个数组
var configs = [config];

// configs, config二选一
fis.config.set('settings.parser.less-preprocessor', configs || config);