Comparing version
@@ -7,11 +7,12 @@ /** | ||
* | ||
* All the tools provided by Deleight are thin wrappers around regular JavaScript. | ||
* All the tools provided by Deleight are lightweight so that you can mix freely | ||
* with regular JavaScript. | ||
* With Deleight, you write regular JavaScript (or TypeScript) apps and reach for | ||
* the tools when you need them. Deleight does not enforce a way to build apps, but | ||
* instead help you to build well structured and easy-to-maintain apps naturally. | ||
* instead helps you to build well structured and easy-to-maintain apps naturally. | ||
* | ||
* There is no mental overhead to using Deleight and there is no learning curve. | ||
* You can learn and use any part of Deleight entirely on their own. Therefore | ||
* You can learn and use any part of Deleight entirely on its own. Therefore | ||
* you can immediately see gains in expressiveness from the moment you bring the | ||
* library into your project. Deleight is a library but has all the usefulness of | ||
* library into your project. Deleight is a library but has all the benefits of | ||
* a framework. | ||
@@ -27,5 +28,5 @@ * | ||
* with plain JavaScript | ||
* - Your projects will be very comprehensibe and fun to maintain | ||
* - Your projects will be comprehensible and fun to maintain | ||
* - Deleight itself is easy to maintain because of the architecture. It will likely | ||
* be relevant for a very long time. | ||
* be relevant for a long time. | ||
* | ||
@@ -32,0 +33,0 @@ * Module Guide. |
@@ -8,11 +8,12 @@ "use strict"; | ||
* | ||
* All the tools provided by Deleight are thin wrappers around regular JavaScript. | ||
* All the tools provided by Deleight are lightweight so that you can mix freely | ||
* with regular JavaScript. | ||
* With Deleight, you write regular JavaScript (or TypeScript) apps and reach for | ||
* the tools when you need them. Deleight does not enforce a way to build apps, but | ||
* instead help you to build well structured and easy-to-maintain apps naturally. | ||
* instead helps you to build well structured and easy-to-maintain apps naturally. | ||
* | ||
* There is no mental overhead to using Deleight and there is no learning curve. | ||
* You can learn and use any part of Deleight entirely on their own. Therefore | ||
* You can learn and use any part of Deleight entirely on its own. Therefore | ||
* you can immediately see gains in expressiveness from the moment you bring the | ||
* library into your project. Deleight is a library but has all the usefulness of | ||
* library into your project. Deleight is a library but has all the benefits of | ||
* a framework. | ||
@@ -28,5 +29,5 @@ * | ||
* with plain JavaScript | ||
* - Your projects will be very comprehensibe and fun to maintain | ||
* - Your projects will be comprehensible and fun to maintain | ||
* - Deleight itself is easy to maintain because of the architecture. It will likely | ||
* be relevant for a very long time. | ||
* be relevant for a long time. | ||
* | ||
@@ -33,0 +34,0 @@ * Module Guide. |
@@ -25,3 +25,3 @@ import { IKey, IReturns } from "../../../types.js"; | ||
* @example | ||
* import { set, M } from 'deleight/object/members/shared' | ||
* import { set, M } from 'deleight/object/sharedmember' | ||
* let obj1 = { a: 20, b: 2, c: 20}, obj2 = { a: 1, b: 20, c: 3}; | ||
@@ -44,3 +44,3 @@ * const objects = { a: [obj1], b: [obj2], c: [obj1] }; | ||
* @example | ||
* import { get } from 'deleight/object/members/shared' | ||
* import { get } from 'deleight/object/sharedmember' | ||
* let obj1 = { a: 1, b: 2, c: 3 }, obj2 = { a: 1, b: 2, c: 3 }; | ||
@@ -58,3 +58,3 @@ * const objects = { a: [obj1], b: [obj2], c: [obj1] }; | ||
* @example | ||
* import { set } from 'deleight/object/members/shared' | ||
* import { set } from 'deleight/object/sharedmember' | ||
* let obj1 = { a: 1, b: 2, c: 3 }, obj2 = { a: 1, b: 2, c: 3 }; | ||
@@ -74,3 +74,3 @@ * const objects = { a: [obj1], b: [obj2], c: [obj1] }; | ||
* @example | ||
* import { call } from 'deleight/object/members/shared' | ||
* import { call } from 'deleight/object/sharedmember' | ||
* let arr1 = [1, 2, 3], arr2 = [1, 2, 3], arr3 = [1, 2, 3]; | ||
@@ -91,3 +91,3 @@ * const objects = { push: [arr1, arr3], unshift: [arr2] }; | ||
* @example | ||
* import { del } from 'deleight/object/members/shared' | ||
* import { del } from 'deleight/object/sharedmember' | ||
* let obj1 = { a: 1, b: 2, c: 3 }, obj2 = { a: 1, b: 2, c: 3 }; | ||
@@ -94,0 +94,0 @@ * del({ a: [obj1], b: [obj2], c: [obj1] }); |
@@ -21,3 +21,3 @@ "use strict"; | ||
* @example | ||
* import { set, M } from 'deleight/object/members/shared' | ||
* import { set, M } from 'deleight/object/sharedmember' | ||
* let obj1 = { a: 20, b: 2, c: 20}, obj2 = { a: 1, b: 20, c: 3}; | ||
@@ -43,3 +43,3 @@ * const objects = { a: [obj1], b: [obj2], c: [obj1] }; | ||
* @example | ||
* import { get } from 'deleight/object/members/shared' | ||
* import { get } from 'deleight/object/sharedmember' | ||
* let obj1 = { a: 1, b: 2, c: 3 }, obj2 = { a: 1, b: 2, c: 3 }; | ||
@@ -77,3 +77,3 @@ * const objects = { a: [obj1], b: [obj2], c: [obj1] }; | ||
* @example | ||
* import { set } from 'deleight/object/members/shared' | ||
* import { set } from 'deleight/object/sharedmember' | ||
* let obj1 = { a: 1, b: 2, c: 3 }, obj2 = { a: 1, b: 2, c: 3 }; | ||
@@ -108,3 +108,3 @@ * const objects = { a: [obj1], b: [obj2], c: [obj1] }; | ||
* @example | ||
* import { call } from 'deleight/object/members/shared' | ||
* import { call } from 'deleight/object/sharedmember' | ||
* let arr1 = [1, 2, 3], arr2 = [1, 2, 3], arr3 = [1, 2, 3]; | ||
@@ -137,3 +137,3 @@ * const objects = { push: [arr1, arr3], unshift: [arr2] }; | ||
* @example | ||
* import { del } from 'deleight/object/members/shared' | ||
* import { del } from 'deleight/object/sharedmember' | ||
* let obj1 = { a: 1, b: 2, c: 3 }, obj2 = { a: 1, b: 2, c: 3 }; | ||
@@ -140,0 +140,0 @@ * del({ a: [obj1], b: [obj2], c: [obj1] }); |
@@ -7,11 +7,12 @@ /** | ||
* | ||
* All the tools provided by Deleight are thin wrappers around regular JavaScript. | ||
* All the tools provided by Deleight are lightweight so that you can mix freely | ||
* with regular JavaScript. | ||
* With Deleight, you write regular JavaScript (or TypeScript) apps and reach for | ||
* the tools when you need them. Deleight does not enforce a way to build apps, but | ||
* instead help you to build well structured and easy-to-maintain apps naturally. | ||
* instead helps you to build well structured and easy-to-maintain apps naturally. | ||
* | ||
* There is no mental overhead to using Deleight and there is no learning curve. | ||
* You can learn and use any part of Deleight entirely on their own. Therefore | ||
* You can learn and use any part of Deleight entirely on its own. Therefore | ||
* you can immediately see gains in expressiveness from the moment you bring the | ||
* library into your project. Deleight is a library but has all the usefulness of | ||
* library into your project. Deleight is a library but has all the benefits of | ||
* a framework. | ||
@@ -27,5 +28,5 @@ * | ||
* with plain JavaScript | ||
* - Your projects will be very comprehensibe and fun to maintain | ||
* - Your projects will be comprehensible and fun to maintain | ||
* - Deleight itself is easy to maintain because of the architecture. It will likely | ||
* be relevant for a very long time. | ||
* be relevant for a long time. | ||
* | ||
@@ -32,0 +33,0 @@ * Module Guide. |
@@ -7,11 +7,12 @@ /** | ||
* | ||
* All the tools provided by Deleight are thin wrappers around regular JavaScript. | ||
* All the tools provided by Deleight are lightweight so that you can mix freely | ||
* with regular JavaScript. | ||
* With Deleight, you write regular JavaScript (or TypeScript) apps and reach for | ||
* the tools when you need them. Deleight does not enforce a way to build apps, but | ||
* instead help you to build well structured and easy-to-maintain apps naturally. | ||
* instead helps you to build well structured and easy-to-maintain apps naturally. | ||
* | ||
* There is no mental overhead to using Deleight and there is no learning curve. | ||
* You can learn and use any part of Deleight entirely on their own. Therefore | ||
* You can learn and use any part of Deleight entirely on its own. Therefore | ||
* you can immediately see gains in expressiveness from the moment you bring the | ||
* library into your project. Deleight is a library but has all the usefulness of | ||
* library into your project. Deleight is a library but has all the benefits of | ||
* a framework. | ||
@@ -27,5 +28,5 @@ * | ||
* with plain JavaScript | ||
* - Your projects will be very comprehensibe and fun to maintain | ||
* - Your projects will be comprehensible and fun to maintain | ||
* - Deleight itself is easy to maintain because of the architecture. It will likely | ||
* be relevant for a very long time. | ||
* be relevant for a long time. | ||
* | ||
@@ -32,0 +33,0 @@ * Module Guide. |
@@ -25,3 +25,3 @@ import { IKey, IReturns } from "../../../types.js"; | ||
* @example | ||
* import { set, M } from 'deleight/object/members/shared' | ||
* import { set, M } from 'deleight/object/sharedmember' | ||
* let obj1 = { a: 20, b: 2, c: 20}, obj2 = { a: 1, b: 20, c: 3}; | ||
@@ -44,3 +44,3 @@ * const objects = { a: [obj1], b: [obj2], c: [obj1] }; | ||
* @example | ||
* import { get } from 'deleight/object/members/shared' | ||
* import { get } from 'deleight/object/sharedmember' | ||
* let obj1 = { a: 1, b: 2, c: 3 }, obj2 = { a: 1, b: 2, c: 3 }; | ||
@@ -58,3 +58,3 @@ * const objects = { a: [obj1], b: [obj2], c: [obj1] }; | ||
* @example | ||
* import { set } from 'deleight/object/members/shared' | ||
* import { set } from 'deleight/object/sharedmember' | ||
* let obj1 = { a: 1, b: 2, c: 3 }, obj2 = { a: 1, b: 2, c: 3 }; | ||
@@ -74,3 +74,3 @@ * const objects = { a: [obj1], b: [obj2], c: [obj1] }; | ||
* @example | ||
* import { call } from 'deleight/object/members/shared' | ||
* import { call } from 'deleight/object/sharedmember' | ||
* let arr1 = [1, 2, 3], arr2 = [1, 2, 3], arr3 = [1, 2, 3]; | ||
@@ -91,3 +91,3 @@ * const objects = { push: [arr1, arr3], unshift: [arr2] }; | ||
* @example | ||
* import { del } from 'deleight/object/members/shared' | ||
* import { del } from 'deleight/object/sharedmember' | ||
* let obj1 = { a: 1, b: 2, c: 3 }, obj2 = { a: 1, b: 2, c: 3 }; | ||
@@ -94,0 +94,0 @@ * del({ a: [obj1], b: [obj2], c: [obj1] }); |
@@ -17,3 +17,3 @@ import { ownKeys } from "../own/own.js"; | ||
* @example | ||
* import { set, M } from 'deleight/object/members/shared' | ||
* import { set, M } from 'deleight/object/sharedmember' | ||
* let obj1 = { a: 20, b: 2, c: 20}, obj2 = { a: 1, b: 20, c: 3}; | ||
@@ -38,3 +38,3 @@ * const objects = { a: [obj1], b: [obj2], c: [obj1] }; | ||
* @example | ||
* import { get } from 'deleight/object/members/shared' | ||
* import { get } from 'deleight/object/sharedmember' | ||
* let obj1 = { a: 1, b: 2, c: 3 }, obj2 = { a: 1, b: 2, c: 3 }; | ||
@@ -71,3 +71,3 @@ * const objects = { a: [obj1], b: [obj2], c: [obj1] }; | ||
* @example | ||
* import { set } from 'deleight/object/members/shared' | ||
* import { set } from 'deleight/object/sharedmember' | ||
* let obj1 = { a: 1, b: 2, c: 3 }, obj2 = { a: 1, b: 2, c: 3 }; | ||
@@ -101,3 +101,3 @@ * const objects = { a: [obj1], b: [obj2], c: [obj1] }; | ||
* @example | ||
* import { call } from 'deleight/object/members/shared' | ||
* import { call } from 'deleight/object/sharedmember' | ||
* let arr1 = [1, 2, 3], arr2 = [1, 2, 3], arr3 = [1, 2, 3]; | ||
@@ -129,3 +129,3 @@ * const objects = { push: [arr1, arr3], unshift: [arr2] }; | ||
* @example | ||
* import { del } from 'deleight/object/members/shared' | ||
* import { del } from 'deleight/object/sharedmember' | ||
* let obj1 = { a: 1, b: 2, c: 3 }, obj2 = { a: 1, b: 2, c: 3 }; | ||
@@ -132,0 +132,0 @@ * del({ a: [obj1], b: [obj2], c: [obj1] }); |
{ | ||
"name": "deleight", | ||
"version": "5.0.0", | ||
"version": "5.0.1", | ||
"description": "A library with 9 modules for writing more expressive web applications with traditional HTML, CSS and JavaScript.", | ||
@@ -19,2 +19,18 @@ "type": "module", | ||
}, | ||
"./dom/apply": { | ||
"require": "./dist/cjs/dom/apply/apply.js", | ||
"default": "./dist/esm/dom/apply/apply.js" | ||
}, | ||
"./dom/components": { | ||
"require": "./dist/cjs/dom/components/components.js", | ||
"default": "./dist/esm/dom/components/components.js" | ||
}, | ||
"./dom/fragment": { | ||
"require": "./dist/cjs/dom/fragment/fragment.js", | ||
"default": "./dist/esm/dom/fragment/fragment.js" | ||
}, | ||
"./dom/process": { | ||
"require": "./dist/cjs/dom/process/process.js", | ||
"default": "./dist/esm/dom/process/process.js" | ||
}, | ||
"./function": { | ||
@@ -24,2 +40,10 @@ "require": "./dist/cjs/function/function.js", | ||
}, | ||
"./function/context": { | ||
"require": "./dist/cjs/function/context/context.js", | ||
"default": "./dist/esm/function/context/context.js" | ||
}, | ||
"./function/return": { | ||
"require": "./dist/cjs/function/return/return.js", | ||
"default": "./dist/esm/function/return/return.js" | ||
}, | ||
"./generators": { | ||
@@ -33,2 +57,10 @@ "require": "./dist/cjs/generators/generators.js", | ||
}, | ||
"./lists/array": { | ||
"require": "./dist/cjs/lists/array/array.js", | ||
"default": "./dist/esm/lists/array/array.js" | ||
}, | ||
"./lists/element": { | ||
"require": "./dist/cjs/lists/element/element.js", | ||
"default": "./dist/esm/lists/element/element.js" | ||
}, | ||
"./object": { | ||
@@ -38,2 +70,26 @@ "require": "./dist/cjs/object/object.js", | ||
}, | ||
"./object/apply": { | ||
"require": "./dist/cjs/object/apply/apply.js", | ||
"default": "./dist/esm/object/apply/apply.js" | ||
}, | ||
"./object/deepmember": { | ||
"require": "./dist/cjs/object/member/deep/deep.js", | ||
"default": "./dist/esm/object/member/deep/deep.js" | ||
}, | ||
"./object/member": { | ||
"require": "./dist/cjs/object/member/own/own.js", | ||
"default": "./dist/esm/object/member/own/own.js" | ||
}, | ||
"./object/operations": { | ||
"require": "./dist/cjs/object/operations/operations.js", | ||
"default": "./dist/esm/object/operations/operations.js" | ||
}, | ||
"./object/process": { | ||
"require": "./dist/cjs/object/process/process.js", | ||
"default": "./dist/esm/object/process/process.js" | ||
}, | ||
"./object/sharedmember": { | ||
"require": "./dist/cjs/object/member/shared/shared.js", | ||
"default": "./dist/esm/object/member/shared/shared.js" | ||
}, | ||
"./process": { | ||
@@ -47,2 +103,18 @@ "require": "./dist/cjs/process/process.js", | ||
}, | ||
"./proxy/alias": { | ||
"require": "./dist/cjs/proxies/alias/alias.js", | ||
"default": "./dist/esm/proxies/alias/alias.js" | ||
}, | ||
"./proxy/scope": { | ||
"require": "./dist/cjs/proxies/scope/scope.js", | ||
"default": "./dist/esm/proxies/scope/scope.js" | ||
}, | ||
"./proxy/selector": { | ||
"require": "./dist/cjs/proxies/selector/selector.js", | ||
"default": "./dist/esm/proxies/selector/selector.js" | ||
}, | ||
"./proxy/wrapper": { | ||
"require": "./dist/cjs/proxies/wrapper/wrapper.js", | ||
"default": "./dist/esm/proxies/wrapper/wrapper.js" | ||
}, | ||
"./template": { | ||
@@ -49,0 +121,0 @@ "require": "./dist/cjs/template/template.js", |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
4
-20%414623
-2.65%139
-2.8%12214
-3.41%