2023-02-15 13:50:52 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2023-05-09 18:31:34 +02:00
|
|
|
# This script copies the following built files from posthog-js so that they can served on PostHog's CDN
|
2023-02-15 13:50:52 +01:00
|
|
|
|
|
|
|
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/recorder.js* frontend/dist/
|
2023-02-22 12:55:04 +01:00
|
|
|
cp node_modules/posthog-js/dist/recorder-v2.js* frontend/dist/
|
2023-09-26 14:35:54 +02:00
|
|
|
cp node_modules/posthog-js/dist/surveys.js* frontend/dist/
|
2024-04-08 12:33:24 +02:00
|
|
|
cp node_modules/posthog-js/dist/exception-autocapture.js* frontend/dist/
|
2024-06-26 12:01:01 +02:00
|
|
|
cp node_modules/posthog-js/dist/web-vitals.js* frontend/dist/
|