Skip to content

Latest commit

 

History

History
74 lines (51 loc) · 1.15 KB

File metadata and controls

74 lines (51 loc) · 1.15 KB

ualibraries-libapps

University of Arizona Libraries customizations and workflows for Springshare/LibApps.

Project Structure

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

How to Use Vite in This Repo

Install dependencies:

npm install

Start the local development server (hot reload enabled):

npm run dev

Create a production build:

npm run build

Updating Vite and Related Dependencies

This project currently relies on Vite via devDependencies.

Check what is out of date:

npm outdated

Update within allowed semver ranges in package.json:

npm update

Update a specific package to the latest version:

npm install vite@latest --save-dev

If you want to bump all dependencies (including major versions), use npm-check-updates:

npx npm-check-updates -u
npm install

After updates, verify everything still works:

npm run dev
npm run build