mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-21 13:39:22 +01:00
ccc2056e38
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
16 lines
701 B
Bash
Executable File
16 lines
701 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
# This script copies the following built files from posthog-js so that they can served on PostHog's CDN
|
|
|
|
cp node_modules/posthog-js/dist/array.js* frontend/dist/
|
|
cp node_modules/posthog-js/dist/array.full.js* frontend/dist/
|
|
cp node_modules/posthog-js/dist/array.full.es5.js* frontend/dist/
|
|
cp node_modules/posthog-js/dist/recorder.js* frontend/dist/
|
|
cp node_modules/posthog-js/dist/recorder-v2.js* frontend/dist/
|
|
cp node_modules/posthog-js/dist/surveys.js* frontend/dist/
|
|
cp node_modules/posthog-js/dist/exception-autocapture.js* frontend/dist/
|
|
cp node_modules/posthog-js/dist/web-vitals.js* frontend/dist/
|
|
cp node_modules/posthog-js/dist/dead-clicks-autocapture.js* frontend/dist/
|