Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/istuffs/bootstrap-reboot-importer
:mag_right: A convenaient way to import boostrap reboot css reset
https://github.com/istuffs/bootstrap-reboot-importer
eyeglass-module
Last synced: 15 days ago
JSON representation
:mag_right: A convenaient way to import boostrap reboot css reset
- Host: GitHub
- URL: https://github.com/istuffs/bootstrap-reboot-importer
- Owner: iStuffs
- License: mit
- Created: 2018-10-23T09:40:06.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-08-16T14:31:24.000Z (over 3 years ago)
- Last Synced: 2024-12-20T22:22:53.931Z (15 days ago)
- Topics: eyeglass-module
- Language: JavaScript
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Boostrap reboot import
> A modern way to import boostrap reboot
If you were searching a way to integrate boostrap reboot css reset stylesheet in your project easily in your gulp sass workflow. You're at the good place.
## Instalation
```sh
npm install --save boostrap-reboot-import
```## Make SASS aware of the boostrap reboot path
**import path in your gulp file**
```js
const gulp = require('gulp');
const sass = require('gulp-sass');
const reboot = require("boostrap-reboot-import").includePaths;gulp.task('css', function () {
return gulp.src('sass/**/*.{sass,scss}')
.pipe(sass({ includePaths: [reboot] })
.pipe(gulp.dest('./dist/css/')
);
});
```**_or_ use eyeglass**
```sh
npm install --save-dev eyeglass
``````js
const gulp = require('gulp');
const sass = require('gulp-sass');
const eyeglass = require("eyeglass");gulp.task('css', function () {
return gulp.src('sass/**/*.{sass,scss}')
.pipe(sass(eyeglass())
.pipe(gulp.dest('./dist/css/')
);
});
```more info @: https://github.com/sass-eyeglass/eyeglass
## Import anywere in your sass/scss
```scss
@import 'boostrap-reboot'
```**More info**
See https://getbootstrap.com/