Skip to content

Commit e00dc83

Browse files
authored
fix: verdaccio main (#7948)
* debugging circleci * remove overly large log * increase log verbosity * see if pinning the tailwind version fixes the issue * fix example build * turn on verdaccio * Revert "turn on verdaccio" This reverts commit 3b3a974.
1 parent bcc12ad commit e00dc83

11 files changed

+9
-20
lines changed

examples/rac-spectrum-tailwind/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"packageManager": "yarn@4.2.2",
55
"scripts": {
66
"start": "parcel src/index.html",
7-
"build": "parcel build src/index.html",
7+
"build": "PARCEL_WORKER_BACKEND=process parcel build src/index.html",
88
"install-17": "yarn add -W react@^17 react-dom@^17"
99
},
1010
"dependencies": {

examples/rac-tailwind/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"packageManager": "yarn@4.2.2",
55
"scripts": {
66
"start": "parcel src/index.html",
7-
"build": "parcel build src/index.html",
7+
"build": "PARCEL_WORKER_BACKEND=process parcel build src/index.html",
88
"install-17": "yarn add -W react@^17 react-dom@^17"
99
},
1010
"dependencies": {

scripts/verdaccio-build-icon-builder.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ else
1717
echo "Verdaccio is NOT running on port 4000."
1818
fi
1919

20-
curl -s http://localhost:4000/@adobe/react-spectrum
21-
2220
yarn config set npmPublishRegistry --home $registry
2321
yarn config set npmRegistryServer --home $registry
2422
yarn config set npmAlwaysAuth --home false

scripts/verdaccio-build-nextjs.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ else
1717
echo "Verdaccio is NOT running on port 4000."
1818
fi
1919

20-
curl -s http://localhost:4000/@adobe/react-spectrum
21-
2220
yarn config set npmPublishRegistry --home $registry
2321
yarn config set npmRegistryServer --home $registry
2422
yarn config set npmAlwaysAuth --home false

scripts/verdaccio-build-rac-rsp-tailwind.sh

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ else
1717
echo "Verdaccio is NOT running on port 4000."
1818
fi
1919

20-
curl -s http://localhost:4000/@adobe/react-spectrum
21-
2220
yarn config set npmPublishRegistry --home $registry
2321
yarn config set npmRegistryServer --home $registry
2422
yarn config set npmAlwaysAuth --home false
@@ -37,6 +35,13 @@ cd examples/rac-spectrum-tailwind
3735
yarn config set npmRegistryServer $registry
3836
yarn install --no-immutable
3937
yarn build --public-url ./
38+
39+
echo 'build RAC Spectrum Tailwind app done'
40+
4041
mv dist ../../$verdaccio_path/rac-spectrum-tailwind
4142

43+
echo 'move RAC Spectrum Tailwind app done'
44+
4245
netstat -tpln | awk -F'[[:space:]/:]+' '$5 == 4000 {print $(NF-2)}' | xargs kill
46+
47+
echo 'verdaccio shutdown done'

scripts/verdaccio-build-rac-tailwind.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ else
1717
echo "Verdaccio is NOT running on port 4000."
1818
fi
1919

20-
curl -s http://localhost:4000/@adobe/react-spectrum
21-
2220
yarn config set npmPublishRegistry --home $registry
2321
yarn config set npmRegistryServer --home $registry
2422
yarn config set npmAlwaysAuth --home false

scripts/verdaccio-build-rsp-cra-18.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ else
1717
echo "Verdaccio is NOT running on port 4000."
1818
fi
1919

20-
curl -s http://localhost:4000/@adobe/react-spectrum
21-
2220
yarn config set npmPublishRegistry --home $registry
2321
yarn config set npmRegistryServer --home $registry
2422
yarn config set npmAlwaysAuth --home false

scripts/verdaccio-build-s2-parcel.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ else
1717
echo "Verdaccio is NOT running on port 4000."
1818
fi
1919

20-
curl -s http://localhost:4000/@adobe/react-spectrum
21-
2220
yarn config set npmPublishRegistry --home $registry
2321
yarn config set npmRegistryServer --home $registry
2422
yarn config set npmAlwaysAuth --home false

scripts/verdaccio-build-s2-webpack.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ else
1717
echo "Verdaccio is NOT running on port 4000."
1818
fi
1919

20-
curl -s http://localhost:4000/@adobe/react-spectrum
21-
2220
yarn config set npmPublishRegistry --home $registry
2321
yarn config set npmRegistryServer --home $registry
2422
yarn config set npmAlwaysAuth --home false

scripts/verdaccio-build-webpack-4.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ else
1717
echo "Verdaccio is NOT running on port 4000."
1818
fi
1919

20-
curl -s http://localhost:4000/@adobe/react-spectrum
21-
2220
yarn config set npmPublishRegistry --home $registry
2321
yarn config set npmRegistryServer --home $registry
2422
yarn config set npmAlwaysAuth --home false

0 commit comments

Comments
 (0)