🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

lucidity

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lucidity - npm Package Compare versions

Comparing version

to
0.1.1

6

History.txt

@@ -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.
'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
}

2

package.json
{
"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 [![Build Status](https://travis-ci.org/lucidogen/lucidity.svg)](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