https://github.com/foca/sass-makedepend
Automatically track SCSS/SASS stylesheet dependency for Makefiles
https://github.com/foca/sass-makedepend
Last synced: 11 months ago
JSON representation
Automatically track SCSS/SASS stylesheet dependency for Makefiles
- Host: GitHub
- URL: https://github.com/foca/sass-makedepend
- Owner: foca
- License: mit
- Created: 2015-04-02T20:14:43.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-04-02T20:37:51.000Z (about 11 years ago)
- Last Synced: 2023-04-10T10:20:05.191Z (about 3 years ago)
- Language: Ruby
- Size: 117 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Makedepend for SASS
Simple binary that prints file dependencies for SASS/SCSS stylesheets suitable
for GNU Make.
## Usage
Include the following into your Makefile:
``` Makefile
.sass.makefile:
@sass-makedepend $(SCSS_PATH)/**/*.scss > $@
-include .sass.makefile
```
Where `$(SCSS_PATH)` is the path to where you store your SCSS/SASS stylesheets.
For example, `app/assets/stylesheets`.
See the [`example`](./example) directory for a more complete example.
## License
Licensed under the MIT license. See the attached [LICENSE](./LICENSE) file for
details.