Skip to content

Commit

Permalink
Merge pull request #127 from imolorhe/upgrade-to-1.4.3
Browse files Browse the repository at this point in the history
Upgrade to v1.4.3
  • Loading branch information
imolorhe authored Nov 5, 2017
2 parents 7c98484 + a5c9f82 commit 518a8c2
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions bin/chrome_ext.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
# Remove any chrome-extension directory
rm -rf chrome-extension

# Remove any altair.zip files
rm altair.zip

# Create a new chrome-extension directory
mkdir chrome-extension

Expand All @@ -12,5 +15,11 @@ cp -r dist/* chrome-extension
# Copy the chrome extension specific files into the chrome-extension directory
cp -r chrome-ext-files/* chrome-extension

# Remove all sourcemap files from the chrome-extension directory
find chrome-extension -name '*.map' -type f -delete

# Remove all .DS_Store files from the chrome-extension directory
find chrome-extension -name '.DS_Store' -type f -delete

# Compress the chrome-extension directory into a zip file
zip -r altair.zip chrome-extension
2 changes: 1 addition & 1 deletion chrome-ext-files/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "Altair GraphQL Client",
"short_name": "Altair",
"description": "The only graphQL client you'll ever need.",
"version": "1.4.2",
"version": "1.4.3",
"icons": {
"16": "assets/img/altair_logo_128.png",
"48": "assets/img/altair_logo_128.png",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "altair",
"version": "1.4.2",
"version": "1.4.3",
"license": "MIT",
"author": "[email protected]",
"description": "The best graphQL client you will ever need",
Expand Down

0 comments on commit 518a8c2

Please sign in to comment.