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 bbeaf06 commit c4de255Copy full SHA for c4de255
package.json
@@ -15,7 +15,7 @@
15
"private": false,
16
"scripts": {
17
"test": "./scripts/test",
18
- "build": "./scripts/build",
+ "build": "./scripts/build-all",
19
"prepack": "echo 'to pack, run yarn build && (cd dist; yarn pack)' && exit 1",
20
"prepublishOnly": "echo 'to publish, run yarn build && (cd dist; yarn publish)' && exit 1",
21
"format": "prettier --write --cache --cache-strategy metadata . !dist",
scripts/build-all
@@ -3,7 +3,7 @@ set -exuo pipefail
3
4
# build the core SDK package an all sub-packages
5
6
-yarn build
+bash ./scripts/build
7
8
for dir in packages/*; do
9
if [ -d "$dir" ]; then
0 commit comments