Update from Vibe Studio

This commit is contained in:
Vibe Studio
2026-01-16 02:20:32 +00:00
parent a4605e311a
commit 71de1506ca
28603 changed files with 2179459 additions and 0 deletions

10
node_modules/fast-json-patch/tsc-to-mjs.sh generated vendored Normal file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
cd module
mv core.js core.mjs && mv duplex.js duplex.mjs && mv helpers.js helpers.mjs
# Unlike Ubuntu, OS X requires the extension to be explicitly specified
# https://myshittycode.com/2014/07/24/os-x-sed-extra-characters-at-the-end-of-l-command-error/
if [[ "$OSTYPE" == "darwin"* ]]; then
sed -i '' 's/\.js/\.mjs/g' duplex.mjs core.mjs
else
sed -i 's/\.js/\.mjs/g' duplex.mjs core.mjs
fi