Skip to content

Commit a27743f

Browse files
authored
Merge pull request #1 from natefaubion/ix-html
Indexed HTML types
2 parents 9e94fd3 + 1fd97d3 commit a27743f

19 files changed

+901
-0
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/bower_components/
2+
/node_modules/
3+
/.pulp-cache/
4+
/output/
5+
/.psc*
6+
/.psa*

.travis.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
language: node_js
2+
dist: trusty
3+
sudo: required
4+
node_js: stable
5+
install:
6+
- npm install -g bower
7+
- npm install
8+
script:
9+
- bower install
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

bower.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
3+
"name": "purescript-dom-indexed",
4+
"homepage": "https://github.com/slamdata/purescript-dom-indexed",
5+
"description": "Typed DOM attributes and properties",
6+
"license": "Apache-2.0",
7+
"repository": {
8+
"type": "git",
9+
"url": "git://github.com/slamdata/purescript-dom-indexed.git"
10+
},
11+
"ignore": [
12+
"**/.*",
13+
"node_modules",
14+
"bower_components",
15+
"output",
16+
"package.json"
17+
],
18+
"dependencies": {
19+
"purescript-prelude": "^2.3.0",
20+
"purescript-media-types": "^2.0.0",
21+
"purescript-dom": "^3.3.0"
22+
},
23+
"devDependencies": {}
24+
}

package.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"private": true,
3+
"scripts": {
4+
"clean": "rimraf output && rimraf .pulp-cache",
5+
"build": "pulp build -- --censor-lib --strict"
6+
},
7+
"devDependencies": {
8+
"pulp": "^10.0.0",
9+
"purescript-psa": "^0.4.0",
10+
"purescript": "^0.10.5",
11+
"rimraf": "^2.5.4"
12+
}
13+
}

0 commit comments

Comments
 (0)