8578c9b281
* Fixed empty env vars overriding in dev runs * Don’t import package.json anymore * fix node10 moduleResolution in @trigger.dev/core * Support self-hosters pushing to a custom registry when running deploy * dev: Fixed stuck runs when a child run fails with a process exit * Make some doc notes about known issues and docker hub private repos * Fix --project-ref when running deploy * Fix —config option when deploying * Fixing the flushing/killing process with the new build system * Add monorepo-react-email e2e test fixture * Fix issue with emitDecoratorMetadata and tsconfigs with extends * Got the emit decorator metadata fixture working * Fixed typechecking yarn e2e CLI tests in monorepos * Add remote forced externals system, in case we come across another package that cannot be bundled (spurred on by header-generator) * Remote externals now powered by JSON Hero to be easier to update * resolve config source files * Add a —javascript option to init, defaults to typescript * Add support for prisma typed sql * Remove msw and retry.interceptFetch * Add missing code to the openai retries example * Don’t generate the v3 catalog prisma client during CI * Fixed v3-catalog task imports * Remove interceptor usage in task file * Only import import-in-the-middle hook if there are instrumented packages * Fix yarn.lock file
19 lines
436 B
Bash
Executable File
19 lines
436 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# Print the current working directory
|
|
echo "Updating packages in: $(pwd)"
|
|
|
|
corepack use pnpm@8.15.5
|
|
rm -rf **/node_modules
|
|
|
|
# Check if package-lock.json exists in the current directory
|
|
if [ -f "package-lock.json" ]; then
|
|
echo "package-lock.json found. Running npm install..."
|
|
npm install
|
|
rm -rf **/node_modules
|
|
else
|
|
echo "No package-lock.json found. Skipping npm install."
|
|
fi
|
|
corepack use yarn@4.2.2 |