Skip to content

Commit

Permalink
Release 0.1.8. (#15)
Browse files Browse the repository at this point in the history
* Update dependencies.

* Update project description.

* Update package.json.

Add engines field.
Switch order.

* Add library description.

* Bump version.
  • Loading branch information
odub authored Jun 22, 2016
1 parent c392141 commit 7a0ae78
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 30 deletions.
10 changes: 9 additions & 1 deletion docs/_theme/assets/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -101,7 +109,7 @@ h4 {
}

.mt-top-not {
margin-top: 2.25rem;
margin-top: 3rem;
}

.mt-top-not:first-child {
Expand Down
5 changes: 4 additions & 1 deletion docs/_theme/index._
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset='utf-8' />
<title><%- options.name %> <%- packageJson.version %> | Documentation</title>
<meta name='viewport' content='width=device-width,initial-scale=1'>
<link href='https://fonts.googleapis.com/css?family=Fira+Sans:400,400italic,500|Fira+Mono' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Fira+Sans:300,400,400italic,500|Fira+Mono' rel='stylesheet' type='text/css'>
<link href='assets/bass.css' type='text/css' rel='stylesheet' />
<link href='assets/style.css' type='text/css' rel='stylesheet' />
<link href='assets/github.css' type='text/css' rel='stylesheet' />
Expand Down Expand Up @@ -95,6 +95,9 @@
</div>
<div class='fix-margin-3'>
<div class='px2 mt1'>
<h2 class='library-description pb1'>
<%= packageJson.description %>
</h2>
<% docs.forEach(function(s) { %>
<% if (s.kind !== 'note') { %>
<%= renderSection({
Expand Down
58 changes: 30 additions & 28 deletions package.json
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>",
"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",
Expand All @@ -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 <[email protected]>",
"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"]
}
}

0 comments on commit 7a0ae78

Please sign in to comment.