We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
0 parents commit 66363b6Copy full SHA for 66363b6
.gitignore
@@ -0,0 +1,9 @@
1
+/bower_components/
2
+/node_modules/
3
+/.pulp-cache/
4
+/output/
5
+/.psc*
6
+/.psa*
7
+/.purs*
8
+/.vscode
9
+/package-lock.json
.travis.yml
@@ -0,0 +1,16 @@
+language: node_js
+dist: trusty
+sudo: required
+node_js: stable
+install:
+ - npm install
+ - npm install -g bower
+ - bower install --production
+script:
10
+ - npm run -s build
11
+after_success:
12
+- >-
13
+ test $TRAVIS_TAG &&
14
+ echo $GITHUB_TOKEN | pulp login &&
15
+ echo y | pulp publish --no-push ||
16
+ git status
README.md
@@ -0,0 +1,3 @@
+# purescript-web-xhr
+
+Low-level bindings for `XMLHttpRequest`.
0 commit comments