- web/: Vue 3 + Vite + UnoCSS + Pinia, dark tactical theme (amber/#0d1117) - AppNav, ListingCard, SearchView with filters/sort, composables (useSnipeMode, useKonamiCode, useMotion), Pinia search store - Steal shimmer, auction countdown, Snipe Mode easter egg all native in Vue - docker/web/: nginx + multi-stage Dockerfile (node build → nginx serve) - compose.yml: api (8510) + web (8509) services - Dockerfile CMD updated to uvicorn for upcoming FastAPI layer - Clean build: 0 TS errors, 380 modules
16 lines
371 B
YAML
16 lines
371 B
YAML
language: node_js
|
|
sudo: false
|
|
node_js:
|
|
- "10"
|
|
- "9"
|
|
- "8"
|
|
- "6"
|
|
- "4"
|
|
- "iojs"
|
|
- "0.12"
|
|
- "0.10"
|
|
- "0.8"
|
|
before_install:
|
|
# Old npm certs are untrusted https://github.com/npm/npm/issues/20191
|
|
- 'if [ "${TRAVIS_NODE_VERSION}" = "0.6" ] || [ "${TRAVIS_NODE_VERSION}" = "0.8" ]; then export NPM_CONFIG_STRICT_SSL=false; fi'
|
|
- 'nvm install-latest-npm'
|