| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2017-09-29 | Remove grunt-saucelabs and Grunt. | XhmikosR | 1 | -29/+0 | |
| 2017-09-28 | Lint docs js too and use `strict consistently. (#24160) | XhmikosR | 1 | -2/+2 | |
| 2017-06-14 | Use localhost because Win Edge block loopback access | Johann-S | 1 | -1/+1 | |
| 2017-04-20 | Build system overhaul. | Bardi Harborow | 1 | -294/+2 | |
| 2017-03-21 | More config tweaks. | Bardi Harborow | 1 | -10/+1 | |
| 2017-02-25 | Move Jekyll to npm script. | Bardi Harborow | 1 | -16/+8 | |
| 2017-01-23 | Move htmllint to npm script. | Bardi Harborow | 1 | -21/+4 | |
| 2017-01-04 | Move node-sass to npm script and drop Ruby Sass. | Bardi Harborow | 1 | -10/+9 | |
| 2017-01-01 | Update copyright years to 2017 | Nuno Arruda | 1 | -2/+2 | |
| 2016-12-31 | Change remaining JS files to comply with ESLint config. | Bardi Harborow | 1 | -42/+41 | |
| 2016-12-24 | Move uglifyjs to npm script. | Bardi Harborow | 1 | -20/+8 | |
| 2016-12-23 | Move clean-css to npm scripts. | Bardi Harborow | 1 | -32/+8 | |
| 2016-12-23 | Move scss-lint to npm scripts. | Bardi Harborow | 1 | -16/+8 | |
| 2016-12-22 | Remove IE9 browser hacks. (#21393) | Bardi Harborow | 1 | -1/+0 | |
| 2016-12-21 | Flexbox all the time (Drop IE9 support and remove $enable-flex option) (#21389) | Mark Otto | 1 | -1/+1 | |
| * remove the $enable-flex variable option * remove bootstrap-flex.css dist file and it's grunt task * remove the separate flex css file for docs; it's all the same now * remove flexbox docs (porting some to the main grid docs in next commit) * clean up few grid docs bits to simplify copy, start to mention flexbox * port relevant flexbox-grid.md content to grid.md - clean up mixins - update how it works section - bring over sizing and alignment sections * remove the $enable-flex from the options.md page * update lead paragraph to mention flexbox * update migration to mention loss of ie9 support * remove mention of flexbox dist file * clarify IE support * making a note * remove flexbox variant mentions from component docs - updates docs for media object, navs, list group, and cards to consolidate docs - no more need to callout flexbox variants since it's now the default * remove $enable-flex if/else from sass files * remove flex dist files * update scss lint property order to account for flex properties * linting * change to numberless classes for autosizing, wrap in highlighting div * bump gruntfile and postcss to ie10 * redo intro sections * rearrange * phew, redo hella grid docs - rearrange all the things - consolidate some bits * remove reference to flexbox mode * more border action for demo * Make some changes to the .card's in .card-deck's to ensure footers align to the bottom | |||||
| 2016-12-04 | Travis build infrastructure refresh. (#21108) | Bardi Harborow | 1 | -4/+1 | |
| 2016-11-26 | Tweak jQuery-not-found error message to mention required ordering (#19024) | Stephanie Purvis | 1 | -1/+1 | |
| 2016-10-09 | Update dependencies, including Babel to v6 and zeroUnits fix. | Bardi Harborow | 1 | -11/+6 | |
| 2016-10-03 | Fix broken/redirected links, moving to HTTPS where possible. (#20557) | Bardi Harborow | 1 | -1/+1 | |
| 2016-10-02 | Comment that out for now since it's causing errors | Mark Otto | 1 | -1/+1 | |
| 2016-10-02 | Ports changes from #20258 to v4 (#20828) | Mark Otto | 1 | -0/+1 | |
| 2016-09-11 | Update gruntfile to compile the Sass extras (flex, grid, and reboot) as part ↵ | Mark Otto | 1 | -1/+1 | |
| of the dist-css task (#20682) | |||||
| 2016-07-26 | Enable flexbox grid CSS on our docs page | Mark Otto | 1 | -2/+9 | |
| - Creates new flexbox grid Sass file in our docs assets - Updates the Gruntfile to compile said new Sass file and minify the output - Update notice on flexbox docs page for how it works - Only enable compiled flexbox grid CSS in hosted docs site, not in dev (for easier and specific debugging of all flexbox features) | |||||
| 2016-07-14 | Add HTMLHint to the build; fixes #20297 (#20301) | Chris Rebert | 1 | -1/+4 | |
| [skip sauce] | |||||
| 2016-06-29 | Update devDependencies. | XhmikosR | 1 | -4/+4 | |
| Only grunt-saucelabs is left in order to update grunt to v1.x. | |||||
| 2016-06-28 | Support jQuery v3 in Bootstrap v4 (#20191) | Chris Rebert | 1 | -2/+2 | |
| * bower.json, package.json: Extend jQuery version ranges to include v3 * NuGet: Bump jQuery to v3.0.0.1 * Docs+Examples: Update jQuery to v3.0.0 * Use jQuery v3.0.0 for JS unit tests * Update jqueryVersionCheck to allow jQuery v3.x.x | |||||
| 2016-06-27 | Allow PRs to be previewed at http://preview.twbsapps.com (#20179) | Chris Rebert | 1 | -6/+10 | |
| 2016-06-26 | Fix docs asset file paths in /grunt/configBridge.json (#20178) | Chris Rebert | 1 | -1/+1 | |
| Previously, when running the docs locally, the site, rooted at: http://localhost:9001/ would reference docs assets using relative URLs such as: /../assets/js/vendor/anchor.min.js which is equivalent to: http://localhost:9001/../assets/js/vendor/anchor.min.js which is nonsense, since the root directory has no parent directory. Apparently browsers silently ignore this extra '..', hence why this wasn't noticed until now. But if you adjust Jekyll's `baseurl` setting, this mistake causes incorrect URLs to get generated. This commit corrects the problem by removing the extra '../' from the paths. These paths are also referenced in the Gruntfile, where the fix actually allows us to simplify the code. Previously, in the Gruntfile, we were doing, e.g.: path.join('./docs/assets', '../assets/js/vendor/anchor.min.js') which calculates to: ./docs/assets/../assets/js/vendor/anchor.min.js which can be simplified to: ./docs/assets/js/vendor/anchor.min.js So we can remove the '/assets' suffix from the left argument and the '../' prefix from the right argument and still obtain the same result. | |||||
| 2016-06-20 | Replace grunt-postcss with postcss-cli (#20140) | Chris Rebert | 1 | -38/+8 | |
| Refs #19990 Continues the degruntification process. Also removes mq4-hover-shim for now, since it doesn't yet implement the standard PostCSS plugin interface. | |||||
| 2016-06-10 | Strip out UMD & CJS in favor of ES6 modules (#20072) | Chris Rebert | 1 | -30/+1 | |
| 2016-06-04 | Remove unused exec:npmUpdate Grunt task (#20074) | Chris Rebert | 1 | -3/+0 | |
| [skip sauce] [skip validator] | |||||
| 2016-06-04 | Kill the grunt-jscs middleman; use JSCS directly instead (#20069) | Chris Rebert | 1 | -26/+3 | |
| Refs #19990 [skip sauce] [skip validator] | |||||
| 2016-06-04 | Integrate postcss-flexbugs-fixes into build; fixes #18569 | Chris Rebert | 1 | -0/+1 | |
| 2016-05-30 | Killed the grunt-eslint middleman; Long live ESLint. | Chris Rebert | 1 | -8/+1 | |
| Refs #19908 [skip sauce] [skip validator] | |||||
| 2016-05-20 | Add "The Bootstrap Authors" to copyright notices (#19936) | Chris Rebert | 1 | -0/+1 | |
| ❤️❤️❤️ https://github.com/twbs/bootstrap/graphs/contributors | |||||
| 2016-04-02 | Nuke grunt-line-remover. | XhmikosR | 1 | -12/+5 | |
| Use concat's process function instead. | |||||
| 2016-03-23 | Use vanilla npm shrinkwrap instead of uber/npm-shrinkwrap; fixes #18559 | Chris Rebert | 1 | -17/+0 | |
| 2016-03-15 | Remove the now unused glob. | XhmikosR | 1 | -1/+0 | |
| 2016-02-19 | Update grunt-html to v6.0.0. | XhmikosR | 1 | -2/+1 | |
| Also remove the workaround for the old validator version. [skip sauce] | |||||
| 2016-02-10 | Remove unused .csscomb.json | vsn4ik | 1 | -1/+1 | |
| 2016-02-06 | Remove csscomb (soon replace it with something else) because scsslint has ↵ | Mark Otto | 1 | -24/+2 | |
| most of it covered already | |||||
| 2016-01-10 | HTML validation: Ignore spurious errors about script[integrity] | Chris Rebert | 1 | -1/+3 | |
| Workaround for https://github.com/jzaefferer/grunt-html/issues/86 | |||||
| 2016-01-06 | Add comprehensive `.form-control` example(/testcase) to docs | Chris Rebert | 1 | -1/+6 | |
| Put all the textual input types right next to each other for easy visual comparison. Refs #17308, #18763 [skip sauce] | |||||
| 2016-01-06 | Ignore HTML validator warning about <input type="datetime-local"> | Chris Rebert | 1 | -1/+1 | |
| Erratum from #18778 [skip sauce] | |||||
| 2016-01-04 | Grunt: Extract lint-docs-css task | Chris Rebert | 1 | -2/+3 | |
| [skip sauce] | |||||
| 2016-01-03 | dont scsslint the main file because of the built-in copyright banner | Mark Otto | 1 | -1/+1 | |
| 2016-01-03 | enable scsslinting for docs scss | Mark Otto | 1 | -3/+8 | |
| 2016-01-01 | Update copyright years to 2016 | Chris Rebert | 1 | -1/+1 | |
| [ci skip] | |||||
| 2015-12-24 | Un-nest Autoprefixer settings in module object | Chris Rebert | 1 | -1/+1 | |
| [skip sauce] [skip validator] | |||||
| 2015-12-24 | Move Autoprefixer settings out of Gruntfile.js and into a separate file | Bass Jobsen | 1 | -31/+2 | |
| Refs #18584 Closes #18659 [skip sauce] [skip validator] | |||||
