diff --git a/code/packs/README.md b/code/packs/README.md deleted file mode 100644 index 49703f9d3ad7..000000000000 --- a/code/packs/README.md +++ /dev/null @@ -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. diff --git a/scripts/build-manager-config/main.js b/scripts/build-manager-config/main.js deleted file mode 100644 index 876a78f26d61..000000000000 --- a/scripts/build-manager-config/main.js +++ /dev/null @@ -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, - }, -}; diff --git a/scripts/build-pack.sh b/scripts/build-pack.sh deleted file mode 100755 index f77e609c161a..000000000000 --- a/scripts/build-pack.sh +++ /dev/null @@ -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"