File tree Expand file tree Collapse file tree 11 files changed +23
-79
lines changed Expand file tree Collapse file tree 11 files changed +23
-79
lines changed Original file line number Diff line number Diff line change 1
1
language : node_js
2
+ sudo : false
2
3
node_js :
3
4
- 0.10
4
5
env :
8
9
- wget -O $HOME/purescript.tar.gz https://github.com/purescript/purescript/releases/download/$TAG/linux64.tar.gz
9
10
- tar -xvf $HOME/purescript.tar.gz -C $HOME/
10
11
- chmod a+x $HOME/purescript
11
- - npm install bower gulp -g
12
- - npm install && bower install
12
+ - npm install
13
13
script :
14
- - gulp
14
+ - npm run build
Original file line number Diff line number Diff line change 1
1
# purescript-strings
2
2
3
+ [ ![ Latest release] ( http://img.shields.io/bower/v/purescript-strings.svg )] ( https://github.com/purescript/purescript-strings/releases )
3
4
[ ![ 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 )
4
6
5
7
String and char utility functions, regular expressions.
6
8
@@ -12,7 +14,7 @@ bower install purescript-strings
12
14
13
15
## Module documentation
14
16
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 )
Original file line number Diff line number Diff line change 6
6
" purescript"
7
7
],
8
8
"license" : " MIT" ,
9
+ "repository" : {
10
+ "type" : " git" ,
11
+ "url" : " git://github.com/purescript/purescript-strings.git"
12
+ },
9
13
"ignore" : [
10
14
" **/.*" ,
11
15
" bower_components" ,
12
16
" node_modules" ,
13
17
" output" ,
14
18
" bower.json" ,
15
- " gulpfile.js" ,
16
19
" package.json"
17
20
],
18
21
"dependencies" : {
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
{
2
2
"private" : true ,
3
+ "scripts" : {
4
+ "postinstall" : " pulp dep install" ,
5
+ "build" : " jshint src && jscs src && pulp build && rimraf docs && pulp docs"
6
+ },
3
7
"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"
10
12
}
11
13
}
Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ exports.length = function (s) {
87
87
return s . length ;
88
88
} ;
89
89
90
- exports [ " _localeCompare" ] = function ( lt ) {
90
+ exports . _localeCompare = function ( lt ) {
91
91
return function ( eq ) {
92
92
return function ( gt ) {
93
93
return function ( s1 ) {
You can’t perform that action at this time.
0 commit comments