You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bootstrap provides simple and flexible HTML, CSS, and Javascript for popular user interface components and interactions. In other words, it's a front-end toolkit for faster, more beautiful web development. It's created and maintained by [Mark Otto](http://twitter.com/mdo) and [Jacob Thornton](http://twitter.com/fat) at Twitter.
@@ -25,9 +25,9 @@ Releases will be numbered with the follow format:
25
25
26
26
And constructed with the following guidelines:
27
27
28
-
* Breaking backward compatibility bumps the major
29
-
* New additions without breaking backward compatibility bumps the minor
30
-
* Bug fixes and misc changes bump the patch
28
+
* Breaking backward compatibility bumps the major (and resets the minor and patch)
29
+
* New additions without breaking backward compatibility bumps the minor (and resets the patch)
30
+
* Bug fixes and misc changes bumps the patch
31
31
32
32
For more information on SemVer, please visit http://semver.org/.
33
33
@@ -81,8 +81,18 @@ Developers
81
81
82
82
We have included a makefile with convenience methods for working with the Bootstrap library.
83
83
84
+
+**dependencies**
85
+
Our makefile depends on you having recess, uglify.js, and jshint installed. To install, just run the following command in npm:
86
+
87
+
```
88
+
$ npm install recess uglify-js jshint -g
89
+
```
90
+
84
91
+**build** - `make`
85
-
Runs the LESS compiler to rebuild the `/less` files and compiles the docs pages. Requires lessc and uglify-js. <ahref="http://twitter.github.com/bootstrap/less.html#compiling">Read more in our docs »</a>
92
+
Runs the recess compiler to rebuild the `/less` files and compiles the docs pages. Requires recess and uglify-js. <ahref="http://twitter.github.com/bootstrap/less.html#compiling">Read more in our docs »</a>
93
+
94
+
+**test** - `make test`
95
+
Runs jshint and qunit tests headlessly in phantom js (used for ci). Depends on having phatomjs installed.
86
96
87
97
+**watch** - `make watch`
88
98
This is a convenience method for watching just Less files and automatically building them whenever you save. Requires the Watchr gem.
0 commit comments