Skip to content

Commit

Permalink
Init
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinresol committed Dec 3, 2019
0 parents commit b8cb0d7
Show file tree
Hide file tree
Showing 47 changed files with 3,541 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
*.js
1 change: 1 addition & 0 deletions .haxerc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"version":"4.0.0","resolveLibs":"scoped"}
26 changes: 26 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
sudo: required
dist: trusty

language: haxe

os:
- linux
- osx

# you can specify futher versions as found at http://haxe.org/website-content/downloads/versions.json
haxe:
- "3.4.0"
- development

matrix:
allow_failures:
- haxe: development

install:
- haxelib install travix
# to always use the latest version of travix comment out the previous line and uncomment the next
# - haxelib git travix https://github.com/back2dos/travix && pushd . && cd $(haxelib config)travix/git && haxe build-neko.hxml && popd
- haxelib run travix install

script:
- haxelib run travix js
21 changes: 21 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"type": "haxe",
"args": "active configuration",
"problemMatcher": [
"$haxe-absolute",
"$haxe",
"$haxe-error",
"$haxe-trace"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
19 changes: 19 additions & 0 deletions bin/playground/coco/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<style>
* {
margin: 0;
padding: 0;
}
#app {
width: 100vw;
height: 100vh;
}
</style>
</head>
<body>
<div id="app"></div>
<script src="bundle.js"></script>
</body>
</html>
10 changes: 10 additions & 0 deletions bin/playground/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"dependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-three-fiber": "^3.0.15",
"three": "^0.111.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
}
}
19 changes: 19 additions & 0 deletions bin/playground/react/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<style>
* {
margin: 0;
padding: 0;
}
#app {
width: 100vw;
height: 100vh;
}
</style>
</head>
<body>
<div id="app"></div>
<script src="bundle.js"></script>
</body>
</html>
Loading

0 comments on commit b8cb0d7

Please sign in to comment.