From 23c7842be5baf93d4249810f9aeff224353a3843 Mon Sep 17 00:00:00 2001 From: Greg Date: Fri, 10 Apr 2020 23:45:07 +0100 Subject: [PATCH] chore: tidy readme and package links --- README.md | 1 + package-lock.json | 2 +- package.json | 7 ++++--- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 054258c..99d3c0e 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,7 @@ When that is complete run: ```cli $ nvm use $ npm i +$ npm start ``` ## Installing the CSS diff --git a/package-lock.json b/package-lock.json index 94f580e..6c47771 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@blaze/css", - "version": "7.2.0", + "version": "8.0.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 3b3a105..d9dce97 100644 --- a/package.json +++ b/package.json @@ -6,10 +6,10 @@ "license": "MIT", "repository": { "type": "git", - "url": "https://github.com/BlazeSoftware/blaze.git" + "url": "https://github.com/BlazeSoftware/css.git" }, "bugs": { - "url": "https://github.com/BlazeSoftware/blaze/issues" + "url": "https://github.com/BlazeSoftware/css/issues" }, "homepage": "https://www.blazeui.com", "keywords": [ @@ -39,11 +39,12 @@ "build": "stencil build", "start": "stencil build --dev --watch --serve", "test": "stylelint \"src/scss/**/*.scss\"", + "stylelint": "stylelint \"src/**/*.scss\" --fix", "prettier": "prettier --write './**/*'" }, "husky": { "hooks": { - "pre-commit": "npm run prettier && npm run test && npm run build", + "pre-commit": "npm run prettier && npm run stylelint && git add . && npm run test && npm run build", "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" } },