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

miniprogram-tailwind-preset

v0.6.0

Published

tailwindcss在微信小程序中使用时的预设文件

Downloads

38

Readme

miniprogram-tailwind-preset

在微信小程序中使用tailwindcss( 3.4.4 )时的预设文件.

特性

  • 兼容大多数原生写法
  • 关闭与小程序不兼容的默认插件,对应的自定义插件替换
  • 修改默认separator为_

安装

npm i miniprogram-tailwind-preset --save-dev

配置

// tailwind.config.js
// import type { Config } from "tailwindcss";
import { preset } from "./src";
export default {
  content: ["your/wxml/files"],
  presets: [preset],
  // ...
}; // satisfies Config;

关闭的默认插件

  • preflight: false, // 不支持 * 选择器等不兼容的基础样式
  • container: false, // 不符合小程序的设计规范,如需要使用可自定义的媒体查询
  • placeholderColor: false, // 不支持::placeholder选择器,小程序中使用placeholder-class代替
  • placeholderOpacity: false, // 不支持::placeholder选择器,小程序中使用placeholder-class代替
  • divideColor: false, // 不支持 :not 选择器
  • divideOpacity: false, // 不支持 :not 选择器
  • divideStyle: false, // 不支持 :not 选择器
  • divideWidth: false, // 不支持 :not 选择器
  • backdropFilter: false, // 不支持 * 选择器,通过 backdropFilterPlugin 重新定义
  • filter: false, // 不支持 * 选择器,通过 filterPlugin 重新定义
  • ringWidth: false, // 不支持 * 选择器,通过 ringWidthPlugin 重新定义
  • boxShadow: false, // 不支持 * 选择器,通过 boxShadowPlugin 重新定义
  • fontVariantNumeric: false, // 不支持 * 选择器,通过 fontVariantNumericPlugin 重新定义
  • gradientColorStops: false, // 不支持 * 选择器,通过 gradientColorStopsPlugin 重新定义
  • scrollSnapType: false, // 不支持 * 选择器,通过 scrollSnapTypePlugin 重新定义
  • touchAction: false, // 不支持 * 选择器,通过 touchActionPlugin 重新定义
  • transform: false, // 不支持 * 选择器,通过 transformPlugin 重新定义
  • borderSpacing: false, // 不支持 * 选择器,通过 borderSpacingPlugin 重新定义
  • contain: false, // 不支持 * 选择器,通过 containPlugin 重新定义

自定义主题

自定义插件

不同于原生实体类的写法

  • 任意值写法 (arbitrary values) 类样式: w-[100rpx] 编译结果: .my-[100rpx]{ width:100rpx } 是否报错: 是 是否关闭: 未关闭 测试版本库:截至3.2.5 原因: wxml属性字段不支持[],会把[]变为空格,wxss 不支持转义符\导致报错 .w-\[100px\] 替代方案: 对应主题加入1-750rpx映射值 替代类样式:w-100 编译后: .w-100 { width: 100rpx }