Skip to content

Commit 3367114

Browse files
committed
Init
0 parents  commit 3367114

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+368
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
bin

.haxerc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"version":"3.4.2","resolveLibs":null}

.travis.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
sudo: required
2+
dist: trusty
3+
4+
language: haxe
5+
6+
os:
7+
- linux
8+
- osx
9+
10+
haxe:
11+
- "3.4.0"
12+
- development
13+
14+
matrix:
15+
allow_failures:
16+
- haxe: development
17+
18+
install:
19+
- haxelib install travix
20+
- haxelib run travix install
21+
22+
script:
23+
- haxelib run travix node

.vscode/settings.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"haxe.displayConfigurations": [
3+
["dev.hxml"],
4+
["playground.hxml"]
5+
]
6+
}

.vscode/tasks.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"version": "2.0.0",
3+
"command": "haxe",
4+
"args": ["playground.hxml"],
5+
"problemMatcher": "$haxe"
6+
}

dev.hxml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
tests.hxml
2+
-js bin/node/tests.js
3+
4+
-lib hxnodejs
5+
-lib travix
6+
-lib stripe

haxe_libraries/http-status.hxml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# @install: lix --silent download haxelib:http-status#1.2.2 into http-status/1.2.2/haxelib
2+
-D http-status=1.2.2
3+
-cp ${HAXESHIM_LIBCACHE}/http-status/1.2.2/haxelib/src

haxe_libraries/hxnodejs.hxml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# @install: lix --silent download haxelib:hxnodejs#4.0.9 into hxnodejs/4.0.9/haxelib
2+
-D hxnodejs=4.0.9
3+
-cp ${HAXESHIM_LIBCACHE}/hxnodejs/4.0.9/haxelib/src
4+
-D nodejs
5+
--macro allowPackage('sys')
6+
--macro _hxnodejs.VersionWarning.include()

haxe_libraries/stripe.hxml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
-cp src
2+
-lib tink_web

haxe_libraries/tink_chunk.hxml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# @install: lix --silent download https://github.com/haxetink/tink_chunk/archive/497e183b496b8a2ebce8e052cb7e91c6d734c8e4.tar.gz into tink_chunk/0.1.0/github/497e183b496b8a2ebce8e052cb7e91c6d734c8e4
2+
-D tink_chunk=0.1.0
3+
-cp ${HAXESHIM_LIBCACHE}/tink_chunk/0.1.0/github/497e183b496b8a2ebce8e052cb7e91c6d734c8e4/src

0 commit comments

Comments
 (0)