Skip to content

Commit

Permalink
add crypto-js + deploy script
Browse files Browse the repository at this point in the history
  • Loading branch information
ZanyMonk committed Oct 10, 2021
1 parent 71a2a0b commit e92c7d5
Show file tree
Hide file tree
Showing 8 changed files with 456 additions and 485 deletions.
20 changes: 20 additions & 0 deletions bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"name": "decodapz",
"description": "",
"main": "main.ts",
"authors": [
"zM_ <[email protected]>"
],
"license": "MIT",
"homepage": "https://github.com/ZanyMonk/Decodapz",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
],
"dependencies": {
"crypto-js": "^4.1.1"
}
}
15 changes: 15 additions & 0 deletions deploy-github.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/usr/bin/env sh
set -e

npm run build
cd dist

git init
git remote add origin [email protected]:ZanyMonk/Decodapz.git
git checkout -b gh-pages
git add -A
git commit -m 'deploy'

git push -f origin gh-pages

cd -
Loading

0 comments on commit e92c7d5

Please sign in to comment.