diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..18ae2d8 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,4 @@ +language: node_js +node_js: + - "0.11" + - "0.10" diff --git a/Gruntfile.js b/Gruntfile.js deleted file mode 100644 index 44125d4..0000000 --- a/Gruntfile.js +++ /dev/null @@ -1,44 +0,0 @@ -'use strict'; - -module.exports = function(grunt) { - - // Project configuration. - grunt.initConfig({ - jshint: { - options: { - jshintrc: '.jshintrc' - }, - gruntfile: { - src: ['scribe.js', 'Gruntfile.js'] - }, - lib: { - src: ['lib/**/*.js', 'examples/**/*.js', 'static/js/**/*.js'] - }, - test: { - src: ['test/**/*.js'] - }, - }, - watch: { - gruntfile: { - files: '<%= jshint.gruntfile.src %>', - tasks: ['jshint:gruntfile'] - }, - lib: { - files: '<%= jshint.lib.src %>', - tasks: ['jshint:lib'] - }, - test: { - files: '<%= jshint.test.src %>', - tasks: ['jshint:test'] - }, - }, - }); - - // These plugins provide necessary tasks. - grunt.loadNpmTasks('grunt-contrib-jshint'); - grunt.loadNpmTasks('grunt-contrib-watch'); - - // Default task. - grunt.registerTask('default', ['jshint']); - -}; diff --git a/README.md b/README.md index b3949be..1ab9540 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +[![npm version](https://badge.fury.io/js/scribe-js.svg)](http://badge.fury.io/js/scribe-js) [![Build Status](https://travis-ci.org/bluejamesbond/Scribe.js.svg?branch=master)](https://travis-ci.org/bluejamesbond/Scribe.js) + ![Logo](https://raw.githubusercontent.com/bluejamesbond/Scribe.js/master/__misc/scribejs%20design%20logo%20%5Ba%5D.png) **Lightweight NodeJS Logging** diff --git a/herokuapp/views/index.html b/herokuapp/views/index.html index bc29241..4bf7750 100644 --- a/herokuapp/views/index.html +++ b/herokuapp/views/index.html @@ -12,9 +12,7 @@ - - Fork me on GitHub - + Fork me on GitHub
diff --git a/package.json b/package.json index 2b75a3d..608f146 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "scribe-js", "description": "Comprehensive logging framework with online interface", - "version": "2.0.3", + "version": "2.0.4", "homepage": "https://github.com/bluejamesbond/Scribe.js", "keywords": [], "author": { @@ -23,18 +23,6 @@ } ], "main": "scribe.js", - "scripts": { - "test": "grunt nodeunit" - }, - "devDependencies": { - "grunt-contrib-jshint": "~0.6.4", - "grunt-contrib-nodeunit": "~0.2.0", - "grunt-contrib-watch": "~0.5.3", - "grunt": "~0.4.5" - }, - "directories": { - "test": "test" - }, "license": "MIT", "dependencies": { "callsite": "^1.0.0",