Skip to content

Commit

Permalink
update to version 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
isradeleon committed Dec 10, 2019
1 parent 2d8e238 commit 09b6b48
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ You can use the CDN for a quick start:

```html
<!-- import the styles from cdn -->
<link rel="stylesheet" href="https://cdn.statically.io/gh/isradeleon/coraline/0.6.0/coraline-v0.6.0/coraline.min.css">
<link rel="stylesheet" href="https://cdn.statically.io/gh/isradeleon/coraline/0.6.1/coraline-v0.6.1/coraline.min.css">
```

## Easy to install

You can install the framework from npm or [download the current version here](https://github.com/isradeleon/coraline/releases/download/0.6.0/coralinecss.zip). Then just import the minified CSS file into your project.
You can install the framework from npm or [download the current version here](https://github.com/isradeleon/coraline/releases/download/0.6.1/coralinecss.zip). Then just import the minified CSS file into your project.

### NPM

Expand All @@ -33,7 +33,7 @@ npm install coralinecss

```html
<!-- import the styles -->
<link rel="stylesheet" href="coraline-v0.6.0/coraline.min.css">
<link rel="stylesheet" href="coraline-v0.6.1/coraline.min.css">
```

## Components
Expand Down
2 changes: 1 addition & 1 deletion base.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Coraline v0.6.0
Coraline v0.6.1
*/
/* @import url('https://fonts.googleapis.com/css?family=Montserrat'); */
body {
Expand Down
2 changes: 1 addition & 1 deletion base.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Coraline v0.6.0
Coraline v0.6.1
*/

@function contrast-color($n) {
Expand Down
6 changes: 3 additions & 3 deletions builder.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ var frameworkBinary = '../coralinecss';
if (!fs.existsSync(frameworkBinary)){
fs.mkdirSync(frameworkBinary);
}
var frameworkSources = frameworkBinary+'/coraline-v0.6.0';
var frameworkSources = frameworkBinary+'/coraline-v0.6.1';
if (!fs.existsSync(frameworkSources)){
fs.mkdirSync(frameworkSources);
}
Expand All @@ -26,7 +26,7 @@ var docsPath = '../coraline-docs';
if (!fs.existsSync(docsPath)){
fs.mkdirSync(docsPath);
}
var docsSourcesPath = docsPath+'/coraline-v0.6.0';
var docsSourcesPath = docsPath+'/coraline-v0.6.1';
if (!fs.existsSync(docsSourcesPath)){
fs.mkdirSync(docsSourcesPath);
}
Expand Down Expand Up @@ -137,7 +137,7 @@ postcss([ autoprefixer ]).process(baseCss,{from: undefined}).then(result => {
})

var minifiedCss = csso.minify(result.css).css;
fs.writeFileSync('coraline-v0.6.0/coraline.min.css', minifiedCss);
fs.writeFileSync('coraline-v0.6.1/coraline.min.css', minifiedCss);
fs.writeFileSync(docsSourcesPath+'/coraline.min.css', minifiedCss);
fs.writeFileSync(frameworkSources+'/coraline.min.css', minifiedCss);

Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "coralinecss",
"version": "0.6.0",
"version": "0.6.1",
"description": "Alternative CSS only framework based on Flexbox",
"main": "base.scss",
"scripts": {
Expand Down Expand Up @@ -33,7 +33,7 @@
"postcss": "^7.0.17"
},
"files": [
"coraline-v0.6.0",
"coraline-v0.6.1",
"base.scss",
"base.css",
"LICENSE",
Expand Down

0 comments on commit 09b6b48

Please sign in to comment.