From 18db6ff63e421f87c52e64d63ff2e7116448c98d Mon Sep 17 00:00:00 2001 From: Norbert de Langen Date: Tue, 26 Jul 2022 14:22:00 +0200 Subject: [PATCH] cleanup --- code/packs/README.md | 5 ----- scripts/build-manager-config/main.js | 8 -------- scripts/build-pack.sh | 8 -------- 3 files changed, 21 deletions(-) delete mode 100644 code/packs/README.md delete mode 100644 scripts/build-manager-config/main.js delete mode 100755 scripts/build-pack.sh diff --git a/code/packs/README.md b/code/packs/README.md deleted file mode 100644 index 49703f9d3ad..00000000000 --- 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 876a78f26d6..00000000000 --- 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 f77e609c161..00000000000 --- 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"