Project files
This commit is contained in:
21
receipeServer/frontend_old/node_modules/@wry/context/LICENSE
generated
vendored
Normal file
21
receipeServer/frontend_old/node_modules/@wry/context/LICENSE
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2019 Ben Newman
|
||||
|
||||
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.
|
||||
4
receipeServer/frontend_old/node_modules/@wry/context/README.md
generated
vendored
Normal file
4
receipeServer/frontend_old/node_modules/@wry/context/README.md
generated
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
# @wry/context
|
||||
|
||||
Manage contextual information needed by synchronous or asynchronous
|
||||
tasks without explicitly passing objects around.
|
||||
33
receipeServer/frontend_old/node_modules/@wry/context/package.json
generated
vendored
Normal file
33
receipeServer/frontend_old/node_modules/@wry/context/package.json
generated
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"name": "@wry/context",
|
||||
"version": "0.4.4",
|
||||
"author": "Ben Newman <ben@eloper.dev>",
|
||||
"description": "Manage contextual information needed by (a)synchronous tasks without explicitly passing objects around",
|
||||
"license": "MIT",
|
||||
"main": "lib/context.js",
|
||||
"module": "lib/context.esm.js",
|
||||
"types": "lib/context.d.ts",
|
||||
"keywords": [],
|
||||
"homepage": "https://github.com/benjamn/wryware",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/benjamn/wryware.git"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/benjamn/wryware/issues"
|
||||
},
|
||||
"scripts": {
|
||||
"clean": "../../node_modules/.bin/rimraf lib",
|
||||
"tsc": "../../node_modules/.bin/tsc",
|
||||
"rollup": "../../node_modules/.bin/rollup -c",
|
||||
"build": "npm run clean && npm run tsc && npm run rollup",
|
||||
"mocha": "../../scripts/test.sh lib/tests.js",
|
||||
"prepublish": "npm run build",
|
||||
"test": "npm run build && npm run mocha"
|
||||
},
|
||||
"dependencies": {
|
||||
"@types/node": ">=6",
|
||||
"tslib": "^1.9.3"
|
||||
},
|
||||
"gitHead": "50e7d6181b0b937ad54b543118e823ad98e2bca9"
|
||||
}
|
||||
40
receipeServer/frontend_old/node_modules/@wry/context/rollup.config.js
generated
vendored
Normal file
40
receipeServer/frontend_old/node_modules/@wry/context/rollup.config.js
generated
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
import typescriptPlugin from 'rollup-plugin-typescript2';
|
||||
import typescript from 'typescript';
|
||||
|
||||
const globals = {
|
||||
__proto__: null,
|
||||
tslib: "tslib",
|
||||
};
|
||||
|
||||
function external(id) {
|
||||
return id in globals;
|
||||
}
|
||||
|
||||
export default [{
|
||||
input: "src/context.ts",
|
||||
external,
|
||||
output: {
|
||||
file: "lib/context.esm.js",
|
||||
format: "esm",
|
||||
sourcemap: true,
|
||||
globals,
|
||||
},
|
||||
plugins: [
|
||||
typescriptPlugin({
|
||||
typescript,
|
||||
tsconfig: "./tsconfig.rollup.json",
|
||||
}),
|
||||
],
|
||||
}, {
|
||||
input: "lib/context.esm.js",
|
||||
external,
|
||||
output: {
|
||||
// Intentionally overwrite the context.js file written by tsc:
|
||||
file: "lib/context.js",
|
||||
format: "cjs",
|
||||
exports: "named",
|
||||
sourceMap: true,
|
||||
name: "context",
|
||||
globals,
|
||||
},
|
||||
}];
|
||||
7
receipeServer/frontend_old/node_modules/@wry/context/tsconfig.json
generated
vendored
Normal file
7
receipeServer/frontend_old/node_modules/@wry/context/tsconfig.json
generated
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"extends": "../../tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"rootDir": "./src",
|
||||
"outDir": "./lib"
|
||||
}
|
||||
}
|
||||
6
receipeServer/frontend_old/node_modules/@wry/context/tsconfig.rollup.json
generated
vendored
Normal file
6
receipeServer/frontend_old/node_modules/@wry/context/tsconfig.rollup.json
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"extends": "./tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"module": "es2015",
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user