4ef240ee创建于 2024年11月15日历史提交
#!/usr/bin/env bash

deps=""
install=()
for name in $(cat impls.txt); do
  if [ "$name" = "lru-cache_CURRENT" ]; then
    continue
  fi
  dep=${name/_/@}
  deps="${deps}"'    "'"$name"'": "'"npm:$dep"$'",\n'
done

cat >package.json <<PJ
{
  "//": "Note: this file is programmatically generated, do not edit",
  "name": "bench-lru",
  "author": {
    "email": "dominic.tarr@gmail.com",
    "name": "Dominic Tarr",
    "url": "https://dominictarr.com"
  },
  "dependencies": {
    "lru-cache_CURRENT": "file:../",
${deps}    "tiny-worker": "^2.1.2",
    "ora": "^2.0.0",
    "keysort": "^1.0.2",
    "markdown-tables": "1.1",
    "retsu": "^3.0.1",
    "precise": "^1.1.0"
  },
  "scripts": {
    "benchmark": "NODE_ENV=production node index.js"
  },
  "license": "MIT"
}
PJ
rm package-lock.json
rm -rf node_modules
npm install "${install[@]}"