aboutsummaryrefslogtreecommitdiffstats
path: root/packages/monorepo-scripts
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2018-06-18 22:46:54 +0800
committerFabio Berger <me@fabioberger.com>2018-06-19 05:05:03 +0800
commit19668b9b48eb08645f500dd8453b8cb2f7abc400 (patch)
tree77b442688b2952877df12fd2c1b905c015e5ce39 /packages/monorepo-scripts
parent3f02631b98368503718a1c1977e7f83220c284a2 (diff)
downloaddexon-sol-tools-19668b9b48eb08645f500dd8453b8cb2f7abc400.tar
dexon-sol-tools-19668b9b48eb08645f500dd8453b8cb2f7abc400.tar.gz
dexon-sol-tools-19668b9b48eb08645f500dd8453b8cb2f7abc400.tar.bz2
dexon-sol-tools-19668b9b48eb08645f500dd8453b8cb2f7abc400.tar.lz
dexon-sol-tools-19668b9b48eb08645f500dd8453b8cb2f7abc400.tar.xz
dexon-sol-tools-19668b9b48eb08645f500dd8453b8cb2f7abc400.tar.zst
dexon-sol-tools-19668b9b48eb08645f500dd8453b8cb2f7abc400.zip
remove remove_tags script
Diffstat (limited to 'packages/monorepo-scripts')
-rw-r--r--packages/monorepo-scripts/README.md2
-rw-r--r--packages/monorepo-scripts/package.json2
2 files changed, 0 insertions, 4 deletions
diff --git a/packages/monorepo-scripts/README.md b/packages/monorepo-scripts/README.md
index 22b449870..d979e27dc 100644
--- a/packages/monorepo-scripts/README.md
+++ b/packages/monorepo-scripts/README.md
@@ -8,8 +8,6 @@ This repository contains a few helpful scripts for working with this mono repo.
**`yarn find_unused_deps`**: Sometimes we accidentally leave dependencies listed in `package.json` that are no longer being used. This script finds potential dependencies that might no longer be in use. Please verify that it is no longer in use before removing, the `depcheck` package we use under-the-hood doesn't handle some TS quirks perfectly.
-**`yarn remove_tags`**: Our publishing script calls `lerna publish` under-the-hood. If this command fails, it might have created new versioned git tags for each package. Removing these manually is tedious, so you can also run this command instead. Before doing so, check to see if `lerna` already created the publish commit. If so, first revert that with `git reset --hard HEAD~1`, then run this command.
-
**`yarn test:publish`**: Execute a test-run of the publish script. This dry run won't actually publish, nor will it commit/push anything to Github.
## Usage
diff --git a/packages/monorepo-scripts/package.json b/packages/monorepo-scripts/package.json
index 5a6d7b25a..9a466ffd0 100644
--- a/packages/monorepo-scripts/package.json
+++ b/packages/monorepo-scripts/package.json
@@ -14,12 +14,10 @@
"clean": "shx rm -rf lib",
"test:publish": "run-s build script:publish",
"find_unused_deps": "run-s build script:find_unused_deps",
- "remove_tags": "run-s build script:remove_tags",
"script:deps_versions": "node ./lib/deps_versions.js",
"script:prepublish_checks": "node ./lib/prepublish_checks.js",
"script:publish": "IS_DRY_RUN=true node ./lib/publish.js",
"script:find_unused_deps": "node ./lib/find_unused_dependencies.js",
- "script:remove_tags": "node ./lib/remove_tags.js"
},
"repository": {
"type": "git",