From c36707ce65e61bdb28994ef3884d58b32651d024 Mon Sep 17 00:00:00 2001 From: CJ Patoilo Date: Tue, 24 Jan 2017 02:32:56 -0300 Subject: [PATCH] Update dependencies and year of the license --- dist/milligram.css | 4 ++-- dist/milligram.min.css | 4 ++-- license | 2 +- package.json | 14 ++++++-------- 4 files changed, 11 insertions(+), 13 deletions(-) diff --git a/dist/milligram.css b/dist/milligram.css index 725b32d..859a03e 100644 --- a/dist/milligram.css +++ b/dist/milligram.css @@ -1,8 +1,8 @@ /*! * Milligram v1.2.4 - * http://milligram.github.io + * https://milligram.github.io * - * Copyright (c) 2016 CJ Patoilo + * Copyright (c) 2017 CJ Patoilo * Licensed under the MIT license */ diff --git a/dist/milligram.min.css b/dist/milligram.min.css index 54d2e2e..335c486 100644 --- a/dist/milligram.min.css +++ b/dist/milligram.min.css @@ -1,8 +1,8 @@ /*! * Milligram v1.2.4 - * http://milligram.github.io + * https://milligram.github.io * - * Copyright (c) 2016 CJ Patoilo + * Copyright (c) 2017 CJ Patoilo * Licensed under the MIT license */ diff --git a/license b/license index 90ded75..a8087cc 100644 --- a/license +++ b/license @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright © 2016 CJ Patoilo +Copyright © 2017 CJ Patoilo Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/package.json b/package.json index 40e2c06..54e675b 100644 --- a/package.json +++ b/package.json @@ -52,7 +52,7 @@ "autoprefixer": "^6.5.4", "ava": "^0.17.0", "backstopjs": "^2.3.5", - "banner-cli": "^0.9.2", + "banner-cli": "^0.10.0", "browser-sync": "^2.18.5", "husky": "^0.11.9", "node-sass": "^3.13.1", @@ -73,16 +73,14 @@ "sass": "node-sass --output-style expanded src/milligram.sass dist/milligram.css && node-sass --output-style compressed src/milligram.sass dist/milligram.min.css", "autoprefixer": "postcss -u autoprefixer --no-map.inline --autoprefixer.browsers \"last 1 versions\" -r dist/*.css", "banner": "banner-cli dist/*.css", - "watch": "onchange src -- run-s build", + "watch": "onchange src -- run-p build", "serve": "browser-sync start --no-notify -s test --ss dist -f dist", - "test": "run-s lint ava", - "lint": "sass-lint -c .sasslintrc \"src/*.sass\" --verbose --no-exit", - "ava": "nyc ava", "backstop": "run-s build && run-p serve compare", "reference": "backstop reference --configPath=backstop.conf.js", "compare": "backstop test --configPath=backstop.conf.js", - "precommit": "run-s build test", - "prestart": "npm install", - "pretest": "npm install" + "lint": "sass-lint -c .sasslintrc \"src/*.sass\" --verbose --no-exit", + "ava": "nyc ava", + "test": "run-s build lint ava", + "precommit": "run-p test" } }