Skip to content

Commit

Permalink
renamed dist files, closes #22. and updated npmignore to distribute a…
Browse files Browse the repository at this point in the history
…ll version through npm, closes #23.
  • Loading branch information
millermedeiros committed Jun 7, 2011
1 parent 54cb27d commit 1c56b56
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 16 deletions.
5 changes: 1 addition & 4 deletions .npmignore
@@ -1,5 +1,2 @@
dev/
dist/js-signals.amd.js
dist/js-signals.js
dist/js-signals.min.js
build.xml
build.xml
10 changes: 5 additions & 5 deletions README.markdown
Expand Up @@ -24,10 +24,10 @@ For a more in-depth introduction read the [JS-Signals Project Page](http://mille
Files inside `dist` folder.

* docs/index.html : Documentation.
* js-signals.js : Uncompressed source code with comments.
* js-signals.amd.js : Uncompressed source code wrapped as an [asynchronous module](http://wiki.commonjs.org/wiki/Modules/AsynchronousDefinition) to be used together with [RequireJS](http://requirejs.org/).
* js-signals.cjs.js : Uncompressed source code wrapped as an [CommonJS module](http://wiki.commonjs.org/wiki/Modules/1.1) to be used on [nodejs](http://nodejs.org/) or any other environment that supports CommonJS modules.
* js-signals.min.js : Compressed code.
* signals.js : Uncompressed source code with comments.
* signals.amd.js : Uncompressed source code wrapped as an [asynchronous module](http://wiki.commonjs.org/wiki/Modules/AsynchronousDefinition) to be used together with [RequireJS](http://requirejs.org/).
* signals.cjs.js : Uncompressed source code wrapped as an [CommonJS module](http://wiki.commonjs.org/wiki/Modules/1.1) to be used on [nodejs](http://nodejs.org/) or any other environment that supports CommonJS modules.
* signals.min.js : Compressed code.

You can install JS-Signals on Node.js using [NPM](http://npmjs.org/)

Expand Down Expand Up @@ -61,4 +61,4 @@ This project uses [Apache Ant](http://ant.apache.org/) for the build process. If

This will delete all JS files inside the `dist` folder, merge/update/compress source files, validate generated code using [JSLint](http://www.jslint.com/) and copy the output to the `dist` folder.

**IMPORTANT:** `dist` folder always contain the latest version, regular users should **not** need to run build task.
**IMPORTANT:** `dist` folder always contain the latest version, regular users should **not** need to run build task.
4 changes: 2 additions & 2 deletions dev/build/build.number
@@ -1,3 +1,3 @@
#Build Number for ANT. Do not edit!
#Tue May 03 01:20:15 BRT 2011
build.number=180
#Tue Jun 07 01:13:26 BRT 2011
build.number=181
2 changes: 1 addition & 1 deletion dev/build/build.properties
Expand Up @@ -10,7 +10,7 @@ yuicompressor.jar = ${build.dir}/yuicompressor/yuicompressor-2.4.2.jar
jslint.jar = ${build.dir}/jslint4java/jslint4java-1.4.6.jar
yuitest-coverage.jar = ${build.dir}/yuitest-coverage/yuitest-coverage-0.5.5.jar
yuitest-coverage-report.jar = ${build.dir}/yuitest-coverage/yuitest-coverage-report-0.5.5.jar
product.name = js-signals
product.name = signals
version.number = 0.6.1
dist.name = ${product.name}.js
dist.amd.name = ${product.name}.amd.js
Expand Down
2 changes: 1 addition & 1 deletion dist/js-signals.amd.js → dist/signals.amd.js
Expand Up @@ -6,7 +6,7 @@
* Released under the MIT license <http://www.opensource.org/licenses/mit-license.php>
* @author Miller Medeiros <http://millermedeiros.com/>
* @version 0.6.1
* @build 179 (05/03/2011 01:20 AM)
* @build 180 (06/07/2011 01:13 AM)
*/
define(function(){

Expand Down
2 changes: 1 addition & 1 deletion dist/js-signals.cjs.js → dist/signals.cjs.js
Expand Up @@ -6,7 +6,7 @@
* Released under the MIT license <http://www.opensource.org/licenses/mit-license.php>
* @author Miller Medeiros <http://millermedeiros.com/>
* @version 0.6.1
* @build 179 (05/03/2011 01:20 AM)
* @build 180 (06/07/2011 01:13 AM)
*/

/**
Expand Down
2 changes: 1 addition & 1 deletion dist/js-signals.js → dist/signals.js
Expand Up @@ -6,7 +6,7 @@
* Released under the MIT license <http://www.opensource.org/licenses/mit-license.php>
* @author Miller Medeiros <http://millermedeiros.com/>
* @version 0.6.1
* @build 179 (05/03/2011 01:20 AM)
* @build 180 (06/07/2011 01:13 AM)
*/
(function(global){

Expand Down
2 changes: 1 addition & 1 deletion dist/js-signals.min.js → dist/signals.min.js

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

0 comments on commit 1c56b56

Please sign in to comment.