Skip to content

Commit

Permalink
Update meta docs
Browse files Browse the repository at this point in the history
  • Loading branch information
ghaiklor committed Mar 20, 2015
1 parent 554307e commit 7945398
Show file tree
Hide file tree
Showing 4 changed files with 60 additions and 14 deletions.
10 changes: 10 additions & 0 deletions .editorconfig
@@ -0,0 +1,10 @@
# editorconfig.org
root = true

[*]
indent_style = space
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
37 changes: 35 additions & 2 deletions .gitignore
@@ -1,2 +1,35 @@
.DS_Store
node_modules
# Logs
logs
*.log

# Runtime data
pids
*.pid
*.seed

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directory
node_modules

# Miscellaneous
*~
*#
.DS_STORE
.netbeans
nbproject
.idea
.node_history
13 changes: 5 additions & 8 deletions .npmignore
@@ -1,8 +1,5 @@
*.md
.DS_Store
.git*
Makefile
docs/
examples/
support/
test/
coverage
test
.editorconfig
.gitignore
.travis.yml
14 changes: 10 additions & 4 deletions .travis.yml
@@ -1,5 +1,11 @@
language: "node_js"
language: node_js
node_js:
- 0.4
- 0.6
- 0.8
- '0.10'
- '0.11'
- '0.12'
- 'iojs'
before_install:
- currentfolder="${PWD##*/}"
- if [ "$currentfolder" != 'generator-sails-rest-api' ]; then cd .. && eval "mv $currentfolder generator-sails-rest-api" && cd generator-sails-rest-api; fi
after_script:
- npm install coveralls && cat ./coverage/lcov.info | coveralls

0 comments on commit 7945398

Please sign in to comment.