Skip to content

Commit

Permalink
Base V5.2.0
Browse files Browse the repository at this point in the history
- 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
  • Loading branch information
matthewhartman committed May 10, 2020
1 parent 58bde63 commit 0888cfc
Show file tree
Hide file tree
Showing 8 changed files with 43 additions and 36 deletions.
7 changes: 7 additions & 0 deletions changelog.md
@@ -1,5 +1,12 @@
# Base Change Log

## [5.2.0] - 2020-05-10
### 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

## [5.1.1] - 2020-05-08
### Base V5.1.1
- Corrected documentation
Expand Down
2 changes: 1 addition & 1 deletion index.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion index.html
Expand Up @@ -6,7 +6,7 @@
<title>Base Styleguide</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="core.css">
<link rel="stylesheet" href="code.css">
<link rel="stylesheet" href="forms.css">
<link rel="stylesheet" href="tables.css">
Expand Down
28 changes: 14 additions & 14 deletions less/index.less
Expand Up @@ -6,17 +6,17 @@
========================================================================== */

@import "core";
// @import "code";
// @import "forms";
// @import "tables";
// @import "typography";
// @import "headings";
// @import "containers";
// @import "grid";
// @import "horizontal-spacers";
// @import "vertical-spacers";
// @import "spacers";
// @import "display-helpers";
// @import "flex-helpers";
// @import "position-helpers";
// @import "typography-helpers";
@import "code";
@import "forms";
@import "tables";
@import "typography";
@import "headings";
@import "containers";
@import "grid";
@import "horizontal-spacers";
@import "vertical-spacers";
@import "spacers";
@import "display-helpers";
@import "flex-helpers";
@import "position-helpers";
@import "typography-helpers";
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
@@ -1,10 +1,10 @@
{
"name": "@getbase/base",
"version": "5.1.1",
"version": "5.2.0",
"description": "A Rock Solid, Responsive CSS Framework built to work on all devices big, small and in-between.",
"homepage": "http://getbase.org/",
"author": "Matthew Hartman",
"main": "index.css",
"main": "core.css",
"scripts": {
"start": "./node_modules/gulp/bin/gulp.js",
"build:scss": "./node_modules/gulp/bin/gulp.js compileScssModulesToCss",
Expand Down
6 changes: 3 additions & 3 deletions readme.md
Expand Up @@ -59,8 +59,8 @@ Once you have Base installed, you can choose what to import and include your own
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Website / App </title>
<!-- Base -->
<link rel="stylesheet" href="https://unpkg.com/@getbase/base/index.css">
<!-- Base Core -->
<link rel="stylesheet" href="https://unpkg.com/@getbase/base/core.css">
<!-- Base Common -->
<link rel="stylesheet" href="https://unpkg.com/@getbase/base/code.css">
<link rel="stylesheet" href="https://unpkg.com/@getbase/base/forms.css">
Expand Down Expand Up @@ -92,7 +92,7 @@ Once you have Base installed, you can choose what to import and include your own

```css
/* Import Base */
@import url("https://unpkg.com/@getbase/base/index.css");
@import url("https://unpkg.com/@getbase/base/core.css");

/* Import Base Common */
@import url("https://unpkg.com/@getbase/base/code.css");
Expand Down
28 changes: 14 additions & 14 deletions scss/index.scss
Expand Up @@ -6,17 +6,17 @@
========================================================================== */

@import "core";
// @import "code";
// @import "forms";
// @import "tables";
// @import "typography";
// @import "headings";
// @import "containers";
// @import "grid";
// @import "horizontal-spacers";
// @import "vertical-spacers";
// @import "spacers";
// @import "display-helpers";
// @import "flex-helpers";
// @import "position-helpers";
// @import "typography-helpers";
@import "code";
@import "forms";
@import "tables";
@import "typography";
@import "headings";
@import "containers";
@import "grid";
@import "horizontal-spacers";
@import "vertical-spacers";
@import "spacers";
@import "display-helpers";
@import "flex-helpers";
@import "position-helpers";
@import "typography-helpers";

0 comments on commit 0888cfc

Please sign in to comment.