├── .gitignore ├── .npmrc ├── LICENSE ├── LICENSE.md ├── README.md ├── feature.png ├── index.css ├── index.ts ├── logo.png ├── package.json ├── patches └── tailwindcss-v4+4.1.5.patch ├── tsconfig.json └── utils.ts /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | tag-version-prefix = '' -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolwind/anchors/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolwind/anchors/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolwind/anchors/HEAD/README.md -------------------------------------------------------------------------------- /feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolwind/anchors/HEAD/feature.png -------------------------------------------------------------------------------- /index.css: -------------------------------------------------------------------------------- 1 | @import "tailwindcss"; 2 | @plugin "./dist/index.js" -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolwind/anchors/HEAD/index.ts -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolwind/anchors/HEAD/logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolwind/anchors/HEAD/package.json -------------------------------------------------------------------------------- /patches/tailwindcss-v4+4.1.5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolwind/anchors/HEAD/patches/tailwindcss-v4+4.1.5.patch -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolwind/anchors/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolwind/anchors/HEAD/utils.ts --------------------------------------------------------------------------------