Project files
This commit is contained in:
21
receipeServer/frontend_old/node_modules/@wry/equality/LICENSE
generated
vendored
Normal file
21
receipeServer/frontend_old/node_modules/@wry/equality/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/equality/README.md
generated
vendored
Normal file
4
receipeServer/frontend_old/node_modules/@wry/equality/README.md
generated
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
# @wry/equality
|
||||
|
||||
Structural equality checking for JavaScript values, with correct handling
|
||||
of cyclic references, and minimal bundle size.
|
||||
32
receipeServer/frontend_old/node_modules/@wry/equality/package.json
generated
vendored
Normal file
32
receipeServer/frontend_old/node_modules/@wry/equality/package.json
generated
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"name": "@wry/equality",
|
||||
"version": "0.1.11",
|
||||
"author": "Ben Newman <ben@eloper.dev>",
|
||||
"description": "Structural equality checking for JavaScript values",
|
||||
"license": "MIT",
|
||||
"main": "lib/equality.js",
|
||||
"module": "lib/equality.esm.js",
|
||||
"types": "lib/equality.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": {
|
||||
"tslib": "^1.9.3"
|
||||
},
|
||||
"gitHead": "925e08dec81c57f9557e61f9b5153f349c1a5896"
|
||||
}
|
||||
40
receipeServer/frontend_old/node_modules/@wry/equality/rollup.config.js
generated
vendored
Normal file
40
receipeServer/frontend_old/node_modules/@wry/equality/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/equality.ts",
|
||||
external,
|
||||
output: {
|
||||
file: "lib/equality.esm.js",
|
||||
format: "esm",
|
||||
sourcemap: true,
|
||||
globals,
|
||||
},
|
||||
plugins: [
|
||||
typescriptPlugin({
|
||||
typescript,
|
||||
tsconfig: "./tsconfig.rollup.json",
|
||||
}),
|
||||
],
|
||||
}, {
|
||||
input: "lib/equality.esm.js",
|
||||
external,
|
||||
output: {
|
||||
// Intentionally overwrite the equality.js file written by tsc:
|
||||
file: "lib/equality.js",
|
||||
format: "cjs",
|
||||
exports: "named",
|
||||
sourcemap: true,
|
||||
name: "equality",
|
||||
globals,
|
||||
},
|
||||
}];
|
||||
7
receipeServer/frontend_old/node_modules/@wry/equality/tsconfig.json
generated
vendored
Normal file
7
receipeServer/frontend_old/node_modules/@wry/equality/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/equality/tsconfig.rollup.json
generated
vendored
Normal file
6
receipeServer/frontend_old/node_modules/@wry/equality/tsconfig.rollup.json
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"extends": "./tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"module": "es2015",
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user