Travis build: 11

This commit is contained in:
Pl4gue
2017-12-21 12:10:08 +00:00
parent 3cc53087da
commit ba85acae49
5 changed files with 800 additions and 29 deletions

View File

@ -1,6 +1,6 @@
![Logo](/logo.png)
# 30 seconds of code [![Gitter chat](https://badges.gitter.im/gitterHQ/gitter.png)](https://gitter.im/30-seconds-of-code/Lobby)
# 30 seconds of code [![Gitter chat](https://badges.gitter.im/gitterHQ/gitter.png)](https://gitter.im/30-seconds-of-code/Lobby) ![Travis Build](https://travis-ci.org/Chalarangelo/30-seconds-of-code.svg?branch=master)
> Curated collection of useful Javascript snippets that you can understand in 30 seconds or less.
- Use <kbd>Ctrl</kbd> + <kbd>F</kbd> or <kbd>command</kbd> + <kbd>F</kbd> to search for a snippet.

File diff suppressed because one or more lines are too long

86
package-lock.json generated
View File

@ -184,6 +184,11 @@
"resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz",
"integrity": "sha1-104bh+ev/A24qttwIfP+SBAasjQ="
},
"async": {
"version": "1.5.2",
"resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz",
"integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo="
},
"async-each": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz",
@ -383,6 +388,77 @@
"repeat-element": "1.1.2"
}
},
"builder": {
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/builder/-/builder-3.2.3.tgz",
"integrity": "sha512-DXkZ27RHCw4uCn08SEx7hhgXbtamZOBKa8FEuHjsooyMfNfZXNn7YYqpfWrBNigwX2sMgKYWY8Jupxp6waofSg==",
"requires": {
"async": "1.5.2",
"chalk": "1.1.3",
"js-yaml": "3.10.0",
"lodash": "3.10.1",
"nopt": "3.0.6",
"tree-kill": "1.2.0"
},
"dependencies": {
"ansi-regex": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
"integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8="
},
"ansi-styles": {
"version": "2.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
"integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4="
},
"chalk": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
"integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
"requires": {
"ansi-styles": "2.2.1",
"escape-string-regexp": "1.0.5",
"has-ansi": "2.0.0",
"strip-ansi": "3.0.1",
"supports-color": "2.0.0"
}
},
"has-ansi": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz",
"integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=",
"requires": {
"ansi-regex": "2.1.1"
}
},
"lodash": {
"version": "3.10.1",
"resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz",
"integrity": "sha1-W/Rejkm6QYnhfUgnid/RW9FAt7Y="
},
"nopt": {
"version": "3.0.6",
"resolved": "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz",
"integrity": "sha1-xkZdvwirzU2zWTF/eaxopkayj/k=",
"requires": {
"abbrev": "1.1.1"
}
},
"strip-ansi": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
"integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
"requires": {
"ansi-regex": "2.1.1"
}
},
"supports-color": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
"integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc="
}
}
},
"builtin-modules": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz",
@ -4069,6 +4145,11 @@
}
}
},
"tagger": {
"version": "0.1.2",
"resolved": "https://registry.npmjs.org/tagger/-/tagger-0.1.2.tgz",
"integrity": "sha1-K0ZDWgdvEn359ZglN/PX9K5AH/k="
},
"tar": {
"version": "2.2.1",
"resolved": "https://registry.npmjs.org/tar/-/tar-2.2.1.tgz",
@ -4354,6 +4435,11 @@
}
}
},
"webber": {
"version": "0.0.1",
"resolved": "https://registry.npmjs.org/webber/-/webber-0.0.1.tgz",
"integrity": "sha1-u1Nt4g0OmS6Noj7KM/5O3/LEZHY="
},
"websocket-driver": {
"version": "0.7.0",
"resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.0.tgz",

View File

@ -1,5 +1,6 @@
{
"dependencies": {
"builder": "^3.2.3",
"concurrently": "^3.5.1",
"fs-extra": "^4.0.2",
"html-minifier": "^3.5.7",
@ -7,7 +8,9 @@
"markdown-it": "^8.4.0",
"node-sass": "^4.7.2",
"nodemon": "^1.12.1",
"semistandard": "^11.0.0"
"semistandard": "^11.0.0",
"tagger": "^0.1.2",
"webber": "0.0.1"
},
"name": "30-seconds-of-code",
"description": "A collection of useful Javascript snippets.",

734
yarn.lock

File diff suppressed because it is too large Load Diff