From 7f326812a584a9d172b51d734415f297f0a0ece7 Mon Sep 17 00:00:00 2001 From: Toshimitsu Takahashi Date: Fri, 14 Apr 2017 20:32:18 +0900 Subject: [PATCH 1/2] Build and archive --- bin/archive.sh | 10 ++++++++++ package.json | 2 ++ 2 files changed, 12 insertions(+) create mode 100755 bin/archive.sh diff --git a/bin/archive.sh b/bin/archive.sh new file mode 100755 index 0000000..6e89175 --- /dev/null +++ b/bin/archive.sh @@ -0,0 +1,10 @@ +#!/bin/bash +#-- +# archive.sh +#-- +zipfile=aws-extend-switch-roles.zip + +zip -r $zipfile \ + manifest.json *.html icons/ js/ + +echo "archived: $zipfile" diff --git a/package.json b/package.json index b65badc..ca567a1 100644 --- a/package.json +++ b/package.json @@ -7,6 +7,8 @@ "test": "test" }, "scripts": { + "archive": "./bin/build.sh; ./bin/archive.sh", + "build": "./bin/build.sh", "test": "karma start", "ci": "karma start --single-run" }, From b0a1c883a68b92b49cc31b38c0a5d9f8979d0fd8 Mon Sep 17 00:00:00 2001 From: Toshimitsu Takahashi Date: Fri, 14 Apr 2017 20:42:17 +0900 Subject: [PATCH 2/2] Up v0.4.0 --- manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.json b/manifest.json index a0c6911..cb3c708 100644 --- a/manifest.json +++ b/manifest.json @@ -1,6 +1,6 @@ { "name": "AWS Extend Switch Roles", - "version": "0.3.3", + "version": "0.4.0", "description": "Extend your AWS IAM switching roles. You can set the configuration by aws config format", "short_name": "Extend SwtichRole", "permissions": ["storage"],