-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update devDepenencies and tests. Add code coverage and update readme …
…shields.
- Loading branch information
Showing
7 changed files
with
54 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
# Logs | ||
*.log | ||
|
||
# Dependency directory | ||
node_modules | ||
components | ||
build | ||
|
||
# Trash | ||
.DS_Store | ||
|
||
# Test Files that should be ignored | ||
coverage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
language: node_js | ||
node_js: | ||
- 0.10 | ||
before_script: | ||
- npm install -g gulp | ||
- 6.9.1 | ||
# Send coverage data to Coveralls | ||
after_script: "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "aload", | ||
"main": "aload.js", | ||
"version": "1.2.2", | ||
"version": "1.2.3", | ||
"homepage": "http://pazguille.github.io/aload/", | ||
"authors": [ | ||
"Guille Paz <[email protected]>" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,28 @@ | ||
{ | ||
"name": "aload", | ||
"version": "1.2.2", | ||
"version": "1.2.3", | ||
"description": "Loads images, scripts, styles, iframes, videos and audios asynchronously.", | ||
"author": "@pazguille <[email protected]>", | ||
"scripts": { | ||
"dist": "node_modules/.bin/gulp", | ||
"test": "npm run dist && node_modules/.bin/_mocha" | ||
"build": "node_modules/.bin/gulp", | ||
"dist": "node_modules/.bin/gulp dist", | ||
"test": "npm run build && NODE_ENV=test istanbul cover _mocha -- ./test/*.spec.js", | ||
"lint": "eslint index.js" | ||
}, | ||
"repository": "[email protected]:pazguille/aload.git", | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"better-assert": "1.0.2", | ||
"coveralls": "^2.11.15", | ||
"gulp": "3.9.1", | ||
"gulp-header": "1.8.8", | ||
"gulp-rename": "1.2.2", | ||
"gulp-replace": "0.5.4", | ||
"gulp-uglify": "2.0.0", | ||
"mkdirp": "0.5.1", | ||
"istanbul": "^0.4.5", | ||
"jsdom": "9.9.1", | ||
"mocha": "3.2.0", | ||
"better-assert": "1.0.2" | ||
"mkdirp": "0.5.1", | ||
"mocha": "^3.2.0" | ||
}, | ||
"keywords": [ | ||
"aload", | ||
|
File renamed without changes.