Library to rectify mistakes in the design of CSS. npmx.dev/package/@declanchidlow/fixcss
webdev front-end css fixcss
8

Configure Feed

Select the types of activity you want to include in your feed.

Fix npm packaging

Declan Chidlow (Jul 1, 2026, 11:36 AM +0800) 5aba11d6 3b5e54da

+6 -4
+2 -2
README.md
··· 29 29 node fixcss-cli.js styles.css -o styles.fixed.css 30 30 31 31 # Or programmatically: 32 - npm install fixcss 32 + npm install @declanchidlow/fixcss 33 33 ``` 34 34 35 35 ```js 36 - const { fixCSS } = require("fixcss"); 36 + const { fixCSS } = require("@declanchidlow/fixcss"); 37 37 const fs = require("fs"); 38 38 39 39 const input = fs.readFileSync("styles.css", "utf8");
+4 -2
package.json
··· 1 1 { 2 - "name": "fixcss", 2 + "name": "@declanchidlow/fixcss", 3 3 "version": "1.0.0", 4 4 "description": "Library to rectify mistakes in the design of CSS.", 5 5 "keywords": [ ··· 20 20 "fixcss-cli.js" 21 21 ], 22 22 "main": "fixcss.js", 23 - "bin": "./fixcss-cli.js", 23 + "bin": { 24 + "fixcss": "fixcss-cli.js" 25 + }, 24 26 "repository": { 25 27 "type": "git", 26 28 "url": "git+https://tangled.org/vale.rocks/FixCSS.git"