Skip to content
This repository has been archived by the owner on Jun 15, 2023. It is now read-only.

Commit

Permalink
Merge pull request #1 from cryogenian/update
Browse files Browse the repository at this point in the history
Initial release
  • Loading branch information
cryogenian authored Jun 7, 2017
2 parents c94d85a + 66247f3 commit 80f529f
Show file tree
Hide file tree
Showing 11 changed files with 1,034 additions and 37 deletions.
44 changes: 7 additions & 37 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,37 +1,7 @@
# Logs
logs
*.log
npm-debug.log*

# Runtime data
pids
*.pid
*.seed

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules
jspm_packages

# Optional npm cache directory
.npm

# Optional REPL history
.node_repl_history
/bower_components/
/node_modules/
/.pulp-cache/
/output/
/example/index.js
/.psc*
/.psa*
15 changes: 15 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
language: node_js
dist: trusty
sudo: required
node_js: stable
install:
- npm install
- npm install -g bower
- bower install
script:
- npm run build:browser
after_success:
- >-
test $TRAVIS_TAG &&
echo $GITHUB_TOKEN | pulp login &&
echo y | pulp publish --no-push
24 changes: 24 additions & 0 deletions bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"name": "purescript-leafletjs-halogen",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"output"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/slamdata/purescript-leafletjs-halogen.git"
},
"dependencies": {
"purescript-eff": "^3.1.0",
"purescript-halogen": "^2.0.1",
"purescript-leafletjs": "^0.2.0",
"purescript-halogen-css": "^6.0.0"
},
"devDependencies": {
"purescript-debug": "^3.0.0",
"purescript-random": "^3.0.0"
}
}
1 change: 1 addition & 0 deletions example/entry.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
require("./../output/Main/index.js").main();
15 changes: 15 additions & 0 deletions example/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html>
<head>
<title>
purescript-halogen-leaflet
</title>
<link rel="stylesheet" href="leaflet.css">
<script type="text/javascript" src="index.js"></script>
</head>
<style>
#map, #heatmap-leaflet { width: 600px; height: 600px }
</style>
<body>
</body>
</html>
Loading

0 comments on commit 80f529f

Please sign in to comment.