Small one liner inconsequential changes/fixes.

This commit is contained in:
jordanbrauer 2016-10-04 15:10:25 -05:00
parent 81dcaee687
commit 1028c81401
3 changed files with 46 additions and 47 deletions

View File

@ -9,7 +9,7 @@ var gulp = require('gulp'), // task runner/manager (even
notify = require('gulp-notify'), // notifies us when a gulp task is completed through a system notifcation
rename = require('gulp-rename'), // allows us to rename files (adding prefixes and suffixes is the main use here).
autoprefixer = require('gulp-autoprefixer'), // great for catching those annoying vendor prefixes on css attributets and values.
minify = require('gulp-cssnano'), // minify our compiled css. sass can do this natively (kind of), so this is used in conjunction with gulp-sass.
minify = require('gulp-cssnano'), // minify our compiled css. sass can do this natively (kind of), so this is used in conjunction with gulp-sass.
del = require('del'); // del is used to cleanup cache and build files.
/*

View File

@ -2,9 +2,10 @@
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Keyrune</title>
<link rel="stylesheet" href="css/keyrune.css" />
<!-- <link rel="stylesheet" href="css/keyrune.min.css" /> -->
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<style type="text/css">
body {

View File

@ -1,47 +1,45 @@
{
"name": "keyrune",
"description": "Keyrune",
"version": "1.7.2",
"author": {
"name": "Andrew Gioia",
"email": "andrewgioia@gmail.com",
"url": "http://andrewgioia.com"
},
"contributors": [
"JayGray <weber.joerg.h@gmail.com>",
"ardeay",
"Jordan Brauer <jbrauer.inc@gmail.com>"
],
"repository" : {
"type": "git",
"url": "https://github.com/andrewgioia/Keyrune.git"
},
"keywords": [],
"homepage": "http://andrewgioia.com",
"dependencies": {},
"devDependencies": {
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.0",
"gulp-sass": "^2.3.2",
"gulp-cssnano": "^2.1.2",
"gulp-notify": "^2.2.0",
"gulp-rename": "^1.2.2",
"merge-stream": "^1.0.0",
"run-sequence": "^1.2.2",
"del": "^2.2.1"
},
"license": "(OFL-1.1 AND MIT)",
"main": "css/keyrune.css",
"ignore": [
"*/.*",
"*.json",
"*.md"
],
"bugs": {
"url" : "https://github.com/andrewgioia/Keyrune/issues",
"email" : "andrewgioia@gmail.com"
},
"engines": {
"node" : "*"
}
"name": "keyrune",
"description": "Keyrune",
"version": "1.7.2",
"author": {
"name": "Andrew Gioia",
"email": "andrewgioia@gmail.com",
"url": "http://andrewgioia.com"
},
"contributors": [
"JayGray <weber.joerg.h@gmail.com>",
"ardeay",
"Jordan Brauer <jbrauer.inc@gmail.com>"
],
"repository": {
"type": "git",
"url": "https://github.com/andrewgioia/Keyrune.git"
},
"keywords": [],
"homepage": "http://andrewgioia.com",
"dependencies": {},
"devDependencies": {
"del": "^2.2.1",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.0",
"gulp-cssnano": "^2.1.2",
"gulp-notify": "^2.2.0",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.3.2",
},
"license": "(OFL-1.1 AND MIT)",
"main": "css/keyrune.css",
"ignore": [
"*/.*",
"*.json",
"*.md"
],
"bugs": {
"url": "https://github.com/andrewgioia/Keyrune/issues",
"email": "andrewgioia@gmail.com"
},
"engines": {
"node": "*"
}
}