Skip to content

Commit

Permalink
Merge pull request #11 from Skelp/develop
Browse files Browse the repository at this point in the history
Version 0.4.0
  • Loading branch information
neocotic authored Mar 20, 2017
2 parents ff7cb0b + 117ab1f commit a3486b0
Show file tree
Hide file tree
Showing 45 changed files with 950 additions and 32 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ node_js:
- "6"
- "7"
script:
- npm test
- npm run ci
after_script:
- npm run report-coverage
7 changes: 7 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## Version 0.4.0, 2017.03.20

* Support es2015 maps [#7](https://github.com/Skelp/nevis/issues/7)
* Support es2015 sets [#8](https://github.com/Skelp/nevis/issues/8)
* Support es2015 typed arrays [#9](https://github.com/Skelp/nevis/issues/9)
* Add new script for testing on CI [#10](https://github.com/Skelp/nevis/issues/10)

## Version 0.3.0, 2017.03.18

* Rename library to Nevis (**breaking change**)
Expand Down
3 changes: 2 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,8 @@ module.exports = function(grunt) {

require('load-grunt-tasks')(grunt)

grunt.registerTask('default', [ 'eslint', 'clean', 'rollup', 'mocha_istanbul' ])
grunt.registerTask('default', [ 'ci' ])
grunt.registerTask('build', [ 'eslint', 'clean:build', 'rollup' ])
grunt.registerTask('ci', [ 'eslint', 'clean', 'rollup', 'mocha_istanbul' ])
grunt.registerTask('test', [ 'eslint', 'clean:test', 'mocha_istanbul' ])
}
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
888b 888 d8b .d88 88b.
8888b 888 Y8P d88P" "Y88b
88888b 888 d88P Y88b
88888b. .d88b. 888 888 888 888Y88b 888 .d88b. 888 888 888 .d8888b 888 888
888 "88b d8P Y8b 888 888 888 888 Y88b888 d8P Y8b 888 888 888 88K 888 888
888 888 88888888 888 888 888 888 Y88888 88888888 Y88 88P 888 "Y8888b. Y88b d88P
888 888 Y8b. Y88b 888 d88P 888 Y8888 Y8b. Y8bd8P 888 X88 Y88b. .d88P
888 888 "Y8888 "Y8888888P" 888 Y888 "Y8888 Y88P 888 88888P' "Y88 88P"
888b 888 d8b
8888b 888 Y8P
88888b 888
888Y88b 888 .d88b. 888 888 888 .d8888b
888 Y88b888 d8P Y8b 888 888 888 88K
888 Y88888 88888888 Y88 88P 888 "Y8888b.
888 Y8888 Y8b. Y8bd8P 888 X88
888 Y888 "Y8888 Y88P 888 88888P'

[Nevis](https://github.com/Skelp/nevis) brings more of the Object-Orientated Programming (OOP) model to JavaScript.

Expand Down Expand Up @@ -38,13 +38,13 @@ You'll need to have at least [Node.js](https://nodejs.org). While equals should

If you want to simply download the file to be used in the browser you can find them below:

* [Development Version](https://cdn.rawgit.com/Skelp/nevis/master/dist/nevis.js) (77kb)
* [Production Version](https://cdn.rawgit.com/Skelp/nevis/master/dist/nevis.min.js) (8.3kb)
* [Development Version](https://cdn.rawgit.com/Skelp/nevis/master/dist/nevis.js) (81kb)
* [Production Version](https://cdn.rawgit.com/Skelp/nevis/master/dist/nevis.min.js) (9.2kb - [Source Map](https://cdn.rawgit.com/Skelp/nevis/master/dist/nevis.min.js.map))

If you're only wanting support for inheritance, you can use the *lite* version instead:

* [Development Version - Lite](https://cdn.rawgit.com/Skelp/nevis/master/dist/nevis-lite.js) (7.5kb)
* [Production Version - Lite](https://cdn.rawgit.com/Skelp/nevis/master/dist/nevis-lite.min.js) (980b)
* [Production Version - Lite](https://cdn.rawgit.com/Skelp/nevis/master/dist/nevis-lite.min.js) (980b - [Source Map](https://cdn.rawgit.com/Skelp/nevis/master/dist/nevis-lite.min.js.map))

## API

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nevis",
"version": "0.3.0",
"version": "0.4.0",
"description": "Makes JavaScript more object-orientated",
"homepage": "https://github.com/Skelp/nevis",
"authors": [
Expand Down
2 changes: 1 addition & 1 deletion dist/nevis-lite.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/nevis-lite.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/nevis-lite.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/nevis-lite.min.js.map

Large diffs are not rendered by default.

200 changes: 196 additions & 4 deletions dist/nevis.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/nevis.js.map

Large diffs are not rendered by default.

Loading

0 comments on commit a3486b0

Please sign in to comment.