mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-22 08:40:03 +01:00
10 lines
303 B
Plaintext
10 lines
303 B
Plaintext
|
#!/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/recorder.js* frontend/dist/
|