Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

bootstrap-less

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bootstrap-less

less files for bootstrap

  • 3.3.8
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Bootstrap-less

This package contains only the less files of bootstrap. It can be used when compiling bootstrap from source using less.

This repository is about 607 kb.

Installation

npm install bootstrap-less

This package should be added to your less paths settings.

gulp.pipe(less({
    paths: [
        '.',
        './node_modules/bootstrap-less'
    ]
}))

Then bootstrap can be included in any less file.

@import "bootstrap/index";

Or individual files can be imported instead of the index.

@import "bootstrap/grid";
@import "bootstrap/affix";
@import "bootstrap/dropdowns";

Javascript

The javascript is included in the js directory.

To use it in your client install it using jspm.

jspm install bootstrap-less

Include all scripts by using the compiled version which includes all the javascript.

import "bootstrap-less";

Or include individual scripts if only some are needed.

import "bootstrap-less/js/affix";
import "bootstrap-less/js/dropdowns";

Keywords

FAQs

Package last updated on 31 May 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc