Skip to content

Commit

Permalink
Merge 2542d02 into 0ee737c
Browse files Browse the repository at this point in the history
  • Loading branch information
nfrasser committed Jun 6, 2015
2 parents 0ee737c + 2542d02 commit 5505a3c
Show file tree
Hide file tree
Showing 75 changed files with 4,484 additions and 1,738 deletions.
40 changes: 39 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,43 @@
Thumbs.DB
node_modules
bower_components
build/*
demo/dist/*

# 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
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git-
node_modules

# Build files
build
dist
lib

# Specific to plugin website branch
.sass-cache
_site
_sass
js
34 changes: 14 additions & 20 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -1,21 +1,15 @@
{
"boss": true,
"curly": true,
"eqeqeq": true,
"eqnull": true,
"expr": true,
"immed": false,
"noarg": true,
"smarttabs": true,
"trailing": true,
"unused": true,
"strict": false,
"node": true,
"browser": true,
"jquery": true,
"globals": {
"prettyPrint": false,
"jQuery": false,
"Linkified": false
}
}
"esnext": true,
"globalstrict": false,
"node": true,
"globals": {
"__base": false,
"__TLDS__": false,
"after": false,
"afterEach": false,
"before": false,
"beforeEach": false,
"describe": false,
"it": false
}
}
19 changes: 19 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# All compiled code will be in the `lib` folders
amd
assets
bower_components
build
coverage
demo
dist
src
templates
test

# Files
.editorconfig
.jshintrc
.travis.yml
bower.json
gulpfile.js
testem.json
13 changes: 13 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
language: node_js
node_js:
- "0.12"
- "0.10"
- "iojs"
env:
global:
- secure: LhH+mMqOktTe6cIt97PGKBfgUjZM8vRd0qddyg61FSxg7a3WrHQoHE8WdRioJ9+DDzpu/NSTsHEUFUpGN+kSRw1UY4tsNLH6HoBQnqrNN4tVOeefudJpdeteOKZrJ8r8TaA/eO7sAgXO2T+RLJ8+qTbhx8FVZtLaCAgkrS0w9Qk=
- secure: Okwm1aAR3oo09AhHDsjFSq1UGlIUtWYYvYeoolJScC/UVFGMiK9oC4fzRtUHv3kXcnshDlcVDrr/Q5JL9Qx6E+tosPJp+tioaqE8X4IDbVk7PPs/ToOOEmWnGvxkgmfCGSDuneG8RVhILkhls3fbm0z+rRWlvJkjefeA96T6zps=
script:
- npm test
- npm run test-ci
after_script: npm run coverage
181 changes: 0 additions & 181 deletions Gruntfile.js

This file was deleted.

Loading

0 comments on commit 5505a3c

Please sign in to comment.