diff --git a/README.md b/README.md index 06bd294b..f71f0a50 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ This rewrite aims to fix longstanding API design issues, significantly improve p You can install this via NPM using this command: ``` -npm install lhorie/mithril.js#rewrite +npm install mithril@1.0.0-rc.2 ``` Examples run out of the box. Just open the HTML files. diff --git a/docs/installation.md b/docs/installation.md index ad661732..38b97b04 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -7,7 +7,7 @@ NPM (Node package manager) is the default package manager that is bundled w/ Nod To use Mithril via NPM: - go to your project folder, and run `npm init` from the command line. This will ask some questions (you can just press enter in all of them to set default values), and a file called `package.json` will be created. -- run `npm install lhorie/mithril.js#rewrite --save`. This will create a folder called `node_modules`, and a `mithril` folder inside of it. It will also add an entry under `dependencies` in the `package.json` file +- run `npm install mithril@1.0.0-rc.2 --save`. This will create a folder called `node_modules`, and a `mithril` folder inside of it. It will also add an entry under `dependencies` in the `package.json` file You are now ready to start using Mithril. The recommended way to structure code is to modularize it via CommonJS modules: @@ -33,7 +33,7 @@ The easiest way to create a bundle is to setup an NPM script for Mithril's bundl "build": "bundle index.js --output app.js --watch" }, "dependencies": { - "mithril": "github:lhorie/mithril.js#rewrite" + "mithril": "github:mithril@1.0.0-rc.2" } } ``` diff --git a/docs/testing.md b/docs/testing.md index 525888e6..fc34a2e8 100644 --- a/docs/testing.md +++ b/docs/testing.md @@ -12,7 +12,7 @@ The easist way to setup the test runner is to create an NPM script for it. Open "test": "ospec" }, "dependencies": { - "mithril": "github:lhorie/mithril.js#rewrite" + "mithril": "github:mithril@1.0.0-rc.2" } } ``` diff --git a/ospec/package.json b/ospec/package.json index 0dd9df2b..d6fdd542 100644 --- a/ospec/package.json +++ b/ospec/package.json @@ -12,5 +12,5 @@ "bin": { "ospec": "./bin/ospec" }, - "repository": "lhorie/mithril.js#rewrite" + "repository": "mithril@1.0.0-rc.2" }