Skip to content

Commit 2467a77

Browse files
Release v0.0.1-alpha
1 parent 8100aa2 commit 2467a77

File tree

3 files changed

+24
-1
lines changed

3 files changed

+24
-1
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*.zip
2+

Makefile

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
libname=sortablejs.npm
2+
zipname=${libname}.zip
3+
4+
noop:
5+
# Check the available Makefile targets
6+
7+
${zipname}:
8+
rm -f ${zipname}
9+
zip -r $@ ./* -x \*.zip
10+
11+
set-pkg: sortablejs.npm.zip
12+
haxelib dev ${libname}
13+
haxelib install ${zipname}
14+
haxelib path ${libname}
15+
16+
set-dev:
17+
haxelib dev ${libname} ${PWD}
18+
haxelib path ${libname}
19+
20+
.PHONY: ${zipname} set-pkg set-dev
21+

haxelib.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"license" : "BSD",
55
"tags" : ["nodejs"],
66
"description" : "Exters for sortablejs | RubaXa/Sortable",
7-
"version" : "0.0.0-alpha",
7+
"version" : "0.0.1-alpha",
88
"classPath" : "lib",
99
"releasenote" : "Initial work",
1010
"contributors" : ["jonasmalacofilho", "protocubo"],

0 commit comments

Comments
 (0)