Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
tunnckoCore committed Aug 4, 2015
1 parent 44982ed commit 9cef15b
Show file tree
Hide file tree
Showing 20 changed files with 367 additions and 599 deletions.
1 change: 0 additions & 1 deletion .coveralls.yml

This file was deleted.

26 changes: 9 additions & 17 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,34 +1,26 @@
# .editorconfig <https://github.com/tunnckoCore/dotfiles>
#
# Copyright (c) 2014 Charlike Mike Reagent, contributors.
# Copyright (c) 2015 Charlike Mike Reagent, contributors.
# Released under the MIT license.
#

root = true

[*]
indent_style = space
charset = utf-8
end_of_line = lf
insert_final_newline = false
trim_trailing_whitespace = false

[*.{json,cson,yml,yaml,md,jade,css,stylus}]
indent_size = 2
indent_style = space

[*.{js,php}]
indent_size = 2
[*.js]
insert_final_newline = true
trim_trailing_whitespace = true

[*.{php,html}]
[*.php]
indent_size = 4
insert_final_newline = true
trim_trailing_whitespace = true

[Makefile]
indent_size = 2
indent_style = tab

[.*rc]
indent_size = 2
indent_style = space
trim_trailing_whitespace = true
[*.md]
insert_final_newline = false
trim_trailing_whitespace = false
49 changes: 0 additions & 49 deletions .gitattributes

This file was deleted.

5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# .gitignore <https://github.com/tunnckoCore/dotfiles>
#
# Copyright (c) 2014 Charlike Mike Reagent, contributors.
# Copyright (c) 2015 Charlike Mike Reagent, contributors.
# Released under the MIT license.
#

Expand All @@ -13,13 +13,15 @@ components
vendor
build
dest
dist
src
lib-cov
coverage
nbproject
cache
temp
tmp
octet

# Packages #
# ##########
Expand Down Expand Up @@ -52,3 +54,4 @@ Desktop.ini
npm-debug.log
.directory
._*
lcov.info
115 changes: 0 additions & 115 deletions .jscsrc

This file was deleted.

37 changes: 0 additions & 37 deletions .jshint

This file was deleted.

22 changes: 0 additions & 22 deletions .jshintignore

This file was deleted.

31 changes: 24 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,30 @@
sudo: false
language: "node_js"
sudo: false

node_js:
- "iojs"
- "0.10"
- "0.11"
- "0.12"
- "1"
- "2"

notifications:
email:
on_success: never
on_failure: never

before_script:
- npm install standard
- standard

script:
- npm install istanbul-harmony
- node --harmony node_modules/.bin/istanbul cover test.js

after_success:
- npm install coveralls
- cat coverage/lcov.info | coveralls
- mv coverage/lcov.info .

matrix:
allow_failures:
- node_js: "0.10"
fast_finish: true
script: "npm run-script test-travis"
after_script: "npm install coveralls && cat ./coverage/lcov.info | coveralls"
- node_js: "0.10"
13 changes: 8 additions & 5 deletions history.md → CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
## v1.0.1 / December 30, 2014


## 1.0.1 - 2015-12-30
- Release v1.0.1 / npm@v1.0.1
- add `examples/` dir for node and browser examples
- add `dist/` dir for browser and cdn usage. There will live and minified version.
- add browser "installation" (with script tag, lol)

## v1.0.0 / December 30, 2014
- first stable release
## 1.0.0 - 2015-12-30
- Release v1.0.0 / npm@v1.0.0
- update code style
- jshint, jscs, dotfiles, coverage, etc
- nothing special

## v0.0.0 / June 09, 2014
- init commits
## 0.0.0 - 2014-06-09
- first commits
Loading

0 comments on commit 9cef15b

Please sign in to comment.