@min-pack/sharp-x86-64-v1 0.33.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +191 -0
- package/README.md +6 -0
- package/index.js +1 -0
- package/package.json +7 -0
- package/pkg/lib/channel.js +174 -0
- package/pkg/lib/colour.js +180 -0
- package/pkg/lib/composite.js +210 -0
- package/pkg/lib/constructor.js +452 -0
- package/pkg/lib/index.js +16 -0
- package/pkg/lib/input.js +658 -0
- package/pkg/lib/is.js +169 -0
- package/pkg/lib/libvips.js +203 -0
- package/pkg/lib/operation.js +958 -0
- package/pkg/lib/output.js +1587 -0
- package/pkg/lib/resize.js +587 -0
- package/pkg/lib/sharp.js +114 -0
- package/pkg/lib/utility.js +296 -0
- package/pkg/node_modules/@img/sharp-libvips-linux-x64/lib/index.js +1 -0
- package/pkg/node_modules/@img/sharp-libvips-linux-x64/lib/libvips-cpp.so.42 +0 -0
- package/pkg/node_modules/@img/sharp-libvips-linux-x64/package.json +42 -0
- package/pkg/node_modules/@img/sharp-libvips-linux-x64/versions.json +30 -0
- package/pkg/node_modules/@img/sharp-libvips-linuxmusl-x64/lib/index.js +1 -0
- package/pkg/node_modules/@img/sharp-libvips-linuxmusl-x64/lib/libvips-cpp.so.42 +0 -0
- package/pkg/node_modules/@img/sharp-libvips-linuxmusl-x64/package.json +42 -0
- package/pkg/node_modules/@img/sharp-libvips-linuxmusl-x64/versions.json +30 -0
- package/pkg/node_modules/@img/sharp-linux-x64/LICENSE +191 -0
- package/pkg/node_modules/@img/sharp-linux-x64/lib/sharp-linux-x64.node +0 -0
- package/pkg/node_modules/@img/sharp-linux-x64/package.json +46 -0
- package/pkg/node_modules/@img/sharp-linuxmusl-x64/LICENSE +191 -0
- package/pkg/node_modules/@img/sharp-linuxmusl-x64/lib/sharp-linuxmusl-x64.node +0 -0
- package/pkg/node_modules/@img/sharp-linuxmusl-x64/package.json +46 -0
- package/pkg/node_modules/color/LICENSE +21 -0
- package/pkg/node_modules/color/index.js +496 -0
- package/pkg/node_modules/color/package.json +47 -0
- package/pkg/node_modules/color-convert/LICENSE +21 -0
- package/pkg/node_modules/color-convert/conversions.js +839 -0
- package/pkg/node_modules/color-convert/index.js +81 -0
- package/pkg/node_modules/color-convert/package.json +48 -0
- package/pkg/node_modules/color-convert/route.js +97 -0
- package/pkg/node_modules/color-name/LICENSE +8 -0
- package/pkg/node_modules/color-name/index.js +152 -0
- package/pkg/node_modules/color-name/package.json +28 -0
- package/pkg/node_modules/color-string/LICENSE +21 -0
- package/pkg/node_modules/color-string/index.js +242 -0
- package/pkg/node_modules/color-string/package.json +39 -0
- package/pkg/node_modules/detect-libc/LICENSE +201 -0
- package/pkg/node_modules/detect-libc/lib/detect-libc.js +313 -0
- package/pkg/node_modules/detect-libc/lib/elf.js +39 -0
- package/pkg/node_modules/detect-libc/lib/filesystem.js +51 -0
- package/pkg/node_modules/detect-libc/lib/process.js +24 -0
- package/pkg/node_modules/detect-libc/package.json +44 -0
- package/pkg/node_modules/is-arrayish/LICENSE +21 -0
- package/pkg/node_modules/is-arrayish/index.js +9 -0
- package/pkg/node_modules/is-arrayish/package.json +45 -0
- package/pkg/node_modules/semver/LICENSE +15 -0
- package/pkg/node_modules/semver/bin/semver.js +191 -0
- package/pkg/node_modules/semver/classes/comparator.js +143 -0
- package/pkg/node_modules/semver/classes/index.js +7 -0
- package/pkg/node_modules/semver/classes/range.js +557 -0
- package/pkg/node_modules/semver/classes/semver.js +333 -0
- package/pkg/node_modules/semver/functions/clean.js +8 -0
- package/pkg/node_modules/semver/functions/cmp.js +54 -0
- package/pkg/node_modules/semver/functions/coerce.js +62 -0
- package/pkg/node_modules/semver/functions/compare-build.js +9 -0
- package/pkg/node_modules/semver/functions/compare-loose.js +5 -0
- package/pkg/node_modules/semver/functions/compare.js +7 -0
- package/pkg/node_modules/semver/functions/diff.js +60 -0
- package/pkg/node_modules/semver/functions/eq.js +5 -0
- package/pkg/node_modules/semver/functions/gt.js +5 -0
- package/pkg/node_modules/semver/functions/gte.js +5 -0
- package/pkg/node_modules/semver/functions/inc.js +21 -0
- package/pkg/node_modules/semver/functions/lt.js +5 -0
- package/pkg/node_modules/semver/functions/lte.js +5 -0
- package/pkg/node_modules/semver/functions/major.js +5 -0
- package/pkg/node_modules/semver/functions/minor.js +5 -0
- package/pkg/node_modules/semver/functions/neq.js +5 -0
- package/pkg/node_modules/semver/functions/parse.js +18 -0
- package/pkg/node_modules/semver/functions/patch.js +5 -0
- package/pkg/node_modules/semver/functions/prerelease.js +8 -0
- package/pkg/node_modules/semver/functions/rcompare.js +5 -0
- package/pkg/node_modules/semver/functions/rsort.js +5 -0
- package/pkg/node_modules/semver/functions/satisfies.js +12 -0
- package/pkg/node_modules/semver/functions/sort.js +5 -0
- package/pkg/node_modules/semver/functions/valid.js +8 -0
- package/pkg/node_modules/semver/index.js +91 -0
- package/pkg/node_modules/semver/internal/constants.js +37 -0
- package/pkg/node_modules/semver/internal/debug.js +11 -0
- package/pkg/node_modules/semver/internal/identifiers.js +29 -0
- package/pkg/node_modules/semver/internal/lrucache.js +42 -0
- package/pkg/node_modules/semver/internal/parse-options.js +17 -0
- package/pkg/node_modules/semver/internal/re.js +223 -0
- package/pkg/node_modules/semver/package.json +78 -0
- package/pkg/node_modules/semver/preload.js +4 -0
- package/pkg/node_modules/semver/range.bnf +16 -0
- package/pkg/node_modules/semver/ranges/gtr.js +6 -0
- package/pkg/node_modules/semver/ranges/intersects.js +9 -0
- package/pkg/node_modules/semver/ranges/ltr.js +6 -0
- package/pkg/node_modules/semver/ranges/max-satisfying.js +27 -0
- package/pkg/node_modules/semver/ranges/min-satisfying.js +26 -0
- package/pkg/node_modules/semver/ranges/min-version.js +63 -0
- package/pkg/node_modules/semver/ranges/outside.js +82 -0
- package/pkg/node_modules/semver/ranges/simplify.js +49 -0
- package/pkg/node_modules/semver/ranges/subset.js +249 -0
- package/pkg/node_modules/semver/ranges/to-comparators.js +10 -0
- package/pkg/node_modules/semver/ranges/valid.js +13 -0
- package/pkg/node_modules/simple-swizzle/LICENSE +21 -0
- package/pkg/node_modules/simple-swizzle/index.js +29 -0
- package/pkg/node_modules/simple-swizzle/package.json +36 -0
- package/pkg/package.json +24 -0
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
'use strict'
|
|
2
|
+
|
|
3
|
+
const SemVer = require('../classes/semver')
|
|
4
|
+
const Range = require('../classes/range')
|
|
5
|
+
const gt = require('../functions/gt')
|
|
6
|
+
|
|
7
|
+
const minVersion = (range, loose) => {
|
|
8
|
+
range = new Range(range, loose)
|
|
9
|
+
|
|
10
|
+
let minver = new SemVer('0.0.0')
|
|
11
|
+
if (range.test(minver)) {
|
|
12
|
+
return minver
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
minver = new SemVer('0.0.0-0')
|
|
16
|
+
if (range.test(minver)) {
|
|
17
|
+
return minver
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
minver = null
|
|
21
|
+
for (let i = 0; i < range.set.length; ++i) {
|
|
22
|
+
const comparators = range.set[i]
|
|
23
|
+
|
|
24
|
+
let setMin = null
|
|
25
|
+
comparators.forEach((comparator) => {
|
|
26
|
+
// Clone to avoid manipulating the comparator's semver object.
|
|
27
|
+
const compver = new SemVer(comparator.semver.version)
|
|
28
|
+
switch (comparator.operator) {
|
|
29
|
+
case '>':
|
|
30
|
+
if (compver.prerelease.length === 0) {
|
|
31
|
+
compver.patch++
|
|
32
|
+
} else {
|
|
33
|
+
compver.prerelease.push(0)
|
|
34
|
+
}
|
|
35
|
+
compver.raw = compver.format()
|
|
36
|
+
/* fallthrough */
|
|
37
|
+
case '':
|
|
38
|
+
case '>=':
|
|
39
|
+
if (!setMin || gt(compver, setMin)) {
|
|
40
|
+
setMin = compver
|
|
41
|
+
}
|
|
42
|
+
break
|
|
43
|
+
case '<':
|
|
44
|
+
case '<=':
|
|
45
|
+
/* Ignore maximum versions */
|
|
46
|
+
break
|
|
47
|
+
/* istanbul ignore next */
|
|
48
|
+
default:
|
|
49
|
+
throw new Error(`Unexpected operation: ${comparator.operator}`)
|
|
50
|
+
}
|
|
51
|
+
})
|
|
52
|
+
if (setMin && (!minver || gt(minver, setMin))) {
|
|
53
|
+
minver = setMin
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
if (minver && range.test(minver)) {
|
|
58
|
+
return minver
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
return null
|
|
62
|
+
}
|
|
63
|
+
module.exports = minVersion
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
'use strict'
|
|
2
|
+
|
|
3
|
+
const SemVer = require('../classes/semver')
|
|
4
|
+
const Comparator = require('../classes/comparator')
|
|
5
|
+
const { ANY } = Comparator
|
|
6
|
+
const Range = require('../classes/range')
|
|
7
|
+
const satisfies = require('../functions/satisfies')
|
|
8
|
+
const gt = require('../functions/gt')
|
|
9
|
+
const lt = require('../functions/lt')
|
|
10
|
+
const lte = require('../functions/lte')
|
|
11
|
+
const gte = require('../functions/gte')
|
|
12
|
+
|
|
13
|
+
const outside = (version, range, hilo, options) => {
|
|
14
|
+
version = new SemVer(version, options)
|
|
15
|
+
range = new Range(range, options)
|
|
16
|
+
|
|
17
|
+
let gtfn, ltefn, ltfn, comp, ecomp
|
|
18
|
+
switch (hilo) {
|
|
19
|
+
case '>':
|
|
20
|
+
gtfn = gt
|
|
21
|
+
ltefn = lte
|
|
22
|
+
ltfn = lt
|
|
23
|
+
comp = '>'
|
|
24
|
+
ecomp = '>='
|
|
25
|
+
break
|
|
26
|
+
case '<':
|
|
27
|
+
gtfn = lt
|
|
28
|
+
ltefn = gte
|
|
29
|
+
ltfn = gt
|
|
30
|
+
comp = '<'
|
|
31
|
+
ecomp = '<='
|
|
32
|
+
break
|
|
33
|
+
default:
|
|
34
|
+
throw new TypeError('Must provide a hilo val of "<" or ">"')
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
// If it satisfies the range it is not outside
|
|
38
|
+
if (satisfies(version, range, options)) {
|
|
39
|
+
return false
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
// From now on, variable terms are as if we're in "gtr" mode.
|
|
43
|
+
// but note that everything is flipped for the "ltr" function.
|
|
44
|
+
|
|
45
|
+
for (let i = 0; i < range.set.length; ++i) {
|
|
46
|
+
const comparators = range.set[i]
|
|
47
|
+
|
|
48
|
+
let high = null
|
|
49
|
+
let low = null
|
|
50
|
+
|
|
51
|
+
comparators.forEach((comparator) => {
|
|
52
|
+
if (comparator.semver === ANY) {
|
|
53
|
+
comparator = new Comparator('>=0.0.0')
|
|
54
|
+
}
|
|
55
|
+
high = high || comparator
|
|
56
|
+
low = low || comparator
|
|
57
|
+
if (gtfn(comparator.semver, high.semver, options)) {
|
|
58
|
+
high = comparator
|
|
59
|
+
} else if (ltfn(comparator.semver, low.semver, options)) {
|
|
60
|
+
low = comparator
|
|
61
|
+
}
|
|
62
|
+
})
|
|
63
|
+
|
|
64
|
+
// If the edge version comparator has a operator then our version
|
|
65
|
+
// isn't outside it
|
|
66
|
+
if (high.operator === comp || high.operator === ecomp) {
|
|
67
|
+
return false
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
// If the lowest version comparator has an operator and our version
|
|
71
|
+
// is less than it then it isn't higher than the range
|
|
72
|
+
if ((!low.operator || low.operator === comp) &&
|
|
73
|
+
ltefn(version, low.semver)) {
|
|
74
|
+
return false
|
|
75
|
+
} else if (low.operator === ecomp && ltfn(version, low.semver)) {
|
|
76
|
+
return false
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
return true
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
module.exports = outside
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
'use strict'
|
|
2
|
+
|
|
3
|
+
// given a set of versions and a range, create a "simplified" range
|
|
4
|
+
// that includes the same versions that the original range does
|
|
5
|
+
// If the original range is shorter than the simplified one, return that.
|
|
6
|
+
const satisfies = require('../functions/satisfies.js')
|
|
7
|
+
const compare = require('../functions/compare.js')
|
|
8
|
+
module.exports = (versions, range, options) => {
|
|
9
|
+
const set = []
|
|
10
|
+
let first = null
|
|
11
|
+
let prev = null
|
|
12
|
+
const v = versions.sort((a, b) => compare(a, b, options))
|
|
13
|
+
for (const version of v) {
|
|
14
|
+
const included = satisfies(version, range, options)
|
|
15
|
+
if (included) {
|
|
16
|
+
prev = version
|
|
17
|
+
if (!first) {
|
|
18
|
+
first = version
|
|
19
|
+
}
|
|
20
|
+
} else {
|
|
21
|
+
if (prev) {
|
|
22
|
+
set.push([first, prev])
|
|
23
|
+
}
|
|
24
|
+
prev = null
|
|
25
|
+
first = null
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
if (first) {
|
|
29
|
+
set.push([first, null])
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
const ranges = []
|
|
33
|
+
for (const [min, max] of set) {
|
|
34
|
+
if (min === max) {
|
|
35
|
+
ranges.push(min)
|
|
36
|
+
} else if (!max && min === v[0]) {
|
|
37
|
+
ranges.push('*')
|
|
38
|
+
} else if (!max) {
|
|
39
|
+
ranges.push(`>=${min}`)
|
|
40
|
+
} else if (min === v[0]) {
|
|
41
|
+
ranges.push(`<=${max}`)
|
|
42
|
+
} else {
|
|
43
|
+
ranges.push(`${min} - ${max}`)
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
const simplified = ranges.join(' || ')
|
|
47
|
+
const original = typeof range.raw === 'string' ? range.raw : String(range)
|
|
48
|
+
return simplified.length < original.length ? simplified : range
|
|
49
|
+
}
|
|
@@ -0,0 +1,249 @@
|
|
|
1
|
+
'use strict'
|
|
2
|
+
|
|
3
|
+
const Range = require('../classes/range.js')
|
|
4
|
+
const Comparator = require('../classes/comparator.js')
|
|
5
|
+
const { ANY } = Comparator
|
|
6
|
+
const satisfies = require('../functions/satisfies.js')
|
|
7
|
+
const compare = require('../functions/compare.js')
|
|
8
|
+
|
|
9
|
+
// Complex range `r1 || r2 || ...` is a subset of `R1 || R2 || ...` iff:
|
|
10
|
+
// - Every simple range `r1, r2, ...` is a null set, OR
|
|
11
|
+
// - Every simple range `r1, r2, ...` which is not a null set is a subset of
|
|
12
|
+
// some `R1, R2, ...`
|
|
13
|
+
//
|
|
14
|
+
// Simple range `c1 c2 ...` is a subset of simple range `C1 C2 ...` iff:
|
|
15
|
+
// - If c is only the ANY comparator
|
|
16
|
+
// - If C is only the ANY comparator, return true
|
|
17
|
+
// - Else if in prerelease mode, return false
|
|
18
|
+
// - else replace c with `[>=0.0.0]`
|
|
19
|
+
// - If C is only the ANY comparator
|
|
20
|
+
// - if in prerelease mode, return true
|
|
21
|
+
// - else replace C with `[>=0.0.0]`
|
|
22
|
+
// - Let EQ be the set of = comparators in c
|
|
23
|
+
// - If EQ is more than one, return true (null set)
|
|
24
|
+
// - Let GT be the highest > or >= comparator in c
|
|
25
|
+
// - Let LT be the lowest < or <= comparator in c
|
|
26
|
+
// - If GT and LT, and GT.semver > LT.semver, return true (null set)
|
|
27
|
+
// - If any C is a = range, and GT or LT are set, return false
|
|
28
|
+
// - If EQ
|
|
29
|
+
// - If GT, and EQ does not satisfy GT, return true (null set)
|
|
30
|
+
// - If LT, and EQ does not satisfy LT, return true (null set)
|
|
31
|
+
// - If EQ satisfies every C, return true
|
|
32
|
+
// - Else return false
|
|
33
|
+
// - If GT
|
|
34
|
+
// - If GT.semver is lower than any > or >= comp in C, return false
|
|
35
|
+
// - If GT is >=, and GT.semver does not satisfy every C, return false
|
|
36
|
+
// - If GT.semver has a prerelease, and not in prerelease mode
|
|
37
|
+
// - If no C has a prerelease and the GT.semver tuple, return false
|
|
38
|
+
// - If LT
|
|
39
|
+
// - If LT.semver is greater than any < or <= comp in C, return false
|
|
40
|
+
// - If LT is <=, and LT.semver does not satisfy every C, return false
|
|
41
|
+
// - If GT.semver has a prerelease, and not in prerelease mode
|
|
42
|
+
// - If no C has a prerelease and the LT.semver tuple, return false
|
|
43
|
+
// - Else return true
|
|
44
|
+
|
|
45
|
+
const subset = (sub, dom, options = {}) => {
|
|
46
|
+
if (sub === dom) {
|
|
47
|
+
return true
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
sub = new Range(sub, options)
|
|
51
|
+
dom = new Range(dom, options)
|
|
52
|
+
let sawNonNull = false
|
|
53
|
+
|
|
54
|
+
OUTER: for (const simpleSub of sub.set) {
|
|
55
|
+
for (const simpleDom of dom.set) {
|
|
56
|
+
const isSub = simpleSubset(simpleSub, simpleDom, options)
|
|
57
|
+
sawNonNull = sawNonNull || isSub !== null
|
|
58
|
+
if (isSub) {
|
|
59
|
+
continue OUTER
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
// the null set is a subset of everything, but null simple ranges in
|
|
63
|
+
// a complex range should be ignored. so if we saw a non-null range,
|
|
64
|
+
// then we know this isn't a subset, but if EVERY simple range was null,
|
|
65
|
+
// then it is a subset.
|
|
66
|
+
if (sawNonNull) {
|
|
67
|
+
return false
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
return true
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
const minimumVersionWithPreRelease = [new Comparator('>=0.0.0-0')]
|
|
74
|
+
const minimumVersion = [new Comparator('>=0.0.0')]
|
|
75
|
+
|
|
76
|
+
const simpleSubset = (sub, dom, options) => {
|
|
77
|
+
if (sub === dom) {
|
|
78
|
+
return true
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
if (sub.length === 1 && sub[0].semver === ANY) {
|
|
82
|
+
if (dom.length === 1 && dom[0].semver === ANY) {
|
|
83
|
+
return true
|
|
84
|
+
} else if (options.includePrerelease) {
|
|
85
|
+
sub = minimumVersionWithPreRelease
|
|
86
|
+
} else {
|
|
87
|
+
sub = minimumVersion
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
if (dom.length === 1 && dom[0].semver === ANY) {
|
|
92
|
+
if (options.includePrerelease) {
|
|
93
|
+
return true
|
|
94
|
+
} else {
|
|
95
|
+
dom = minimumVersion
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
const eqSet = new Set()
|
|
100
|
+
let gt, lt
|
|
101
|
+
for (const c of sub) {
|
|
102
|
+
if (c.operator === '>' || c.operator === '>=') {
|
|
103
|
+
gt = higherGT(gt, c, options)
|
|
104
|
+
} else if (c.operator === '<' || c.operator === '<=') {
|
|
105
|
+
lt = lowerLT(lt, c, options)
|
|
106
|
+
} else {
|
|
107
|
+
eqSet.add(c.semver)
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
if (eqSet.size > 1) {
|
|
112
|
+
return null
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
let gtltComp
|
|
116
|
+
if (gt && lt) {
|
|
117
|
+
gtltComp = compare(gt.semver, lt.semver, options)
|
|
118
|
+
if (gtltComp > 0) {
|
|
119
|
+
return null
|
|
120
|
+
} else if (gtltComp === 0 && (gt.operator !== '>=' || lt.operator !== '<=')) {
|
|
121
|
+
return null
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
// will iterate one or zero times
|
|
126
|
+
for (const eq of eqSet) {
|
|
127
|
+
if (gt && !satisfies(eq, String(gt), options)) {
|
|
128
|
+
return null
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
if (lt && !satisfies(eq, String(lt), options)) {
|
|
132
|
+
return null
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
for (const c of dom) {
|
|
136
|
+
if (!satisfies(eq, String(c), options)) {
|
|
137
|
+
return false
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
return true
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
let higher, lower
|
|
145
|
+
let hasDomLT, hasDomGT
|
|
146
|
+
// if the subset has a prerelease, we need a comparator in the superset
|
|
147
|
+
// with the same tuple and a prerelease, or it's not a subset
|
|
148
|
+
let needDomLTPre = lt &&
|
|
149
|
+
!options.includePrerelease &&
|
|
150
|
+
lt.semver.prerelease.length ? lt.semver : false
|
|
151
|
+
let needDomGTPre = gt &&
|
|
152
|
+
!options.includePrerelease &&
|
|
153
|
+
gt.semver.prerelease.length ? gt.semver : false
|
|
154
|
+
// exception: <1.2.3-0 is the same as <1.2.3
|
|
155
|
+
if (needDomLTPre && needDomLTPre.prerelease.length === 1 &&
|
|
156
|
+
lt.operator === '<' && needDomLTPre.prerelease[0] === 0) {
|
|
157
|
+
needDomLTPre = false
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
for (const c of dom) {
|
|
161
|
+
hasDomGT = hasDomGT || c.operator === '>' || c.operator === '>='
|
|
162
|
+
hasDomLT = hasDomLT || c.operator === '<' || c.operator === '<='
|
|
163
|
+
if (gt) {
|
|
164
|
+
if (needDomGTPre) {
|
|
165
|
+
if (c.semver.prerelease && c.semver.prerelease.length &&
|
|
166
|
+
c.semver.major === needDomGTPre.major &&
|
|
167
|
+
c.semver.minor === needDomGTPre.minor &&
|
|
168
|
+
c.semver.patch === needDomGTPre.patch) {
|
|
169
|
+
needDomGTPre = false
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
if (c.operator === '>' || c.operator === '>=') {
|
|
173
|
+
higher = higherGT(gt, c, options)
|
|
174
|
+
if (higher === c && higher !== gt) {
|
|
175
|
+
return false
|
|
176
|
+
}
|
|
177
|
+
} else if (gt.operator === '>=' && !satisfies(gt.semver, String(c), options)) {
|
|
178
|
+
return false
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
if (lt) {
|
|
182
|
+
if (needDomLTPre) {
|
|
183
|
+
if (c.semver.prerelease && c.semver.prerelease.length &&
|
|
184
|
+
c.semver.major === needDomLTPre.major &&
|
|
185
|
+
c.semver.minor === needDomLTPre.minor &&
|
|
186
|
+
c.semver.patch === needDomLTPre.patch) {
|
|
187
|
+
needDomLTPre = false
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
if (c.operator === '<' || c.operator === '<=') {
|
|
191
|
+
lower = lowerLT(lt, c, options)
|
|
192
|
+
if (lower === c && lower !== lt) {
|
|
193
|
+
return false
|
|
194
|
+
}
|
|
195
|
+
} else if (lt.operator === '<=' && !satisfies(lt.semver, String(c), options)) {
|
|
196
|
+
return false
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
if (!c.operator && (lt || gt) && gtltComp !== 0) {
|
|
200
|
+
return false
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
// if there was a < or >, and nothing in the dom, then must be false
|
|
205
|
+
// UNLESS it was limited by another range in the other direction.
|
|
206
|
+
// Eg, >1.0.0 <1.0.1 is still a subset of <2.0.0
|
|
207
|
+
if (gt && hasDomLT && !lt && gtltComp !== 0) {
|
|
208
|
+
return false
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
if (lt && hasDomGT && !gt && gtltComp !== 0) {
|
|
212
|
+
return false
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
// we needed a prerelease range in a specific tuple, but didn't get one
|
|
216
|
+
// then this isn't a subset. eg >=1.2.3-pre is not a subset of >=1.0.0,
|
|
217
|
+
// because it includes prereleases in the 1.2.3 tuple
|
|
218
|
+
if (needDomGTPre || needDomLTPre) {
|
|
219
|
+
return false
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
return true
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
// >=1.2.3 is lower than >1.2.3
|
|
226
|
+
const higherGT = (a, b, options) => {
|
|
227
|
+
if (!a) {
|
|
228
|
+
return b
|
|
229
|
+
}
|
|
230
|
+
const comp = compare(a.semver, b.semver, options)
|
|
231
|
+
return comp > 0 ? a
|
|
232
|
+
: comp < 0 ? b
|
|
233
|
+
: b.operator === '>' && a.operator === '>=' ? b
|
|
234
|
+
: a
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
// <=1.2.3 is higher than <1.2.3
|
|
238
|
+
const lowerLT = (a, b, options) => {
|
|
239
|
+
if (!a) {
|
|
240
|
+
return b
|
|
241
|
+
}
|
|
242
|
+
const comp = compare(a.semver, b.semver, options)
|
|
243
|
+
return comp < 0 ? a
|
|
244
|
+
: comp > 0 ? b
|
|
245
|
+
: b.operator === '<' && a.operator === '<=' ? b
|
|
246
|
+
: a
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
module.exports = subset
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
'use strict'
|
|
2
|
+
|
|
3
|
+
const Range = require('../classes/range')
|
|
4
|
+
|
|
5
|
+
// Mostly just for testing and legacy API reasons
|
|
6
|
+
const toComparators = (range, options) =>
|
|
7
|
+
new Range(range, options).set
|
|
8
|
+
.map(comp => comp.map(c => c.value).join(' ').trim().split(' '))
|
|
9
|
+
|
|
10
|
+
module.exports = toComparators
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
'use strict'
|
|
2
|
+
|
|
3
|
+
const Range = require('../classes/range')
|
|
4
|
+
const validRange = (range, options) => {
|
|
5
|
+
try {
|
|
6
|
+
// Return '*' instead of '' so that truthiness works.
|
|
7
|
+
// This will throw if it's invalid anyway
|
|
8
|
+
return new Range(range, options).range || '*'
|
|
9
|
+
} catch (er) {
|
|
10
|
+
return null
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
module.exports = validRange
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2015 Josh Junon
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
|
13
|
+
all copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
+
THE SOFTWARE.
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var isArrayish = require('is-arrayish');
|
|
4
|
+
|
|
5
|
+
var concat = Array.prototype.concat;
|
|
6
|
+
var slice = Array.prototype.slice;
|
|
7
|
+
|
|
8
|
+
var swizzle = module.exports = function swizzle(args) {
|
|
9
|
+
var results = [];
|
|
10
|
+
|
|
11
|
+
for (var i = 0, len = args.length; i < len; i++) {
|
|
12
|
+
var arg = args[i];
|
|
13
|
+
|
|
14
|
+
if (isArrayish(arg)) {
|
|
15
|
+
// http://jsperf.com/javascript-array-concat-vs-push/98
|
|
16
|
+
results = concat.call(results, slice.call(arg));
|
|
17
|
+
} else {
|
|
18
|
+
results.push(arg);
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
return results;
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
swizzle.wrap = function (fn) {
|
|
26
|
+
return function () {
|
|
27
|
+
return fn(swizzle(arguments));
|
|
28
|
+
};
|
|
29
|
+
};
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "simple-swizzle",
|
|
3
|
+
"description": "Simply swizzle your arguments",
|
|
4
|
+
"version": "0.2.4",
|
|
5
|
+
"author": "Qix (http://github.com/qix-)",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"argument",
|
|
8
|
+
"arguments",
|
|
9
|
+
"swizzle",
|
|
10
|
+
"swizzling",
|
|
11
|
+
"parameter",
|
|
12
|
+
"parameters",
|
|
13
|
+
"mixed",
|
|
14
|
+
"array"
|
|
15
|
+
],
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"scripts": {
|
|
18
|
+
"pretest": "xo",
|
|
19
|
+
"test": "mocha --compilers coffee:coffee-script/register"
|
|
20
|
+
},
|
|
21
|
+
"files": [
|
|
22
|
+
"index.js"
|
|
23
|
+
],
|
|
24
|
+
"repository": "qix-/node-simple-swizzle",
|
|
25
|
+
"devDependencies": {
|
|
26
|
+
"coffee-script": "^1.9.3",
|
|
27
|
+
"coveralls": "^2.11.2",
|
|
28
|
+
"istanbul": "^0.3.17",
|
|
29
|
+
"mocha": "^2.2.5",
|
|
30
|
+
"should": "^7.0.1",
|
|
31
|
+
"xo": "^0.7.1"
|
|
32
|
+
},
|
|
33
|
+
"dependencies": {
|
|
34
|
+
"is-arrayish": "^0.3.1"
|
|
35
|
+
}
|
|
36
|
+
}
|
package/pkg/package.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "sharp",
|
|
3
|
+
"description": "High performance Node.js image processing, the fastest module to resize JPEG, PNG, WebP, GIF, AVIF and TIFF images",
|
|
4
|
+
"version": "0.33.5",
|
|
5
|
+
"author": "Lovell Fuller <npm@lovell.info>",
|
|
6
|
+
"homepage": "https://sharp.pixelplumbing.com",
|
|
7
|
+
"main": "lib/index.js",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git://github.com/lovell/sharp.git"
|
|
11
|
+
},
|
|
12
|
+
"dependencies": {
|
|
13
|
+
"color": "^4.2.3",
|
|
14
|
+
"detect-libc": "^2.0.3",
|
|
15
|
+
"semver": "^7.6.3"
|
|
16
|
+
},
|
|
17
|
+
"license": "Apache-2.0",
|
|
18
|
+
"engines": {
|
|
19
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
20
|
+
},
|
|
21
|
+
"config": {
|
|
22
|
+
"libvips": ">=8.15.3"
|
|
23
|
+
}
|
|
24
|
+
}
|