Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .codecov.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
comment:
require_changes: yes
behavior: once
13 changes: 13 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#root = true

[*]
indent_style = space
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
max_line_length = 100
indent_size = 2

[*.md]
trim_trailing_whitespace = false
41 changes: 36 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,37 @@
.DS_Store
ehthumbs.db
Icon?
Thumbs.db
# Logs
logs
*.log
npm-debug.log*

# Runtime data
pids
*.pid
*.seed

# Coverage directory
coverage

# node-waf configuration
.lock-wscript

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

# Dependency directories
node_modules
.idea
jspm_packages

# Optional npm cache directory
.npm

# Optional REPL history
.node_repl_history
.vscode

# build
build
docs
dist
.rpt2_cache
demo/**/*.js
demo/**/*.js.map
24 changes: 20 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,23 @@
sudo: false
language: node_js
node_js:
- "0.11"
before_script:
- npm install -g grunt-cli
- 10
script:
- grunt default --verbose
- npm run lint
- npm run test:prod
- npm run build
after_success:
- bash <(curl -s https://codecov.io/bash)
- npm run travis-deploy-once "npm run semantic-release"
- npm run build:demo
- cp -r demo/public/* docs
- npm run build:docs
deploy:
provider: pages
skip_cleanup: true
local_dir: docs
github_token: $GH_TOKEN
on:
branch: master
notifications:
email: false
59 changes: 0 additions & 59 deletions Gruntfile.js

This file was deleted.

Loading