Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-07-27Enable flexbox grid CSS on our docs pageMark Otto
- 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-15Add HTMLHint to the build; fixes #20297 (#20301)Chris Rebert
[skip sauce]
2016-06-29Update devDependencies.XhmikosR
Only grunt-saucelabs is left in order to update grunt to v1.x.
2016-06-29Support jQuery v3 in Bootstrap v4 (#20191)Chris Rebert
* 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-28Allow PRs to be previewed at http://preview.twbsapps.com (#20179)Chris Rebert
2016-06-27Fix docs asset file paths in /grunt/configBridge.json (#20178)Chris Rebert
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-21Replace grunt-postcss with postcss-cli (#20140)Chris Rebert
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-10Strip out UMD & CJS in favor of ES6 modules (#20072)Chris Rebert
2016-06-05Remove unused exec:npmUpdate Grunt task (#20074)Chris Rebert
[skip sauce] [skip validator]
2016-06-05Kill the grunt-jscs middleman; use JSCS directly instead (#20069)Chris Rebert
Refs #19990 [skip sauce] [skip validator]
2016-06-04Integrate postcss-flexbugs-fixes into build; fixes #18569Chris Rebert
2016-05-31Killed the grunt-eslint middleman; Long live ESLint.Chris Rebert
Refs #19908 [skip sauce] [skip validator]
2016-05-20Add "The Bootstrap Authors" to copyright notices (#19936)Chris Rebert
❤️❤️❤️ https://github.com/twbs/bootstrap/graphs/contributors
2016-04-02Nuke grunt-line-remover.XhmikosR
Use concat's process function instead.
2016-03-24Use vanilla npm shrinkwrap instead of uber/npm-shrinkwrap; fixes #18559Chris Rebert
2016-03-15Remove the now unused glob.XhmikosR
2016-02-19Update grunt-html to v6.0.0.XhmikosR
Also remove the workaround for the old validator version. [skip sauce]
2016-02-10Remove unused .csscomb.jsonvsn4ik
2016-02-07Remove csscomb (soon replace it with something else) because scsslint has ↵Mark Otto
most of it covered already
2016-01-11HTML validation: Ignore spurious errors about script[integrity]Chris Rebert
Workaround for https://github.com/jzaefferer/grunt-html/issues/86
2016-01-07Add comprehensive `.form-control` example(/testcase) to docsChris Rebert
Put all the textual input types right next to each other for easy visual comparison. Refs #17308, #18763 [skip sauce]
2016-01-07Ignore HTML validator warning about <input type="datetime-local">Chris Rebert
Erratum from #18778 [skip sauce]
2016-01-04Grunt: Extract lint-docs-css taskChris Rebert
[skip sauce]
2016-01-04dont scsslint the main file because of the built-in copyright bannerMark Otto
2016-01-04enable scsslinting for docs scssMark Otto
2016-01-01Update copyright years to 2016Chris Rebert
[ci skip]
2015-12-25Un-nest Autoprefixer settings in module objectChris Rebert
[skip sauce] [skip validator]
2015-12-25Move Autoprefixer settings out of Gruntfile.js and into a separate fileBass Jobsen
Refs #18584 Closes #18659 [skip sauce] [skip validator]
2015-12-09v4's Gruntfile doesn't currently use htmlminChris Rebert
[ci skip]
2015-12-08fixes #18281Mark Otto
2015-12-06Grunt: Factor out new docs-github taskChris Rebert
Ports #18445 to v4. [skip sauce] [skip validator]
2015-12-05Merge pull request #18402 from twbs/fix-18338Chris Rebert
s/grunt-sed/npm script/
2015-12-05Bump Safari to v8 in Autoprefixer settingsChris Rebert
The latest OS X Safari version is 9.0.1 Our prefixing policy dictates that we prefix 1 version back from the latest version. 9.0.1 - 1_major_version = 8.0 [skip validator]
2015-12-05s/grunt-sed/npm script/ ; fixes #18338Chris Rebert
[skip sauce] [skip validator]
2015-12-05Merge pull request #18379 from twbs/prefix-ios-8XhmikosR
Bump iOS to v8 in Autoprefixer settings
2015-12-03Add back grunt-contrib-compress.XhmikosR
Should automate the release process. [ci skip]
2015-11-30Bump iOS to v8 in Autoprefixer settingsChris Rebert
The latest iOS version is 9.1 Our prefixing policy dictates that we prefix 1 version back from the latest version. 9.1 - 1_major_version = 8.0 [skip validator]
2015-11-24Gruntfile: Add comments explaining CSS prefixing policyChris Rebert
[skip sauce]
2015-11-19Check HTML validity of JS visual tests tooChris Rebert
[skip sauce]
2015-11-16Update devDependencies.XhmikosR
Adapt uglify for the new version.
2015-11-16Check for jQuery >= 3.Chris Rebert
Reword jQuery version mismatch error message since jQuery v3 isn't supported.
2015-11-16Revert "Make jQuery 2.0 the minimum supported version."XhmikosR
This partially reverts commit 9eded912a05082a89ef30b899bbe659cb9ce254c.
2015-11-13Replace grunt-autoprefixer with grunt-postcss + autoprefixerBass Jobsen
Closes #18068
2015-10-30Add MS Edge to Autoprefixer configChris Rebert
[skip sauce] [skip validator]
2015-10-29Update to Jekyll v3.0.0.XhmikosR
[skip sauce]
2015-10-24Make jQuery 2.0 the minimum supported version.XhmikosR
2015-09-30add dash to .scsslint.ymlnextgenthemes
2015-09-26Only run htmllint on TravisChris Rebert
So as to avoid any dependence on Java for normal users of the Gruntfile. [skip sauce]
2015-09-24Move {test-infra=>grunt}/npm-shrinkwrap.jsonChris Rebert
2015-09-06Remove `gem install scss_lint` from Travis.XhmikosR
Instead, use `bundleExec: true` for grunt-scss-lint.