Skip to content

Latest commit

 

History

History
35 lines (22 loc) · 673 Bytes

readme.md

File metadata and controls

35 lines (22 loc) · 673 Bytes

🎨 resetmycss

A tool to reset the CSS for you project using Go and Node.js.

Usage

You can run this tool using npx:

npx resetmycss

Contributing

Contributions are welcome! Please feel free to submit a PR.

To run the tool locally, you need to have Go installed on your system.

1. Build the Go binary

GOOS=linux GOARCH=amd64 go build -o resetmycss-linux main.go
GOOS=darwin GOARCH=arm64 go build -o resetmycss-macos main.go
GOOS=windows GOARCH=amd64 go build -o resetmycss-windows.exe main.go

2. Run the tool

node ./index.js

References