Skip to content

Commit cc08e3f

Browse files
committed
Update build
1 parent 45829a5 commit cc08e3f

File tree

11 files changed

+23
-79
lines changed

11 files changed

+23
-79
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
language: node_js
2+
sudo: false
23
node_js:
34
- 0.10
45
env:
@@ -8,7 +9,6 @@ install:
89
- wget -O $HOME/purescript.tar.gz https://github.com/purescript/purescript/releases/download/$TAG/linux64.tar.gz
910
- tar -xvf $HOME/purescript.tar.gz -C $HOME/
1011
- chmod a+x $HOME/purescript
11-
- npm install bower gulp -g
12-
- npm install && bower install
12+
- npm install
1313
script:
14-
- gulp
14+
- npm run build

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# purescript-strings
22

3+
[![Latest release](http://img.shields.io/bower/v/purescript-strings.svg)](https://github.com/purescript/purescript-strings/releases)
34
[![Build Status](https://travis-ci.org/purescript/purescript-strings.svg?branch=master)](https://travis-ci.org/purescript/purescript-strings)
5+
[![Dependency Status](https://www.versioneye.com/user/projects/55848c29363861001b000193/badge.svg?style=flat)](https://www.versioneye.com/user/projects/55848c29363861001b000193)
46

57
String and char utility functions, regular expressions.
68

@@ -12,7 +14,7 @@ bower install purescript-strings
1214

1315
## Module documentation
1416

15-
- [Data.Char](docs/Data.Char.md)
16-
- [Data.String](docs/Data.String.md)
17-
- [Data.String.Regex](docs/Data.String.Regex.md)
18-
- [Data.String.Unsafe](docs/Data.String.Unsafe.md)
17+
- [Data.Char](docs/Data/Char.md)
18+
- [Data.String](docs/Data/String.md)
19+
- [Data.String.Regex](docs/Data/String/Regex.md)
20+
- [Data.String.Unsafe](docs/Data/String/Unsafe.md)

bower.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,16 @@
66
"purescript"
77
],
88
"license": "MIT",
9+
"repository": {
10+
"type": "git",
11+
"url": "git://github.com/purescript/purescript-strings.git"
12+
},
913
"ignore": [
1014
"**/.*",
1115
"bower_components",
1216
"node_modules",
1317
"output",
1418
"bower.json",
15-
"gulpfile.js",
1619
"package.json"
1720
],
1821
"dependencies": {
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

gulpfile.js

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

package.json

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
{
22
"private": true,
3+
"scripts": {
4+
"postinstall": "pulp dep install",
5+
"build": "jshint src && jscs src && pulp build && rimraf docs && pulp docs"
6+
},
37
"devDependencies": {
4-
"gulp": "^3.8.11",
5-
"gulp-jscs": "^1.6.0",
6-
"gulp-jshint": "^1.10.0",
7-
"gulp-plumber": "^1.0.0",
8-
"gulp-purescript": "^0.5.0-rc.1",
9-
"rimraf": "^2.3.3"
8+
"jscs": "^1.13.1",
9+
"jshint": "^2.8.0",
10+
"pulp": "^4.0.2",
11+
"rimraf": "^2.4.1"
1012
}
1113
}

src/Data/String.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ exports.length = function (s) {
8787
return s.length;
8888
};
8989

90-
exports["_localeCompare"] = function (lt) {
90+
exports._localeCompare = function (lt) {
9191
return function (eq) {
9292
return function (gt) {
9393
return function (s1) {

0 commit comments

Comments
 (0)