Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .bowerrc

This file was deleted.

2 changes: 2 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
app/
docs/
337 changes: 0 additions & 337 deletions Gruntfile.js

This file was deleted.

32 changes: 21 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,24 +39,34 @@ We provide compiled CSS (`metro-bootstrap.css`) in the dist folder, as well as c

## Installing Dependencies

We manage dependencies using Bower.
Run `bower install` to download the required dependencies.
We manage dependencies using npm.

If don't have Grunt installed, execute the following steps from the command line:
1. Make sure you have Node.js installed.
2. Go to the `metro-bootstrap` directory, then run:

1. Make sure you have node.js installed.
2. Install bower with `npm install -g bower`.
```bash
npm install
```

This will install the necessary dependencies as specified in the `package.json` file.

## Compiling CSS

We compile metro-bootstrap using [Grunt](http://gruntjs.com/).
Run `grunt build` to compile the CSS into `/dist`.
We compile `metro-bootstrap` using Gulp. To do so, follow these steps:

1. If you don't have Gulp installed globally, you can install it by running:

```bash
npm install -g gulp-cli
```

2. To compile the CSS into the `dist` folder, run:

If don't have Grunt installed, execute the following steps from the command line:
```bash
gulp
```

1. Make sure you have node.js installed.
2. Install `grunt-cli` globally with `npm install -g grunt-cli`.
3. Go to the `metro-bootstrap` directory, then run `npm install`. npm will look at package.json and automatically install the necessary dependencies.
This command will clean the `dist` directory, compile the LESS files, and copy the fonts.

## License

Expand Down
1 change: 1 addition & 0 deletions app/less/alerts.less
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
@import "variables.less";
//
// Alerts
// --------------------------------------------------
Expand Down
Loading