Update dependencies and year of the license

This commit is contained in:
CJ Patoilo 2017-01-24 02:32:56 -03:00
parent f1c5fbd09b
commit c36707ce65
No known key found for this signature in database
GPG Key ID: BB04A2FB1C21BF9D
4 changed files with 11 additions and 13 deletions

4
dist/milligram.css vendored
View File

@ -1,8 +1,8 @@
/*! /*!
* Milligram v1.2.4 * 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 * Licensed under the MIT license
*/ */

View File

@ -1,8 +1,8 @@
/*! /*!
* Milligram v1.2.4 * 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 * Licensed under the MIT license
*/ */

View File

@ -1,6 +1,6 @@
The MIT License (MIT) The MIT License (MIT)
Copyright © 2016 CJ Patoilo <cjpatoilo@gmail.com> Copyright © 2017 CJ Patoilo <cjpatoilo@gmail.com>
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal

View File

@ -52,7 +52,7 @@
"autoprefixer": "^6.5.4", "autoprefixer": "^6.5.4",
"ava": "^0.17.0", "ava": "^0.17.0",
"backstopjs": "^2.3.5", "backstopjs": "^2.3.5",
"banner-cli": "^0.9.2", "banner-cli": "^0.10.0",
"browser-sync": "^2.18.5", "browser-sync": "^2.18.5",
"husky": "^0.11.9", "husky": "^0.11.9",
"node-sass": "^3.13.1", "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", "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", "autoprefixer": "postcss -u autoprefixer --no-map.inline --autoprefixer.browsers \"last 1 versions\" -r dist/*.css",
"banner": "banner-cli 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", "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", "backstop": "run-s build && run-p serve compare",
"reference": "backstop reference --configPath=backstop.conf.js", "reference": "backstop reference --configPath=backstop.conf.js",
"compare": "backstop test --configPath=backstop.conf.js", "compare": "backstop test --configPath=backstop.conf.js",
"precommit": "run-s build test", "lint": "sass-lint -c .sasslintrc \"src/*.sass\" --verbose --no-exit",
"prestart": "npm install", "ava": "nyc ava",
"pretest": "npm install" "test": "run-s build lint ava",
"precommit": "run-p test"
} }
} }