From 4651638cec37129c537bccfe95f40333a29e24ef Mon Sep 17 00:00:00 2001 From: isradeleon Date: Wed, 31 Jul 2019 22:56:12 -0500 Subject: [PATCH] version 0.4.5 --- README.md | 4 ++-- base.css | 2 +- main.js | 6 +++--- package-lock.json | 2 +- package.json | 4 ++-- .../socialiteui.min.css | 0 .../socialiteui.min.js | 0 website/components/navbar.njk.html | 2 +- website/components/sidebar.njk.html | 2 +- website/components/staggered.njk.html | 2 +- website/docs.njk.html | 6 +++--- website/index.njk.html | 4 ++-- website/root.njk.html | 2 +- 13 files changed, 18 insertions(+), 18 deletions(-) rename {socialiteui-v0.4.4 => socialiteui-v0.4.5}/socialiteui.min.css (100%) rename {socialiteui-v0.4.4 => socialiteui-v0.4.5}/socialiteui.min.js (100%) diff --git a/README.md b/README.md index 9c00082..8327bb8 100644 --- a/README.md +++ b/README.md @@ -37,10 +37,10 @@ npm install socialiteui ```html - + - + ``` ## Browser Support diff --git a/base.css b/base.css index a259b1b..09d6f3e 100644 --- a/base.css +++ b/base.css @@ -1,5 +1,5 @@ /* - SocialiteUI v0.4.4 + SocialiteUI v0.4.5 Color reference: brand: #ff7675 primary: #6c5ce7 diff --git a/main.js b/main.js index 6af2389..4a41f23 100644 --- a/main.js +++ b/main.js @@ -10,7 +10,7 @@ var docsPath = '../socialiteui-docs'; if (!fs.existsSync(docsPath)){ fs.mkdirSync(docsPath); } -var docsSourcesPath = docsPath+'/socialiteui-v0.4.4'; +var docsSourcesPath = docsPath+'/socialiteui-v0.4.5'; if (!fs.existsSync(docsSourcesPath)){ fs.mkdirSync(docsSourcesPath); } @@ -69,7 +69,7 @@ var baseJs = fs.readFileSync('base.js').toString(); var Terser = require("terser"); var jsResult = Terser.minify(baseJs); if(!jsResult.error){ - fs.writeFileSync('socialiteui-v0.4.4/socialiteui.min.js', jsResult.code); + fs.writeFileSync('socialiteui-v0.4.5/socialiteui.min.js', jsResult.code); fs.writeFileSync(docsSourcesPath+'/socialiteui.min.js', jsResult.code); }else{ console.log('JS ERROR') @@ -96,7 +96,7 @@ postcss([ autoprefixer ]).process(baseCss,{from: undefined}).then(result => { }) var minifiedCss = csso.minify(result.css).css; - fs.writeFileSync('socialiteui-v0.4.4/socialiteui.min.css', minifiedCss); + fs.writeFileSync('socialiteui-v0.4.5/socialiteui.min.css', minifiedCss); fs.writeFileSync(docsSourcesPath+'/socialiteui.min.css', minifiedCss); console.log('Website is ready!') diff --git a/package-lock.json b/package-lock.json index 5934efb..f45b33c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "socialiteui", - "version": "0.4.4", + "version": "0.4.5", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 936128d..7228fc5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "socialiteui", - "version": "0.4.4", + "version": "0.4.5", "description": "Responsive and lightweight HTML, CSS and JS framework", "main": "main.js", "scripts": { @@ -13,10 +13,10 @@ "keywords": [ "framework", "responsive", + "lightweight", "css", "js", "design", - "web", "social", "flexbox" ], diff --git a/socialiteui-v0.4.4/socialiteui.min.css b/socialiteui-v0.4.5/socialiteui.min.css similarity index 100% rename from socialiteui-v0.4.4/socialiteui.min.css rename to socialiteui-v0.4.5/socialiteui.min.css diff --git a/socialiteui-v0.4.4/socialiteui.min.js b/socialiteui-v0.4.5/socialiteui.min.js similarity index 100% rename from socialiteui-v0.4.4/socialiteui.min.js rename to socialiteui-v0.4.5/socialiteui.min.js diff --git a/website/components/navbar.njk.html b/website/components/navbar.njk.html index ed59695..a513bb9 100644 --- a/website/components/navbar.njk.html +++ b/website/components/navbar.njk.html @@ -26,7 +26,7 @@

Navbar

diff --git a/website/components/sidebar.njk.html b/website/components/sidebar.njk.html index 89aca80..5a268ca 100644 --- a/website/components/sidebar.njk.html +++ b/website/components/sidebar.njk.html @@ -5,7 +5,7 @@

Sidebar

A responsive sidebar menu built with CSS and JS.

-

For the sidebar, you'll need to import the javascript file socialiteui-v0.4.4/socialiteui.min.js +

For the sidebar, you'll need to import the javascript file socialiteui-v0.4.5/socialiteui.min.js from socialiteui framework at the bottom of your html document.

A sidebar looks exactly like the one in this documentation page. The sidebar element will be fixed diff --git a/website/components/staggered.njk.html b/website/components/staggered.njk.html index f81c1f4..6e85886 100644 --- a/website/components/staggered.njk.html +++ b/website/components/staggered.njk.html @@ -109,7 +109,7 @@

Staggered grid view

For the staggered grid to work, you'll need to import the javascript -file socialiteui-v0.4.4/socialiteui.min.js from socialiteui framework at the bottom of your html document.

+file socialiteui-v0.4.5/socialiteui.min.js from socialiteui framework at the bottom of your html document.

Then just add the staggered class to your element.

diff --git a/website/docs.njk.html b/website/docs.njk.html
index 2c54e4b..fc68d4d 100644
--- a/website/docs.njk.html
+++ b/website/docs.njk.html
@@ -18,7 +18,7 @@