Skip to content

Commit 9d21e8b

Browse files
committed
Update version and readme
1 parent 35c3355 commit 9d21e8b

File tree

3 files changed

+18
-16
lines changed

3 files changed

+18
-16
lines changed

README.md

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,22 @@
55

66
### Zero Config. Flat Learning Curve
77

8-
Hgrid is not a UI framework, but a starting point intended to make HTML work out of the box. It provides some sensible defaults so you can start prototyping without having to deal with browser quirks, unstyled elements and basic responsivity.
8+
**Hgrid** is a starting point intended to make HTML work out of the box. It's not a UI framework, but provides some sensible defaults so you can start prototyping without having to deal with browser quirks, unstyled elements and basic responsivity.
99

1010
## Documentation
1111

1212
Website: [https://hgrid.io](https://hgrid.io)
1313

14-
⚠️ _Documentation may be incomplete._
15-
1614
## Versions
1715

18-
Latest: **0.5.3-beta**
16+
Latest: **0.5.4-beta**
1917

2018
See [releases](https://github.com/ahansson/hgrid-css/releases) on GitHub.
2119
<br><br>
2220

2321
## How to install
2422

25-
**As a packet:**
23+
### **As a node module:**
2624

2725
```bash
2826
npm install hgrid-css --save-dev
@@ -32,7 +30,7 @@ npm install hgrid-css --save-dev
3230
yarn add hgrid-css --dev
3331
```
3432

35-
**From local file or CDN:**
33+
### **From local file or CDN:**
3634

3735
```html
3836
<head>
@@ -42,7 +40,7 @@ yarn add hgrid-css --dev
4240
<!-- more css below -->
4341
</head>
4442
```
45-
**@import into your stylesheet:**
43+
### **@import into your stylesheet:**
4644
```css
4745
/* From node_modules */
4846
@import './../etc./node_modules/hgrid-css/dist/hgrid.min.css';
@@ -52,7 +50,7 @@ yarn add hgrid-css --dev
5250
@import 'https://unpkg.com/hgrid-css@latest/dist/hgrid.min.css';
5351
```
5452

55-
**@use with Sass**
53+
### **@use as Sass in a Node.js driven project:**
5654

5755
```scss
5856
@use 'hgrid-css/sass/hgrid' with (
@@ -65,20 +63,24 @@ yarn add hgrid-css --dev
6563
$link-underline-color: #ffe88d
6664
);
6765
```
68-
For detailed information on how to integrate **hgrid** in your Node driven frontend framework, please refer to [the documentation](https://hgrid.io/documentation/integrate/).
66+
For detailed information with step by step recipes on how to integrate **hgrid** in your projects, please refer to [the documentation](https://hgrid.io/documentation/integrate/).
6967

7068
## Local development
7169

72-
_Requires nodejs with npm installed on your system._
70+
_Requires Node.js installed on your system._
7371

7472
Run `npm install`.
7573

76-
Start compiling `.scss` files to `.css` with the terminal command `npm run watch` from the root of the hgrid folder. Any changes you make to files in the `/sass` folder will result in css and map files being updated in the `/dist` folder.
74+
Start compiling **hgrid's** `.scss` files to `.css` with the command `npm run watch` from the root of the **hgrid** folder. Any changes you make to files in the `/sass` folder will result in css and map files being updated in the `/dist` folder.
7775

78-
To produce the minified **hgrid** file, use `npm run build`. It uses Autoprefixer to add some backwards compatibility before minifying the result as `hgrid.min.css`.
76+
To produce the compiled, prefixed and minified **hgrid** output, use `npm run build`. It uses Autoprefixer to add some backwards compatibility before minifying the result as `hgrid.min.css`.
7977

80-
As always, see [hgrid.io](https://hgrid.io) for details on how to integrate **hgrid** as Sass or plain CSS in your projects.
78+
See [hgrid.io/documentation/](https://hgrid.io/documentation/) for complete usage instructions.
8179

8280
## Author
8381

84-
Atle Hansson @ https://kubo.no
82+
Atle Hansson @ https://kubo.no
83+
84+
## License
85+
86+
MIT

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hgrid-css",
3-
"version": "0.5.3-beta",
3+
"version": "0.5.4-beta",
44
"description": "A Lightweight and Practical CSS Utility Kit.",
55
"main": "sass/hgrid.scss",
66
"style": "dist/hgrid.min.css",

sass/base/_version.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
/*! hgrid v0.5.3-beta | MIT License | github.com/ahansson/hgrid-css !*/
1+
/*! hgrid v0.5.4-beta | MIT License | github.com/ahansson/hgrid-css !*/

0 commit comments

Comments
 (0)