Skip to content

Commit 27e9a2e

Browse files
committed
feat(package): initial commit
0 parents  commit 27e9a2e

25 files changed

+385
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.DS_Store
2+
node_modules
3+
package-lock.json

.sass-lint.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
files:
2+
include:
3+
- 'scss/**/*.scss'
4+
syntax:
5+
include:
6+
- scss
7+
- sass
8+
options:
9+
formatter: stylish
10+
merge-default-rules: true
11+
rules:
12+
property-sort-order:
13+
- 1
14+
- order: smacss
15+
placeholder-in-extend: 0
16+
no-important: 0
17+
no-vendor-prefixes: 0

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# bootstrap-scss-plugins
2+
3+
A suite of SCSS plugins used for developing Bootstrap 4 themes and sites.
4+
5+
This package aims to add a few useful tools to help speed up development of themes in Bootstrap 4 by adding some quick classes and mixins.
6+
7+
**Can't you do this yourself by editing some variables?**
8+
9+
Of course you can! This package exists purely to make it faster to replicate some commonly used customizations.

package.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"name": "bootstrap-scss-plugins",
3+
"version": "0.1.0",
4+
"description": "A suite of SCSS plugins used for developing Bootstrap 4 themes and sites.",
5+
"scripts": {
6+
"lint": "sass-lint -v -c .sass-lint.yml"
7+
},
8+
"repository": {
9+
"type": "git",
10+
"url": "git+https://github.com/NickDJM/bootstrap-scss-plugins.git"
11+
},
12+
"keywords": [
13+
"bootstrap",
14+
"scss",
15+
"sass"
16+
],
17+
"author": "Nick Milton",
18+
"license": "ISC",
19+
"bugs": {
20+
"url": "https://github.com/NickDJM/bootstrap-scss-plugins/issues"
21+
},
22+
"homepage": "https://github.com/NickDJM/bootstrap-scss-plugins#readme",
23+
"dependencies": {
24+
"bootstrap": "^4.2.1"
25+
},
26+
"devDependencies": {
27+
"sass-lint": "^1.12.1"
28+
}
29+
}

scss/border-widths.scss

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
// ----------
2+
// border-width class plugin.
3+
// ----------
4+
5+
@import './mixins/border-widths';
6+
@import './utilities/border-widths';

scss/button-rounded.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
// ----------
2+
// btn-rounded class plugin.
3+
// ----------
4+
5+
@import './utilities/button-rounded';

scss/button-squared.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
// ----------
2+
// btn-squared class plugin.
3+
// ----------
4+
5+
@import './utilities/button-squared';

scss/column-count.scss

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
// ----------
2+
// column-count class plugin.
3+
// ----------
4+
5+
@import './mixins/column-count';
6+
@import './utilities/column-count';

scss/font-sizes.scss

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
// ----------
2+
// font-size class plugin.
3+
// ----------
4+
5+
@import './mixins/font-sizes';
6+
@import './utilities/font-sizes';

scss/media-ie.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
// ----------
2+
// media-ie mixin plugin.
3+
// ----------
4+
5+
@import './mixins/media-ie';

0 commit comments

Comments
 (0)