From 83767d1a560be2442c7d3555083b362c2ca8868d Mon Sep 17 00:00:00 2001 From: jem Date: Sat, 27 Jun 2020 14:42:42 +0200 Subject: [PATCH] use tgz instead of tar --- RELEASING.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/RELEASING.md b/RELEASING.md index 1e13ce8..5909359 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -10,9 +10,9 @@ mkdir target/npm-build cp mastodon-bot.js target/npm-build/ cp package.json target/npm-build/ cp README.md target/npm-build/ -tar -c -C target/npm-build -f target/npm-build.tar . +tar -cz -C target/npm-build -f target/npm-build.tgz . -npm publish ./target/npm-build.tar --access public --tag dev0 +npm publish ./target/npm-build.tgz --access public --tag dev0 ``` ## prod release (should be done from master) @@ -34,9 +34,9 @@ mkdir target/npm-build cp mastodon-bot.js target/npm-build/ cp package.json target/npm-build/ cp README.md target/npm-build/ -tar -c -C target/npm-build -f target/npm-build.tar . +tar -cz -C target/npm-build -f target/npm-build.tgz . -npm publish ./target/npm-build.tar --access public --tag [version] +npm publish ./target/npm-build.tgz --access public --tag [version] # Bump version vi shadow-cljs.edn