University of Arizona Libraries customizations and workflows for Springshare/LibApps.
This project uses Vite as its build and development tool.
ualibraries-libapps/
├── src/
│ ├── main.js
│ └── style.css
├── html/
├── package.json
├── README.md
└── vite.config.js
Install dependencies:
npm installStart the local development server (hot reload enabled):
npm run devCreate a production build:
npm run buildThis project currently relies on Vite via devDependencies.
Check what is out of date:
npm outdatedUpdate within allowed semver ranges in package.json:
npm updateUpdate a specific package to the latest version:
npm install vite@latest --save-devIf you want to bump all dependencies (including major versions), use npm-check-updates:
npx npm-check-updates -u
npm installAfter updates, verify everything still works:
npm run dev
npm run build