blob: ab81db5114995350d208ba1d12c13ecb85a0399d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
local Pkg = require "mason-core.package"
local npm = require "mason-core.managers.npm"
return Pkg.new {
name = "rustywind",
desc = [[CLI for organizing Tailwind CSS classes]],
homepage = "https://github.com/avencera/rustywind",
languages = {
Pkg.Lang.JavaScript,
Pkg.Lang.TypeScript,
Pkg.Lang.JSX,
Pkg.Lang.HTML,
Pkg.Lang.Vue,
Pkg.Lang.Angular,
},
categories = { Pkg.Cat.Formatter },
install = npm.packages { "rustywind", bin = { "rustywind" } },
}
|