mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-21 21:49:51 +01:00
5c51230ea4
* chore(frontend): Real Tailwind + Autoprefixer * Align some non-standard utility class usage with Tailwind * Start using container queries * Update tailwind.config.js * Move PostCSS packages into prod dependencies * Add EE * Add larger spacings for properties other than width * Fix spacing backward compat * Add max-w-1/2 * Remove Tailwind normalization * Ensure JIT analysis works * Actually we don't need a container query for this * Clean up more * Update UI snapshots for `webkit` (2) * Update UI snapshots for `chromium` (1) * Update UI snapshots for `chromium` (2) * Update UI snapshots for `webkit` (2) * Update UI snapshots for `chromium` (1) * Update UI snapshots for `chromium` (2) * Update production.Dockerfile * Extend `fontSize` instead of replacing * Update UI snapshots for `chromium` (1) * Update UI snapshots for `chromium` (2) * Fix production build * Add clarification comment * Update trends.cy.ts * Fix `scale` usage * Fix minor styling issues * Upgrade to Tailwind 3.4 * Actually use `cssnano` * Don't use `cssnano` in dev * Solve annoying Tailwind logs * Add comment explaining plugins being defined twice * Fix side panel icon rotation * Reset snapshots * Update UI snapshots for `chromium` (1) * Update UI snapshots for `chromium` (2) * Update query snapshots * Update query snapshots * Fix dockerfile * Update UI snapshots for `chromium` (1) * Update UI snapshots for `chromium` (1) * Fix up flag wrap * Update UI snapshots for `chromium` (2) * Fix * Update UI snapshots for `chromium` (1) * Update UI snapshots for `chromium` (2) --------- Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Ben White <ben@posthog.com>
13 lines
366 B
Bash
Executable File
13 lines
366 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# pass first argument to WEBPACK_HOT_RELOAD_HOST
|
|
[ $# -ge 1 ] && export WEBPACK_HOT_RELOAD_HOST=$1
|
|
|
|
# DEBUG=1 might be exported to this script from a parent, but we don't want it in the frontend build process
|
|
# In particular, DEBUG=1 enables a lot of Tailwind logging we don't need, so let's set 0 instead
|
|
export DEBUG=0
|
|
|
|
pnpm install
|
|
pnpm start
|