From 7a0ae781e1b47be2c12f22b079108879dcf2699d Mon Sep 17 00:00:00 2001 From: Oscar Dub Date: Wed, 22 Jun 2016 10:42:14 +0100 Subject: [PATCH] Release 0.1.8. (#15) * Update dependencies. * Update project description. * Update package.json. Add engines field. Switch order. * Add library description. * Bump version. --- docs/_theme/assets/style.css | 10 ++++++- docs/_theme/index._ | 5 +++- package.json | 58 +++++++++++++++++++----------------- 3 files changed, 43 insertions(+), 30 deletions(-) diff --git a/docs/_theme/assets/style.css b/docs/_theme/assets/style.css index 733cda8..f374a23 100644 --- a/docs/_theme/assets/style.css +++ b/docs/_theme/assets/style.css @@ -15,6 +15,14 @@ height: 3rem; } +.library-description { + font-weight: 300 !important; + font-size: 1.5rem; + line-height: 24px; + margin: 0 0 0.75rem 0; + color: rgba(0, 0, 0, 0.4); +} + .h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 { font-size: inherit; @@ -101,7 +109,7 @@ h4 { } .mt-top-not { - margin-top: 2.25rem; + margin-top: 3rem; } .mt-top-not:first-child { diff --git a/docs/_theme/index._ b/docs/_theme/index._ index 64e22b9..4f19879 100644 --- a/docs/_theme/index._ +++ b/docs/_theme/index._ @@ -4,7 +4,7 @@ <%- options.name %> <%- packageJson.version %> | Documentation - + @@ -95,6 +95,9 @@
+

+ <%= packageJson.description %> +

<% docs.forEach(function(s) { %> <% if (s.kind !== 'note') { %> <%= renderSection({ diff --git a/package.json b/package.json index 1506f58..69deb09 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,25 @@ { "name": "mpe", - "version": "0.1.7", - "description": "A JavaScript toolkit for MPE devices.", + "version": "0.1.8", + "description": "Next generation MIDI for the web.", + "keywords": [ + "mpe", + "midi", + "music", + "keyboard", + "javascript", + "js" + ], + "author": "Oscar Dub ", + "homepage": "http://mpe.js.org", + "license": "UNLICENSED", + "repository": { + "type": "git", + "url": "git+https://github.com/WeAreROLI/mpejs" + }, + "engines": { + "node": ">=4.0.0" + }, "main": "lib/index.js", "scripts": { "build": "npm run clean && npm run compile", @@ -21,53 +39,37 @@ "test": "mocha --compilers js:babel-core/register test/**/*.test.js", "serve": "python -m SimpleHTTPServer 8000" }, - "repository": { - "type": "git", - "url": "git+https://github.com/WeAreROLI/mpejs" - }, - "keywords": [ - "mpe", - "midi", - "music", - "keyboard", - "javascript", - "js" - ], - "author": "Oscar Dub ", - "license": "UNLICENSED", "dependencies": { - "redux": "^3.4.0" + "redux": "^3.5.2" }, "devDependencies": { "babel": "^6.5.2", - "babel-cli": "^6.7.5", - "babel-core": "^6.7.7", + "babel-cli": "^6.10.1", + "babel-core": "^6.9.1", "babel-loader": "^6.2.4", - "babel-preset-es2015": "^6.6.0", + "babel-preset-es2015": "^6.9.0", "chai": "^3.5.0", "concat-stream": "^1.5.1", "doctrine": "^1.2.2", "documentation": "^4.0.0-beta5", "documentation-theme-utils": "^3.0.0", - "eslint": "^2.9.0", + "eslint": "^2.13.1", "git-directory-deploy": "^1.5.0", "highlight.js": "^9.4.0", - "html-webpack-plugin": "^2.15.0", + "html-webpack-plugin": "^2.21.0", "jsdoc": "^3.4.0", "lodash": "^4.13.1", - "mocha": "^2.4.5", + "mocha": "^2.5.3", "remark": "^5.0.1", - "remark-html": "^3.0.1", + "remark-html": "^4.0.0", "sinon": "^1.17.4", "sinon-chai": "^2.8.0", "unist-util-visit": "^1.1.0", "vinyl": "^1.1.1", "vinyl-fs": "^2.4.3", - "webpack": "^1.13.0" + "webpack": "^1.13.1" }, "babel": { - "presets": [ - "es2015" - ] + "presets": ["es2015"] } }