We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d56947e commit ba07042Copy full SHA for ba07042
.circleci/config.yml
@@ -120,6 +120,14 @@ jobs:
120
cd ./scripts/release && yarn && cd ../../
121
scripts/release/download-experimental-build.js --commit=$(git merge-base HEAD origin/main)
122
mv ./build ./base-build
123
+ - run:
124
+ # TODO: The `download-experimental-build` script copies the npm
125
+ # packages into the `node_modules` directory. This is a historical
126
+ # quirk of how the release script works. Let's pretend they
127
+ # don't exist.
128
+ name: Delete extraneous files
129
+ command: rm -rf ./base-build/node_modules
130
+
131
- persist_to_workspace:
132
root: .
133
paths:
0 commit comments