Skip to content

Commit

Permalink
Merge pull request #21 from mattpolzin/release/0.1.0
Browse files Browse the repository at this point in the history
make changes for first pre-release.
  • Loading branch information
mattpolzin authored Sep 13, 2021
2 parents ef6377e + d8f6a70 commit 887e69a
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 9 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ node_modules/

config.json
harmony
harmony-npm.tar.gz

.*.swp
*.idr~
Expand Down
11 changes: 9 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

idris2 = idris2

.PHONY: all build install clean
.PHONY: all build install package clean

all: build

Expand All @@ -16,11 +16,18 @@ build: node_modules

harmony: build

package: build
rm -rf ./build
rm -rf ./node_modules
# leave ./harmony in place
tar -czvf harmony-npm.tar.gz ./package.json ./harmony

install: harmony
npm install --global

clean:
rm -rf ./build/
rm -rf ./build
rm -rf ./node_modules
rm ./harmony
rm ./harmony-npm.tar.gz

7 changes: 2 additions & 5 deletions harmony.ipkg
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
package harmony
-- version =
version = 0.1.0
authors = "Mathew Polzin"
-- maintainers =
-- license =
license = "MIT"
-- brief =
-- readme =
-- homepage =
Expand All @@ -12,8 +11,6 @@ authors = "Mathew Polzin"
depends = contrib

modules = Main

-- main file (i.e. file to load at REPL)
main = Main

executable = "harmony"
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "harmony",
"version": "0.0.1",
"version": "0.1.0",
"description": "Instill harmony between GitHub collaborators.",
"main": "harmony.js",
"bin": "./harmony",
Expand Down

0 comments on commit 887e69a

Please sign in to comment.