Skip to content

Commit e43a64e

Browse files
authored
Merge pull request #35 from MartijnBastiaansen/fix-composer-file
Re-added composer file
2 parents 06a6e9c + 324c12c commit e43a64e

File tree

5 files changed

+38
-7
lines changed

5 files changed

+38
-7
lines changed

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)