Skip to content

Commit 0888cfc

Browse files
Base V5.2.0
- Updated index.scss/less to include all modules for index.css (use core.css for minimal Base) - Updated readme and styleguide references - Minor version bump for package.json - Updated entrypoint from index.css to core.css within package.json
1 parent 58bde63 commit 0888cfc

8 files changed

Lines changed: 43 additions & 36 deletions

File tree

changelog.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Base Change Log
22

3+
## [5.2.0] - 2020-05-10
4+
### Base V5.2.0
5+
- Updated index.scss/less to include all modules for index.css (use core.css for minimal Base)
6+
- Updated readme and styleguide references
7+
- Minor version bump for package.json
8+
- Updated entrypoint from index.css to core.css within package.json
9+
310
## [5.1.1] - 2020-05-08
411
### Base V5.1.1
512
- Corrected documentation

index.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<title>Base Styleguide</title>
77
<meta name="description" content="">
88
<meta name="viewport" content="width=device-width, initial-scale=1.0">
9-
<link rel="stylesheet" href="index.css">
9+
<link rel="stylesheet" href="core.css">
1010
<link rel="stylesheet" href="code.css">
1111
<link rel="stylesheet" href="forms.css">
1212
<link rel="stylesheet" href="tables.css">

less/index.less

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@
66
========================================================================== */
77

88
@import "core";
9-
// @import "code";
10-
// @import "forms";
11-
// @import "tables";
12-
// @import "typography";
13-
// @import "headings";
14-
// @import "containers";
15-
// @import "grid";
16-
// @import "horizontal-spacers";
17-
// @import "vertical-spacers";
18-
// @import "spacers";
19-
// @import "display-helpers";
20-
// @import "flex-helpers";
21-
// @import "position-helpers";
22-
// @import "typography-helpers";
9+
@import "code";
10+
@import "forms";
11+
@import "tables";
12+
@import "typography";
13+
@import "headings";
14+
@import "containers";
15+
@import "grid";
16+
@import "horizontal-spacers";
17+
@import "vertical-spacers";
18+
@import "spacers";
19+
@import "display-helpers";
20+
@import "flex-helpers";
21+
@import "position-helpers";
22+
@import "typography-helpers";

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "@getbase/base",
3-
"version": "5.1.1",
3+
"version": "5.2.0",
44
"description": "A Rock Solid, Responsive CSS Framework built to work on all devices big, small and in-between.",
55
"homepage": "http://getbase.org/",
66
"author": "Matthew Hartman",
7-
"main": "index.css",
7+
"main": "core.css",
88
"scripts": {
99
"start": "./node_modules/gulp/bin/gulp.js",
1010
"build:scss": "./node_modules/gulp/bin/gulp.js compileScssModulesToCss",

readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ Once you have Base installed, you can choose what to import and include your own
5959
<meta charset="UTF-8">
6060
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6161
<title>Your Website / App </title>
62-
<!-- Base -->
63-
<link rel="stylesheet" href="https://unpkg.com/@getbase/base/index.css">
62+
<!-- Base Core -->
63+
<link rel="stylesheet" href="https://unpkg.com/@getbase/base/core.css">
6464
<!-- Base Common -->
6565
<link rel="stylesheet" href="https://unpkg.com/@getbase/base/code.css">
6666
<link rel="stylesheet" href="https://unpkg.com/@getbase/base/forms.css">
@@ -92,7 +92,7 @@ Once you have Base installed, you can choose what to import and include your own
9292

9393
```css
9494
/* Import Base */
95-
@import url("https://unpkg.com/@getbase/base/index.css");
95+
@import url("https://unpkg.com/@getbase/base/core.css");
9696

9797
/* Import Base Common */
9898
@import url("https://unpkg.com/@getbase/base/code.css");

scss/index.scss

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@
66
========================================================================== */
77

88
@import "core";
9-
// @import "code";
10-
// @import "forms";
11-
// @import "tables";
12-
// @import "typography";
13-
// @import "headings";
14-
// @import "containers";
15-
// @import "grid";
16-
// @import "horizontal-spacers";
17-
// @import "vertical-spacers";
18-
// @import "spacers";
19-
// @import "display-helpers";
20-
// @import "flex-helpers";
21-
// @import "position-helpers";
22-
// @import "typography-helpers";
9+
@import "code";
10+
@import "forms";
11+
@import "tables";
12+
@import "typography";
13+
@import "headings";
14+
@import "containers";
15+
@import "grid";
16+
@import "horizontal-spacers";
17+
@import "vertical-spacers";
18+
@import "spacers";
19+
@import "display-helpers";
20+
@import "flex-helpers";
21+
@import "position-helpers";
22+
@import "typography-helpers";

0 commit comments

Comments
 (0)