Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bahmutov/rebuild-node-sass
Rebuilds node-sass but only if needed
https://github.com/bahmutov/rebuild-node-sass
node-sass npm rebuild sass
Last synced: 22 days ago
JSON representation
Rebuilds node-sass but only if needed
- Host: GitHub
- URL: https://github.com/bahmutov/rebuild-node-sass
- Owner: bahmutov
- Created: 2017-06-26T19:14:41.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-09-21T20:34:58.000Z (about 7 years ago)
- Last Synced: 2024-10-09T14:45:41.171Z (29 days ago)
- Topics: node-sass, npm, rebuild, sass
- Language: JavaScript
- Size: 2.93 KB
- Stars: 21
- Watchers: 3
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# rebuild-node-sass
> Rebuilds node-sass but only if needed
[![NPM][npm-icon] ][npm-url]
[![Build status][ci-image] ][ci-url]
[![semantic-release][semantic-image] ][semantic-url]## Use
```sh
npm install --save-dev rebuild-node-sass node-sass
```Then before build (when `node-sass` is probably used), call `rebuild-node-sass`
to make sure it is ready```json
{
"scripts": {
"prebuild": "rebuild-node-sass",
"build": "..."
}
}
```## Testing
To execute in a different environment, for example when working on Mac, we
can install Mac Sass binary `npm install` and then switch to Docker```sh
docker run -v $PWD:/src -w /src -it node /bin/bash
```which produces the following output (abridged)
```sh
root@0d0cd593e320:/src# ./rebuild.sh
npm info it worked if it ends with ok
npm info using [email protected]
npm info using [email protected]
npm info ok
/src/node_modules/node-sass/lib/binding.js:15
throw new Error(errors.missingBinary());
...
Binary found at /src/node_modules/node-sass/vendor/linux-x64-57/binding.node
Testing binary
Binary is fine
[email protected] /src/node_modules/node-sass
```[npm-icon]: https://nodei.co/npm/rebuild-node-sass.svg?downloads=true
[npm-url]: https://npmjs.org/package/rebuild-node-sass
[ci-image]: https://travis-ci.org/bahmutov/rebuild-node-sass.svg?branch=master
[ci-url]: https://travis-ci.org/bahmutov/rebuild-node-sass
[semantic-image]: https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg
[semantic-url]: https://github.com/semantic-release/semantic-release