Skip to content
This repository was archived by the owner on Mar 28, 2023. It is now read-only.

Commit 39ef4b0

Browse files
committed
Generates proper hierarchy and marks as stable.
1 parent 8201ac8 commit 39ef4b0

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dist:
99
mkdir -p dist
1010

1111
dist/core.lambda.umd.js: compile dist
12-
$(browserify) lib/index.js --standalone Lambda > $@
12+
$(browserify) lib/index.js --standalone folktale.core.lambda > $@
1313

1414
dist/core.lambda.umd.min.js: dist/core.lambda.umd.js
1515
$(uglify) --mangle - < $^ > $@

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ core.lambda
44
[![Build Status](https://secure.travis-ci.org/folktale/core.lambda.png?branch=master)](https://travis-ci.org/folktale/core.lambda)
55
[![NPM version](https://badge.fury.io/js/core.lambda.png)](http://badge.fury.io/js/core.lambda)
66
[![Dependencies Status](https://david-dm.org/folktale/core.lambda.png)](https://david-dm.org/folktale/core.lambda)
7-
[![experimental](http://hughsk.github.io/stability-badges/dist/experimental.svg)](http://github.com/hughsk/stability-badges)
7+
[![stable](http://badges.github.io/stability-badges/dist/stable.svg)](http://github.com/badges/stability-badges)
88

99

1010
Core combinators and higher-order functions
@@ -57,7 +57,7 @@ require(['core.lambda'], function(Lambda) {
5757
### Using without modules
5858

5959
[Download the latest release][release], and load the `core.lambda.umd.js`
60-
file. The properties are exposed in the global `Lambda` object:
60+
file. The properties are exposed in the global `folktale.core.lambda` object:
6161

6262
```html
6363
<script src="/path/to/core.lambda.umd.js"></script>
@@ -82,12 +82,12 @@ any JavaScript environment.
8282

8383
You can [read the documentation online][docs] or build it yourself:
8484

85-
$ git clone git://github.com/folktale/monads.maybe.git
86-
$ cd monads.maybe
85+
$ git clone git://github.com/folktale/core.lambda.git
86+
$ cd core.lambda
8787
$ npm install
8888
$ make documentation
8989

90-
Then open the file `docs/literate/index.html` in your browser.
90+
Then open the file `docs/index.html` in your browser.
9191

9292

9393
## Platform support
@@ -111,6 +111,6 @@ Released under the [MIT licence](https://github.com/folktale/core.lambda/blob/ma
111111
[es5-shim]: https://github.com/kriskowal/es5-shim
112112
[docs]: http://folktale.github.io/core.lambda
113113
<!-- [release: https://github.com/folktale/core.lambda/releases/download/v$VERSION/core.lambda-$VERSION.tar.gz] -->
114-
[release]: https://github.com/folktale/core.lambda/releases/download/v0.3.0/core.lambda-0.3.0.tar.gz
114+
[release]: https://github.com/folktale/core.lambda/releases/download/v1.0.0/core.lambda-1.0.0.tar.gz
115115
<!-- [/release] -->
116116

0 commit comments

Comments
 (0)