Skip to content

Commit

Permalink
Setting verison to 0.0.1
Browse files Browse the repository at this point in the history
Updated _index.js, package.json, and README.md to set version to 0.0.1
for initial tagging and publication to NPM.
  • Loading branch information
tlei123 committed Mar 2, 2015
1 parent bf8be00 commit 9eeca70
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
13 changes: 10 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# generator-tze [![Build Status](https://secure.travis-ci.org/tlei123/generator-tze.png?branch=master)](https://travis-ci.org/tlei123/generator-tze)
[WORK IN PROGRESS! Not published to NPM yet!]
# generator-tze 0.0.1 [![Build Status](https://secure.travis-ci.org/tlei123/generator-tze.png?branch=master)](https://travis-ci.org/tlei123/generator-tze)

This is a custom "basic" Yeoman Generator with just the Node modules and Javascript libraries I need to quickly start developing simple web applications:

Expand All @@ -24,4 +23,12 @@ This is a custom "basic" Yeoman Generator with just the Node modules and Javascr

## Setup

[Instructions will be provided when the Generator's published to NPM]
Once the above dependencies have been installed:
```npm install -g generator-tze```

Create and switch to your project folder:
```mkdir path/to/myproject```
```cd path/to/myproject```

Generate your project:
```yo tze```
2 changes: 1 addition & 1 deletion app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ var tzeGenerator = yeoman.generators.Base.extend({
{
name: 'version',
message: 'Version?',
default: '0.1.0'
default: '0.0.1'
},
{
name: 'author',
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "generator-tze",
"version": "0.1.0",
"version": "0.0.1",
"description": "Yeoman generator",
"license": "MIT",
"main": "app/index.js",
Expand Down

0 comments on commit 9eeca70

Please sign in to comment.