@synsci/openscience 2.0.87 → 2.0.88-test.34468012099
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/package.json +12 -12
- package/postinstall.mjs +1 -9
package/package.json
CHANGED
|
@@ -7,22 +7,22 @@
|
|
|
7
7
|
"preinstall": "node ./preinstall.mjs || exit 0",
|
|
8
8
|
"postinstall": "bun ./postinstall.mjs || node ./postinstall.mjs || exit 0"
|
|
9
9
|
},
|
|
10
|
-
"version": "2.0.
|
|
10
|
+
"version": "2.0.88-test.34468012099",
|
|
11
11
|
"repository": {
|
|
12
12
|
"type": "git",
|
|
13
13
|
"url": "git+https://github.com/synthetic-sciences/openscience.git"
|
|
14
14
|
},
|
|
15
15
|
"optionalDependencies": {
|
|
16
|
-
"@synsci/openscience-linux-x64": "2.0.
|
|
17
|
-
"@synsci/openscience-windows-x64-baseline": "2.0.
|
|
18
|
-
"@synsci/openscience-linux-x64-baseline-musl": "2.0.
|
|
19
|
-
"@synsci/openscience-windows-x64": "2.0.
|
|
20
|
-
"@synsci/openscience-linux-x64-musl": "2.0.
|
|
21
|
-
"@synsci/openscience-linux-arm64-musl": "2.0.
|
|
22
|
-
"@synsci/openscience-darwin-x64": "2.0.
|
|
23
|
-
"@synsci/openscience-darwin-x64-baseline": "2.0.
|
|
24
|
-
"@synsci/openscience-linux-x64-baseline": "2.0.
|
|
25
|
-
"@synsci/openscience-linux-arm64": "2.0.
|
|
26
|
-
"@synsci/openscience-darwin-arm64": "2.0.
|
|
16
|
+
"@synsci/openscience-linux-x64": "2.0.88-test.34468012099",
|
|
17
|
+
"@synsci/openscience-windows-x64-baseline": "2.0.88-test.34468012099",
|
|
18
|
+
"@synsci/openscience-linux-x64-baseline-musl": "2.0.88-test.34468012099",
|
|
19
|
+
"@synsci/openscience-windows-x64": "2.0.88-test.34468012099",
|
|
20
|
+
"@synsci/openscience-linux-x64-musl": "2.0.88-test.34468012099",
|
|
21
|
+
"@synsci/openscience-linux-arm64-musl": "2.0.88-test.34468012099",
|
|
22
|
+
"@synsci/openscience-darwin-x64": "2.0.88-test.34468012099",
|
|
23
|
+
"@synsci/openscience-darwin-x64-baseline": "2.0.88-test.34468012099",
|
|
24
|
+
"@synsci/openscience-linux-x64-baseline": "2.0.88-test.34468012099",
|
|
25
|
+
"@synsci/openscience-linux-arm64": "2.0.88-test.34468012099",
|
|
26
|
+
"@synsci/openscience-darwin-arm64": "2.0.88-test.34468012099"
|
|
27
27
|
}
|
|
28
28
|
}
|
package/postinstall.mjs
CHANGED
|
@@ -221,14 +221,6 @@ function main() {
|
|
|
221
221
|
}
|
|
222
222
|
}
|
|
223
223
|
|
|
224
|
-
export {
|
|
225
|
-
cpuSupportsAvx2,
|
|
226
|
-
detectMusl,
|
|
227
|
-
detectPlatformAndArch,
|
|
228
|
-
findBinary,
|
|
229
|
-
linuxArm64PageSizeProblem,
|
|
230
|
-
linuxKernelProblem,
|
|
231
|
-
platformPackageNames,
|
|
232
|
-
}
|
|
224
|
+
export { cpuSupportsAvx2, linuxArm64PageSizeProblem, linuxKernelProblem, platformPackageNames }
|
|
233
225
|
|
|
234
226
|
if (process.argv[1] && path.resolve(process.argv[1]) === fileURLToPath(import.meta.url)) main()
|