From 44b0c15e0a27731fcbe137b2a16df7f9f5cc74d8 Mon Sep 17 00:00:00 2001 From: Luan Gjokaj Date: Thu, 15 Aug 2019 00:37:44 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20RELEASE:=20Meet=20GoPablo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 32 +++++++++++++++++++++++++++++--- package-lock.json | 2 +- package.json | 2 +- 3 files changed, 31 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 5f4864c..19f6549 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,8 @@ - [5. JavaScript ES6](#5-javascript-es6) - [Write ES6 JavaScript](#write-es6-javascript) - [6. External Libraries](#6-external-libraries) -- [7. Deploy](#7-deploy) +- [7. Code Style Rules](#7-code-style-rules) +- [8. Deploy](#8-deploy) - [Heroku](#heroku) - [Automated Netlify deployments](#automated-netlify-deployments) @@ -305,7 +306,23 @@ You can include the scripts in the head of the page before the DOM is loaded by A build restart is required for changes to take effect. -# 7. Deploy +# 7. Code Style Rules + +GoPablo comes with its own set of code style rules: + +``` +.stylelintrc +``` + +## Lint CSS + +Before pushing changes make sure you have clean and consistent CSS. Run [stylelint](https://stylelint.io/) with the command: +``` +npm run lint +``` + + +# 8. Deploy There are a lot of possiblities and different ways to deploy your static website. The most traditional one being: generating your distribution files and uploading them manually, usually FTP. ## Heroku @@ -324,4 +341,13 @@ Netlify is a great service that can be used to deploy generated websites. All yo --- -We are live 🌍 \ No newline at end of file +We are live 🌍 + +--- + +# Changelog +**v0.0.1** +- Meet GoPablo. + +# License +MIT diff --git a/package-lock.json b/package-lock.json index 630eebf..a289530 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "gopablo", - "version": "0.0.0", + "version": "0.0.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index bb64292..ad54862 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gopablo", - "version": "0.0.0", + "version": "0.0.1", "description": "Static site generator.", "homepage": "https://www.gopablo.co", "repository": "https://github.com/luangjokaj/gopablo",