Skip to content

Commit d250d75

Browse files
committed
Merge pull request #6 from garyb/textchanged
Add TextChanged action for peeking
2 parents 2214c4d + 16c676d commit d250d75

File tree

5 files changed

+100
-159
lines changed

5 files changed

+100
-159
lines changed

.travis.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,18 @@
11
language: node_js
22
sudo: false
33
node_js:
4-
- 0.12
4+
- 5
55
install:
6+
- npm install bower -g
67
- npm install
8+
- bower install
79
script:
810
- npm run build
11+
after_success:
12+
- >-
13+
test $TRAVIS_TAG &&
14+
./node_modules/.bin/psc-publish > .pursuit.json &&
15+
curl -X POST http://pursuit.purescript.org/packages \
16+
-d @.pursuit.json \
17+
-H 'Accept: application/json' \
18+
-H "Authorization: token ${GITHUB_TOKEN}"

README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,10 @@ A [Halogen](https://github.com/slamdata/purescript-halogen) component for the Ac
1212
bower install purescript-ace-halogen
1313
```
1414

15-
## Module documentation
16-
17-
- [Ace.Halogen.Component](docs/Ace/Halogen/Component.md)
15+
## Notes
1816

17+
Ace components may not behave correctly without a `key` property specified for their containing elements when embedding multiple editors on a single page.
1918

20-
## Notes
19+
## Documentation
2120

22-
Please add `Halogen.Component.Properties.key` or `Halogen.Component.Properties.Indexed.key` to wrappers of `Ace.Halogen.Component` if you need to use multiple editors on one page.
21+
Module documentation is [published on Pursuit](http://pursuit.purescript.org/packages/purescript-halogen-css).

docs/Ace/Halogen/Component.md

Lines changed: 0 additions & 84 deletions
This file was deleted.

package.json

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
11
{
22
"private": true,
33
"scripts": {
4-
"postinstall": "pulp dep install",
5-
"build": "pulp build && rimraf docs && pulp docs"
4+
"build": "pulp build"
65
},
76
"devDependencies": {
8-
"pulp": "^4.4.1",
9-
"rimraf": "^2.4.3"
10-
},
11-
"dependencies": {
7+
"pulp": "^7.0.0",
128
"purescript": "^0.7.6"
139
}
1410
}

0 commit comments

Comments
 (0)