d7002057d7
This PR moves the tldraw.com app into the public repo. ### Change Type - [x] `internal` — Any other changes that don't affect the published package[^2] --------- Co-authored-by: Dan Groshev <git@dgroshev.com> Co-authored-by: alex <alex@dytry.ch>
41 lines
930 B
Bash
Executable file
41 lines
930 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -eux
|
|
|
|
# a function called 'goodbye' that takes a string as an argument
|
|
|
|
function goodbye() {
|
|
rm -rf $1
|
|
rm -rf */$1
|
|
rm -rf */*/$1
|
|
rm -rf */*/*/$1
|
|
rm -rf */*/*/*/$1
|
|
rm -rf */*/*/*/*/$1
|
|
rm -rf **/$1
|
|
}
|
|
|
|
rm -rf node_modules
|
|
goodbye node_modules
|
|
goodbye .turbo
|
|
goodbye tmp-assets
|
|
goodbye tsconfig.tsbuildinfo
|
|
goodbye tsconfig.build.tsbuildinfo
|
|
goodbye tsconfig.build.json
|
|
goodbye .lazy
|
|
goodbye dist-esm
|
|
goodbye dist-cjs
|
|
goodbye .tsbuild
|
|
goodbye .tsbuild-pub
|
|
goodbye .tsbuild-dev
|
|
goodbye .tsbuild-api
|
|
goodbye .next
|
|
|
|
rm -rf packages/*/api
|
|
rm -rf {packages,apps}/*/*.tgz
|
|
rm -rf {packages,apps}/vscode/extension/temp
|
|
rm -rf {packages,apps}/vscode/extension/editor
|
|
rm -rf apps/docs/content.json
|
|
|
|
# need to run yarn directly
|
|
# because yarn messes with the PATH, aliasing itself to some tmp dir
|
|
# which is apparently deleted by our clean script
|
|
node "$(dirname -- "$0")/../.yarn/releases/yarn-3.5.0.cjs"
|