Skip to content

Commit

Permalink
no
Browse files Browse the repository at this point in the history
  • Loading branch information
Contra committed Apr 16, 2013
1 parent cc48c16 commit 199617a
Show file tree
Hide file tree
Showing 10 changed files with 820 additions and 30 deletions.
16 changes: 8 additions & 8 deletions Makefile
Expand Up @@ -2,13 +2,13 @@ build: components lib
@rm -rf dist
@mkdir dist
@node_modules/.bin/coffee -b -o dist -c lib/*.coffee
@node_modules/.bin/component build --standalone APPNAME
@mv build/build.js APPNAME.js
@node_modules/.bin/component build --standalone no
@mv build/build.js no.js
@rm -rf build
@node_modules/.bin/uglifyjs -nc --unsafe -mt -o APPNAME.min.js APPNAME.js
@echo "File size (minified): " && cat APPNAME.min.js | wc -c
@echo "File size (gzipped): " && cat APPNAME.min.js | gzip -9f | wc -c
@cp ./APPNAME.js ./examples/
@node_modules/.bin/uglifyjs -nc --unsafe -mt -o no.min.js no.js
@echo "File size (minified): " && cat no.min.js | wc -c
@echo "File size (gzipped): " && cat no.min.js | gzip -9f | wc -c
@cp ./no.js ./examples/

test: build lib
@node_modules/.bin/mocha --compilers coffee:coffee-script
Expand All @@ -17,14 +17,14 @@ components: component.json
@node_modules/.bin/component install --dev

docs: lib
@node_modules/.bin/lidoc README.md manual/*.md lib/*.coffee --output docs --github wearefractal/APPNAME
@node_modules/.bin/lidoc README.md manual/*.md lib/*.coffee --output docs --github wearefractal/no

docs.deploy: docs
@cd docs && \
git init . && \
git add . && \
git commit -m "Update documentation"; \
git push "https://github.com/wearefractal/APPNAME" master:gh-pages --force && \
git push "https://github.com/wearefractal/no" master:gh-pages --force && \
rm -rf .git

clean:
Expand Down
16 changes: 6 additions & 10 deletions README.md
@@ -1,14 +1,13 @@
![status](https://secure.travis-ci.org/wearefractal/APPNAME.png?branch=master)
![status](https://secure.travis-ci.org/wearefractal/no.png?branch=master)

## Information

<table>
<tr>
<td>Package</td><td>APPNAME</td>
<td>Package</td><td>no</td>
</tr>
<tr>
<td>Description</td>
<td>NOTHING HERE YET</td>
<td>is no</td>
</tr>
<tr>
<td>Node Version</td>
Expand All @@ -18,14 +17,11 @@

## Usage

```coffee-script
NOTHING HERE YET
```javascript
var no = require('no');
console.log(no); // no
```

## Examples

You can view more examples in the [example folder.](https://github.com/wearefractal/APPNAME/tree/master/examples)

## LICENSE

(MIT License)
Expand Down
2 changes: 1 addition & 1 deletion component.json
@@ -1,5 +1,5 @@
{
"name": "APPNAME",
"name": "no",
"version": "0.0.1",
"dependencies": {
"component/emitter":"*"
Expand Down
2 changes: 2 additions & 0 deletions dist/main.js

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

0 comments on commit 199617a

Please sign in to comment.