Skip to content

Commit

Permalink
Version 0.1.3-alpha.
Browse files Browse the repository at this point in the history
+ Updated README.
+ Added npmignore.
  • Loading branch information
LeonardoVal committed Feb 28, 2015
1 parent e631965 commit 1781536
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 14 deletions.
10 changes: 10 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
bower_components/
docs/docker/
lib/
node_modules/
src/
tests/
Gruntfile.js
.svn
.git
npm-debug.log
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ Open source under an MIT license. See [LICENSE](LICENSE.md).

Development requires [NodeJS](http://nodejs.org/) (ver >= 0.10). Download the repository and run `npm install` to install: [RequireJS](http://requirejs.org/), [Grunt](http://gruntjs.com/) and some of its plugins. For testing I also use [jsconsole](http://jsconsole.com/).

There is also a dependency with another library of mine: [creatartis-base](http://github.com/LeonardoVal/creatartis-base). It is included in `package.json` as a development dependency, but it is really a production dependency. It must be installed manually. This avoids problems which arise when `npm install` duplicates this module. Running [`npm dedupe`](https://www.npmjs.org/doc/cli/npm-dedupe.html) should help, yet as of the date this was written [it does not work when using URL dependencies](https://github.com/npm/npm/issues/3081#issuecomment-12486316).

## Contact

This software is being continually developed. Suggestions and comments are always welcome via [email](mailto:leonardo.val@creatartis.com).
10 changes: 5 additions & 5 deletions build/ludorum.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build/ludorum.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/ludorum.min.js.map

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions src/__prologue__.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
global.ludorum = init(global.base); // Assumes base is loaded.
}
})(this, function __init__(base) { "use strict";
// Import synonyms. ////////////////////////////////////////////////////////////
// Import synonyms. ////////////////////////////////////////////////////////////////////////////////
var declare = base.declare,
unimplemented = base.objects.unimplemented,
obj = base.obj,
Expand All @@ -23,13 +23,13 @@
Statistics = base.Statistics,
Events = base.Events;

// Library layout. /////////////////////////////////////////////////////////////
// Library layout. /////////////////////////////////////////////////////////////////////////////////
var exports = {
__name__: 'ludorum',
__init__: __init__
__init__: __init__,
__dependencies__: [base]
};
__init__.dependencies = {'creatartis-base': base};


/** The namespace `ludorum.utils` contains miscellaneous classes, functions
and definitions.
*/
Expand Down

0 comments on commit 1781536

Please sign in to comment.