Skip to content

Commit 963e28f

Browse files
authored
Merge pull request #37 from Download/develop
### 0.7.0: Quality improvements * Tightened API surface area + [x] [Removed support for type string from `is`](#35) * Improved documentation + [x] [JSDoc comments](#26) + [x] [Added logo and comic](#29) * Improved dependency management + [x] [Enabled Greenkeeper](#32) + [x] [Enabled Greenkeeper-lockfile](a3e7f4a)
2 parents 896971b + 42383ff commit 963e28f

17 files changed

+22474
-20205
lines changed

.eslintrc.json

-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
"code": 120
1717
}],
1818
"indent": ["warn", 4],
19-
"newline-after-var": "warn",
2019
"newline-per-chained-call": "warn",
2120
"one-var-declaration-per-line": "warn",
2221
"no-redeclare": "error",

.travis.yml

+6
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,9 @@ node_js:
44
- "6"
55
- "5"
66
- "4"
7+
# https://github.com/greenkeeperio/greenkeeper-lockfile
8+
before_install:
9+
- npm install -g npm@5
10+
- npm install -g greenkeeper-lockfile@1
11+
before_script: greenkeeper-lockfile-update
12+
after_script: greenkeeper-lockfile-upload

README.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
# mics <sup><sub>0.6.3</sub></sup>
1+
# mics <sup><sub>0.7.0</sub></sup>
22
### Multiple Inheritance Class System
3+
4+
[![Greenkeeper badge](https://badges.greenkeeper.io/Download/mics.svg)](https://greenkeeper.io/)
35
**Intuitive mixins for ES6 classes**
46

57
[![npm](https://img.shields.io/npm/v/mics.svg)](https://npmjs.com/package/mics)
@@ -28,8 +30,8 @@ npm install --save mics
2830
```
2931

3032
## Direct download
31-
* [mics.umd.js](https://cdn.rawgit.com/download/mics/0.6.3/dist/mics.umd.js) (universal module works in browser and node)
32-
* [mics.min.js](https://cdn.rawgit.com/download/mics/0.6.3/dist/mics.min.js) (minified version of universal module file)
33+
* [mics.umd.js](https://cdn.rawgit.com/download/mics/0.7.0/dist/mics.umd.js) (universal module works in browser and node)
34+
* [mics.min.js](https://cdn.rawgit.com/download/mics/0.7.0/dist/mics.min.js) (minified version of universal module file)
3335

3436

3537
## Include in your app
@@ -57,7 +59,7 @@ define(['mics'], function(mics){
5759

5860
### Script tag
5961
```html
60-
<script src="https://cdn.rawgit.com/download/mics/0.6.3/dist/mics.min.js"></script>
62+
<script src="https://cdn.rawgit.com/download/mics/0.7.0/dist/mics.min.js"></script>
6163
<script>
6264
var mix = mics.mix
6365
var is = mics.is

dist/mics.cjs.js

+84-28
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/mics.cjs.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)