This commit is contained in:
Norbert de Langen 2022-07-26 14:22:00 +02:00
parent b0a12ca635
commit 18db6ff63e
No known key found for this signature in database
GPG Key ID: FD0E78AF9A837762
3 changed files with 0 additions and 21 deletions

View File

@ -1,5 +0,0 @@
# Git packs
This directory is filled with git packs of our packages when you run the `build-packs` command.
The purpose of this is to enable the example apps to use the packs as "local" installs without linking, and thus behave like a normal app would, yet still use our latest code. It's awkward for development but good to double check things, especially in CI.

View File

@ -1,8 +0,0 @@
module.exports = {
// Should be kept in sync with addons listed in `baseGenerator.ts`
addons: ['@storybook/addon-links', '@storybook/addon-essentials'],
core: {
builder: '@storybook/builder-webpack5',
disableTelemetry: true,
},
};

View File

@ -1,8 +0,0 @@
#!/bin/bash -
# run in package directory
PACK_DIR=$1
FILE=$(npm pack | tail -n 1)
mv "$FILE" "$PACK_DIR/${FILE%-[0-9]*\.[0-9]*\.[0-9]*\.tgz}.tgz"