Comparing version
@@ -0,4 +1,8 @@ | ||
== 0.1.1 2015-09-02 | ||
* Fixed documentation, booting with boot() on lucidity. | ||
== 0.1.0 2015-09-02 | ||
* Initial release. | ||
* Empty library used as meta package for Lucidity dependencies. | ||
* Meta package for Lucidity dependencies. |
14
index.js
'use strict' | ||
const app = require ( 'lucy-app' ) | ||
const boot = require ( 'lucy-boot' ).boot | ||
const forge = require ( 'lucy-forge' ) | ||
const live = require ( 'lucy-live' ) | ||
const util = require ( 'lucy-util' ) | ||
// This is a meta package for the moment. | ||
module.exports = {} | ||
module.exports = | ||
{ app | ||
, boot | ||
, forge | ||
, live | ||
, util | ||
} |
{ | ||
"name": "lucidity", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"description": "An electron application for live arts, shader fun and game prototypes.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -5,7 +5,4 @@ # Lucidity [](https://travis-ci.org/lucidogen/lucidity) | ||
This is a meta package at the moment for all libraries needed to create a | ||
'lucid' app. | ||
This is a meta package for all libraries needed to create a 'lucid' app. | ||
All of this is currently in beta. Please visit website or for more information. | ||
## Installation | ||
@@ -24,8 +21,9 @@ | ||
```Javascript | ||
require ( 'lucy-boot' ) | ||
require ( 'lucidity' ) | ||
.boot () | ||
``` | ||
Now you can start Lucidity from within the root directory. Note that this | ||
application is empty and does nothing. | ||
Now you can start your application from within the root directory. Your | ||
application will be run by executing the code in the workbench: | ||
`lucy/work/index.js`. | ||
@@ -54,4 +52,9 @@ ```Shell | ||
## Issues | ||
Please fill in issues for the specific libraries, not the meta-package 'lucidity'. | ||
## Release History | ||
* 0.1.1 (2015-09-02) Updated docs. | ||
* 0.1.0 (2015-09-02) Initial release. |
@@ -5,4 +5,10 @@ 'use strict' | ||
.should () | ||
const Lucy = require ( '../index' ) | ||
const lucy = require ( '../index' ) | ||
const app = require ( 'lucy-app' ) | ||
const boot = require ( 'lucy-boot' ).boot | ||
const forge = require ( 'lucy-forge' ) | ||
const live = require ( 'lucy-live' ) | ||
const util = require ( 'lucy-util' ) | ||
describe | ||
@@ -14,4 +20,11 @@ ( 'Lucidity' | ||
, function () | ||
{ Lucy | ||
.should.deep.equal ( {} ) | ||
{ lucy | ||
.should.deep.equal | ||
( { app | ||
, boot | ||
, forge | ||
, live | ||
, util | ||
} | ||
) | ||
} | ||
@@ -18,0 +31,0 @@ ) |
Sorry, the diff of this file is not supported yet
4414
18.43%42
121.05%58
5.45%