Skip to content

Commit 0f4797c

Browse files
committed
chore: Re-added composer file
2 parents 0a73de9 + e43a64e commit 0f4797c

File tree

6 files changed

+43
-8
lines changed

6 files changed

+43
-8
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,11 @@
1414
- chore: update `rollup` to `^0.68.2`
1515
- chore: update `rollup-plugin-babel` to `^4.2.0`
1616
- chore: update `stylelint-scss` to `^3.4.4`
17-
17+
###### Pull Requiests:
18+
- Re-added composer file #35
19+
- Re-added composer file so new versions can be downloaded via composer
20+
- Replaced relative paths in .scss files so files can be generated correctly
21+
1822
## v2.1.4
1923
- fix(scss): .sidebar .nav-link.disabled
2024
- chore: update `@babel/cli` to `^7.2.0`

composer.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"name": "coreui/coreui",
3+
"description": "Open Source UI Kit built on top of Bootstrap 4",
4+
"keywords": [
5+
"css",
6+
"js",
7+
"sass",
8+
"mobile-first",
9+
"responsive",
10+
"front-end",
11+
"framework",
12+
"web"
13+
],
14+
"homepage": "https://coreui.io",
15+
"authors": [
16+
{
17+
"name": "Łukasz Holeczek",
18+
"email": "[email protected]"
19+
}
20+
],
21+
"contributors": [
22+
{
23+
"name": "Andrzej Kopański",
24+
"email": "[email protected]"
25+
}
26+
],
27+
"support": {
28+
"issues": "https://github.com/coreui/coreui/issues"
29+
},
30+
"license": "MIT"
31+
}

scss/_variables.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
@import "variables/bootstrap/variables";
66

77
// Import Bootstrap variables after customization for use below
8-
@import "node_modules/bootstrap/scss/functions"; // from bootstrap node_modules
9-
@import "node_modules/bootstrap/scss/variables"; // from bootstrap node_modules
8+
@import "bootstrap/functions"; // from bootstrap node_modules
9+
@import "bootstrap/variables"; // from bootstrap node_modules
1010

1111
// CoreUI Variables
1212

scss/bootstrap.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
// Override Boostrap variables
22
@import "variables";
33
// Import Bootstrap source files
4-
@import "node_modules/bootstrap/scss/bootstrap";
4+
@import "bootstrap/bootstrap";

scss/coreui-standalone.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
@import "variables";
1111

1212
// Import Bootstrap source files
13-
@import "node_modules/bootstrap/scss/functions";
14-
@import "node_modules/bootstrap/scss/variables";
15-
@import "node_modules/bootstrap/scss/mixins";
13+
@import "bootstrap/functions";
14+
@import "bootstrap/variables";
15+
@import "bootstrap/mixins";
1616

1717
// Import core styles
1818
@import "mixins";

scss/coreui.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
@import "variables";
1111

1212
// Import Bootstrap source files
13-
@import "node_modules/bootstrap/scss/bootstrap"; // from bootstrap node_modules
13+
@import "bootstrap/bootstrap"; // from bootstrap node_modules
1414

1515
// Mixins
1616
@import "mixins";

0 commit comments

Comments
 (0)