Skip to content

Commit

Permalink
fix: save as JSON: integer type for correct sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
popstas committed Aug 20, 2020
1 parent eef898b commit fa48b5a
Show file tree
Hide file tree
Showing 6 changed files with 365 additions and 155 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,6 @@ data/*
*.csv
*.xlsx
.~*
/*.json
!package.json
!package-lock.json
12 changes: 12 additions & 0 deletions scripts/deploy.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/bin/bash
set -eu

rm -rf dist
npm run generate
cd web
git init
git add -A
git commit -m "deploy"
git remote add origin git@github.com:viasite/site-audit-seo.git
git push --force origin master:gh-pages
cd ..

0 comments on commit fa48b5a

Please sign in to comment.