We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e97befa commit 5d4bf19Copy full SHA for 5d4bf19
packages/grafana-ui/.storybook/main.ts
@@ -100,7 +100,6 @@ const mainConfig: StorybookConfig = {
100
savePropValueAsString: true,
101
},
102
103
-
104
webpackFinal: async (config) => {
105
// expose jquery as a global so jquery plugins don't break at runtime.
106
config.module?.rules?.push({
scripts/publish-npm-packages.sh
@@ -36,7 +36,9 @@ done
36
37
echo "Starting to release $dist_tag version"
38
39
-echo "$registry/:_authToken=${NPM_TOKEN}" >> ~/.npmrc
+registry_without_protocol=${registry#*:}
40
+
41
+echo "$registry_without_protocol/:_authToken=${NPM_TOKEN}" >> ~/.npmrc
42
43
# Loop over .tar files in directory and publish them to npm registry
44
for file in ./npm-artifacts/*.tgz; do
0 commit comments