Bump @justinribeiro/lite-youtube from 0.9.0 to 0.9.1 in /build/javascript (#273)

* Commit updated Javascript packages

* Bump preact from 10.5.4 to 10.5.5 in /build/javascript (#265)

* Trying a new github workflow to install javascript packages

* Bump tailwindcss from 1.9.2 to 1.9.4 in /build/javascript (#266)

Bumps [tailwindcss](https://github.com/tailwindlabs/tailwindcss) from 1.9.2 to 1.9.4.
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/master/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/compare/v1.9.2...v1.9.4)

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Commit updated Javascript packages

* Bump preact from 10.5.4 to 10.5.5 in /build/javascript

Bumps [preact](https://github.com/preactjs/preact) from 10.5.4 to 10.5.5.
- [Release notes](https://github.com/preactjs/preact/releases)
- [Commits](https://github.com/preactjs/preact/compare/10.5.4...10.5.5)

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: Gabe Kangas <gabek@real-ity.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Owncast <owncast@owncast.online>

* Bump @justinribeiro/lite-youtube in /build/javascript

Bumps [@justinribeiro/lite-youtube](https://github.com/justinribeiro/lite-youtube) from 0.9.0 to 0.9.1.
- [Release notes](https://github.com/justinribeiro/lite-youtube/releases)
- [Commits](https://github.com/justinribeiro/lite-youtube/commits)

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: Owncast <owncast@owncast.online>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Gabe Kangas <gabek@real-ity.com>
This commit is contained in:
dependabot[bot]
2020-10-20 15:15:56 -07:00
committed by GitHub
parent fb4a822cd8
commit dab7914eab
6133 changed files with 546543 additions and 1108 deletions

4
build/javascript/node_modules/individual/.npmignore generated vendored Normal file
View File

@@ -0,0 +1,4 @@
node_modules
*.log
*.err
coverage

7
build/javascript/node_modules/individual/.travis.yml generated vendored Normal file
View File

@@ -0,0 +1,7 @@
language: node_js
node_js:
- "0.8"
- "0.10"
- "0.11"
before_install: npm i npm@latest -g
script: npm run travis

19
build/javascript/node_modules/individual/LICENCE generated vendored Normal file
View File

@@ -0,0 +1,19 @@
Copyright (c) 2012 Raynos.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

69
build/javascript/node_modules/individual/README.md generated vendored Normal file
View File

@@ -0,0 +1,69 @@
# individual
[![build status][build-png]][build] [![Coverage Status][cover-png]][cover] [![Davis Dependency status][dep-png]][dep]
[![NPM][npm-png]][npm]
[![browser support][test-png]][test]
Garantueed individual values
## Example
```js
var Individual = require("individual")
var moduleCache = Individual("__MY_MODULE_CACHE", {})
// moduleCache is a individual variable local to this file.
// It will always be the same value and defaults to {}.
```
This gives you a singleton value by a unique name (it stores it
as a global variable).
## Use cases
Your module has an internal cache. If your module is loaded
twice, (someone didn't npm dedup and has two copies of your
module) you would have two seperate caches that dont talk
to each other.
Best case your cache is less efficient. Worst case you have a
cache because the native C++ extension you talk to crashes
if you instantiate something twice.
You need a garantuee that this value is an individual, there is
only one of it.
I use it myself because opening a SockJS websocket to the same
URI twice causes an infinite loop. I need a garantuee that
I have an individual value for the SockJS connection so I
can see whether I already have an open connection.
## WHY GLOBALS >:(
I can't imagine any other way to do it. I hate it too. Make a
pull request if you know the real solution
## Installation
`npm install individual`
## Contributors
- Raynos
## MIT Licenced
[build-png]: https://secure.travis-ci.org/Raynos/individual.png
[build]: https://travis-ci.org/Raynos/individual
[cover-png]: https://coveralls.io/repos/Raynos/individual/badge.png
[cover]: https://coveralls.io/r/Raynos/individual
[dep-png]: https://david-dm.org/Raynos/individual.png
[dep]: https://david-dm.org/Raynos/individual
[test-png]: https://ci.testling.com/Raynos/individual.png
[test]: https://ci.testling.com/Raynos/individual
[npm-png]: https://nodei.co/npm/individual.png?stars&downloads
[npm]: https://nodei.co/npm/individual

18
build/javascript/node_modules/individual/index.js generated vendored Normal file
View File

@@ -0,0 +1,18 @@
var root = typeof window !== 'undefined' ?
window : typeof global !== 'undefined' ?
global : {};
module.exports = Individual
function Individual(key, value) {
if (root[key]) {
return root[key]
}
Object.defineProperty(root, key, {
value: value
, configurable: true
})
return value
}

87
build/javascript/node_modules/individual/package.json generated vendored Normal file
View File

@@ -0,0 +1,87 @@
{
"_args": [
[
"individual@2.0.0",
"/home/runner/work/owncast/owncast/build/javascript"
]
],
"_from": "individual@2.0.0",
"_id": "individual@2.0.0",
"_inBundle": false,
"_integrity": "sha1-gzsJfa0jKU52EXqY+zjg2a1hu5c=",
"_location": "/individual",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "individual@2.0.0",
"name": "individual",
"escapedName": "individual",
"rawSpec": "2.0.0",
"saveSpec": null,
"fetchSpec": "2.0.0"
},
"_requiredBy": [
"/rust-result"
],
"_resolved": "https://registry.npmjs.org/individual/-/individual-2.0.0.tgz",
"_spec": "2.0.0",
"_where": "/home/runner/work/owncast/owncast/build/javascript",
"author": {
"name": "Raynos",
"email": "raynos2@gmail.com"
},
"bugs": {
"url": "https://github.com/Raynos/individual/issues",
"email": "raynos2@gmail.com"
},
"contributors": [
{
"name": "Jake Verbaten"
}
],
"dependencies": {},
"description": "Garantueed individual values",
"devDependencies": {
"coveralls": "^2.10.0",
"istanbul": "^0.2.7",
"run-browser": "^1.3.1",
"tape": "^2.12.3"
},
"homepage": "https://github.com/Raynos/individual",
"keywords": [],
"licenses": [
{
"type": "MIT",
"url": "http://github.com/Raynos/individual/raw/master/LICENSE"
}
],
"main": "index",
"name": "individual",
"repository": {
"type": "git",
"url": "git://github.com/Raynos/individual.git"
},
"scripts": {
"cover": "istanbul cover --report none --print detail test.js",
"test": "node test.js",
"travis": "npm run cover -s && istanbul report lcov && ((cat coverage/lcov.info | coveralls) || exit 0)"
},
"testling": {
"files": "test.js",
"browsers": [
"ie/8..latest",
"firefox/16..latest",
"firefox/nightly",
"chrome/22..latest",
"chrome/canary",
"opera/12..latest",
"opera/next",
"safari/5.1..latest",
"ipad/6.0..latest",
"iphone/6.0..latest",
"android-browser/4.2..latest"
]
},
"version": "2.0.0"
}

25
build/javascript/node_modules/individual/test.js generated vendored Normal file
View File

@@ -0,0 +1,25 @@
var test = require('tape');
var Individual = require('./index.js');
test('can create Individual', function (assert) {
var obj = Individual('someName', 42);
assert.equal(obj, 42);
var obj2 = Individual('someName', 50);
assert.equal(obj, 42);
assert.end();
});
test('different keys', function (assert) {
var obj = Individual('someName2', 42);
var obj2 = Individual('otherName2', 50);
assert.equal(obj, 42);
assert.equal(obj2, 50);
assert.end();
});