Skip to content

Commit 2b9009b

Browse files
committed
Upgrade Bootstrap and dev dependencies
* Upgrade Bootstrap to version 4.3.1. * Upgrade the following development dependencies: - **autoprefixer** to version 9.4.7 - **nodemon** to version 1.18.10" - **stylelint** to version 9.10.1" - **stylelint-config-twbs-bootstrap** to version 0.3.0 * Move PostCSS config file from the ``build/`` directory to the repository root. * Added new rules in the config of **stylelint** in order to blacklist some ``border-radius`` properties (use Bootstrap's mixin instead, see `Bootstrap issue #27900 <https://github.com/twbs/bootstrap/pull/27900>`_).
1 parent 62ccaca commit 2b9009b

11 files changed

+1845
-933
lines changed

.stylelintrc

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
{
22
"extends": [
33
"stylelint-config-twbs-bootstrap/scss"
4-
]
4+
],
5+
"rules": {
6+
"property-blacklist": [
7+
"border-radius",
8+
"border-top-left-radius",
9+
"border-top-right-radius",
10+
"border-bottom-right-radius",
11+
"border-bottom-left-radius",
12+
"transition"
13+
]
14+
}
515
}

CHANGELOG.rst

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,27 @@
22
Changelog
33
=========
44

5+
Version 1.1
6+
===========
7+
8+
2019-02-17
9+
10+
* Upgraded Bootstrap to version 4.3.1.
11+
* Upgraded the following development dependencies:
12+
13+
- **autoprefixer** to version 9.4.7
14+
- **nodemon** to version 1.18.10"
15+
- **stylelint** to version 9.10.1"
16+
- **stylelint-config-twbs-bootstrap** to version 0.3.0
17+
18+
* Moved PostCSS config file from the ``build/`` directory to the repository
19+
root.
20+
* Added new rules in the config of **stylelint** in order to blacklist some
21+
``border-radius`` properties (use Bootstrap's mixin instead, see
22+
`Bootstrap issue #27900 <https://github.com/twbs/bootstrap/pull/27900>`_).
23+
24+
----
25+
526
Version 1.0
627
===========
728

README.rst

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ Project template for a quick start with Bootstrap framework.
77
Status
88
======
99

10-
.. image:: https://img.shields.io/node/v/bootstrap.svg
10+
.. image:: https://img.shields.io/badge/bootstrap-4.3-blue.svg
1111
:target: https://gitlab.com/pascalpepe/bootstrap-project-template/blob/master/package.json
12-
:alt: node
12+
:alt: bootstrap versions
1313

14-
.. image:: https://img.shields.io/badge/bootstrap%20versions-4.2-563d7c.svg
14+
.. image:: https://img.shields.io/badge/node-%3E%3D6-blue.svg
1515
:target: https://gitlab.com/pascalpepe/bootstrap-project-template/blob/master/package.json
16-
:alt: bootstrap versions
16+
:alt: node
1717

18-
.. image:: https://img.shields.io/badge/license-MIT-green.svg
18+
.. image:: https://img.shields.io/badge/license-MIT-blue.svg
1919
:target: https://gitlab.com/pascalpepe/bootstrap-project-template/blob/master/LICENSE
2020
:alt: license
2121

@@ -39,12 +39,11 @@ Installation
3939
============
4040

4141
1. `Install Node.js <https://nodejs.org/en/download/package-manager/>`_.
42-
2. Fork this repository.
43-
3. Get the source code::
42+
2. Get the source code by cloning this repository or your own fork::
4443

4544
git clone https://gitlab.com/<your_username>/bootstrap-project-template.git
4645

47-
4. Install the dependencies::
46+
3. Install the dependencies::
4847

4948
npm install -D
5049

@@ -64,14 +63,11 @@ The following scripts are available:
6463
Changelog
6564
=========
6665

67-
All changes in this repository are logged in the file
68-
`CHANGELOG.rst <https://gitlab.com/pascalpepe/bootstrap-project-template/blob/master/CHANGELOG.rst>`_.
66+
All changes in this repository are logged in the file `CHANGELOG.rst <https://gitlab.com/pascalpepe/bootstrap-project-template/blob/master/CHANGELOG.rst>`_.
6967

7068
License
7169
=======
7270

73-
This project is licensed under the
74-
`MIT License <https://gitlab.com/pascalpepe/bootstrap-project-template/blob/master/LICENSE>`_.
71+
This project is licensed under the `MIT License <https://gitlab.com/pascalpepe/bootstrap-project-template/blob/master/LICENSE>`_.
7572

76-
Bootstrap is licensed under the
77-
`MIT License <https://github.com/twbs/bootstrap/blob/master/LICENSE>`_.
73+
This project is built with Bootstrap, which is licensed under the `MIT License <https://github.com/twbs/bootstrap/blob/master/LICENSE>`_.

0 commit comments

Comments
 (0)