From 4af5e4e98e3519eff9c92d434fda1f87ebb98c64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tam=C3=A1s=20Benke?= Date: Thu, 7 Dec 2017 16:06:33 +0100 Subject: [PATCH] Rename the project from fgen to dgen --- README.md | 18 +++++++++--------- dist/index.js | 2 +- docs/index.html | 14 +++++++------- docs/{module-fgen.html => module-dgen.html} | 6 +++--- package.json | 8 ++++---- src/index.js | 2 +- 6 files changed, 25 insertions(+), 25 deletions(-) rename docs/{module-fgen.html => module-dgen.html} (98%) diff --git a/README.md b/README.md index 9cfeb87..b6ad943 100755 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -fgen +dgen ==== [![unstable](http://badges.github.io/stability-badges/dist/unstable.svg)](http://github.com/badges/stability-badges) @@ -8,14 +8,14 @@ fgen Universal generator module to create directories files and template based contents -Read the [API documentation](https://tombenke.github.io/fgen/index.html) +Read the [API documentation](https://tombenke.github.io/dgen/index.html) for further details on how to use this library. ## Installation Run the install command: - npm install --save fgen + npm install --save dgen ## Development @@ -51,10 +51,10 @@ Gain test coverage report: npm run coverage ``` -[npm-badge]: https://badge.fury.io/js/fgen.svg -[npm-url]: https://badge.fury.io/js/fgen -[travis-badge]: https://api.travis-ci.org/tombenke/fgen.svg -[travis-url]: https://travis-ci.org/tombenke/fgen -[Coveralls]: https://coveralls.io/github/tombenke/fgen?branch=master -[BadgeCoveralls]: https://coveralls.io/repos/github/tombenke/fgen/badge.svg?branch=master +[npm-badge]: https://badge.fury.io/js/dgen.svg +[npm-url]: https://badge.fury.io/js/dgen +[travis-badge]: https://api.travis-ci.org/tombenke/dgen.svg +[travis-url]: https://travis-ci.org/tombenke/dgen +[Coveralls]: https://coveralls.io/github/tombenke/dgen?branch=master +[BadgeCoveralls]: https://coveralls.io/repos/github/tombenke/dgen/badge.svg?branch=master diff --git a/dist/index.js b/dist/index.js index 6d3c710..7c60717 100644 --- a/dist/index.js +++ b/dist/index.js @@ -6,7 +6,7 @@ /** * Universal generator module to create directories files and template based contents * - * @module fgen + * @module dgen */ var _lodash = require('lodash'); diff --git a/docs/index.html b/docs/index.html index f02ff0c..4b70ac5 100644 --- a/docs/index.html +++ b/docs/index.html @@ -43,15 +43,15 @@

-

fgen

unstable -npm version -Build Status -Coveralls

+

dgen

unstable +npm version +Build Status +Coveralls

Universal generator module to create directories files and template based contents

-

Read the API documentation +

Read the API documentation for further details on how to use this library.

Installation

Run the install command:

-
npm install --save fgen

Development

During the development to create the dist package, run either:

+
npm install --save dgen

Development

During the development to create the dist package, run either:

    npm run build

or use

    npm run test:watch

Update the documentation:

    npm run docs

Check the source code:

@@ -68,7 +68,7 @@

Installation

Run the install command:


diff --git a/docs/module-fgen.html b/docs/module-dgen.html similarity index 98% rename from docs/module-fgen.html rename to docs/module-dgen.html index 5066e8c..fe3e3e1 100644 --- a/docs/module-fgen.html +++ b/docs/module-dgen.html @@ -2,7 +2,7 @@ - JSDoc: Module: fgen + JSDoc: Module: dgen @@ -17,7 +17,7 @@
-

Module: fgen

+

Module: dgen

@@ -1135,7 +1135,7 @@
Returns:

diff --git a/package.json b/package.json index ee6ac59..054b7cd 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "fgen", + "name": "dgen", "description": "Universal generator module to create directories files and template based contents", "version": "1.0.0", "tags": [ @@ -12,13 +12,13 @@ "email": "tombenke@gmail.com" }, "bugs": { - "url": "https://github.com/tombenke/fgen/issues" + "url": "https://github.com/tombenke/dgen/issues" }, "license": "MIT", - "homepage": "https://github.com/tombenke/fgen", + "homepage": "https://github.com/tombenke/dgen", "repository": { "type": "git", - "url": "http://github.com/tombenke/fgen.git" + "url": "http://github.com/tombenke/dgen.git" }, "main": "dist/index.js", "dependencies": { diff --git a/src/index.js b/src/index.js index 8899345..e0fb5ae 100644 --- a/src/index.js +++ b/src/index.js @@ -5,7 +5,7 @@ /** * Universal generator module to create directories files and template based contents * - * @module fgen + * @module dgen */ import * as _ from 'lodash'