Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/techmsi/generator-factory-component
Yeoman generator for components
https://github.com/techmsi/generator-factory-component
Last synced: about 1 month ago
JSON representation
Yeoman generator for components
- Host: GitHub
- URL: https://github.com/techmsi/generator-factory-component
- Owner: techmsi
- License: mit
- Created: 2015-02-05T17:11:25.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-04-03T11:33:59.000Z (almost 10 years ago)
- Last Synced: 2024-04-09T22:58:16.432Z (9 months ago)
- Language: JavaScript
- Homepage:
- Size: 724 KB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
**Table of Contents**
- [Getting Started](#getting-started)
- [Install Yeoman](#install-yeoman)
- [Overview](#overview)
- [Questions](#questions)
- [Tag Choice](#tag-choice)
- [Folder Choices](#folder-choices)
- [Additional Questions](#additional-questions)
- [One Context](#one-context)
- [More than one context](#more-than-one-context)
- [No Context](#no-context)
- [Breakpoints](#breakpoints)
- [Additional Questions](#additional-questions-1)
- [Single Breakpoint](#single-viewport)
- [Tests](#tests)
- [Running Tests](#running-tests)
- [Contributing](#contributing)
- [License](#license)generator-factory-component [![Build Status](https://secure.travis-ci.org/techmsi/generator-factory-component.png?branch=master)](https://travis-ci.org/techmsi/generator-factory-component)
[![Code Climate](https://codeclimate.com/github/techmsi/generator-factory-component/badges/gpa.svg)](https://codeclimate.com/github/techmsi/generator-factory-component)
[![Test Coverage](https://codeclimate.com/github/techmsi/generator-factory-component/badges/coverage.svg)](https://codeclimate.com/github/techmsi/generator-factory-component)
[![Stories in Ready](https://badge.waffle.io/techmsi/generator-factory-component.png?label=ready&title=Ready)](https://waffle.io/techmsi/generator-factory-component)## Getting Started
### Install Yeoman
```bash
npm install -g yo
```>[Yeoman](http://yeoman.io) generator
To install `generator-factory-component` from npm, run:
```bash
npm install -g generator-factory-component
```Finally, initiate the generator:
```bash
yo component component-name
```## Overview
You will be taken through a series of questions then the following files will be **generated** in all cases* `component-name`/index.html
* `component-name`/index.js
* `component-name`/print.css_The **component-name** is passed as an argument when calling the generator._
## Questions### Tag Choice
* Which tag would you like to use?default: `Section`
* Choose a semantically appropriate tag.### Folder Choices
* Which folders would you like to create?default: `Media Folder, Contexts Folder`
❯ ◉ Media Folder
◉ Contexts Folder#### Additional Questions
_( Answer Choice: Contexts Folder )_* Enter the number of context folders you need
default: `1`##### One Context
* What do you want to name your context folder?default: `mysite`
**Generated Files**
* component-name/contexts/`mysite`/0-600.css
* component-name/contexts/`mysite`/600-1024.css
* component-name/contexts/`mysite`/1024+.css##### More than one context
* Enter the names of your contexts folder separated by commas.default: `mysite,myothersite`
**Generated Files**
* component-name/contexts/`mysite`/0-600.css
* component-name/contexts/`mysite`/600-1024.css
* component-name/contexts/`mysite`/1024+.css
* component-name/contexts/`myothersite`/0-600.css
* component-name/contexts/`myothersite`/600-1024.css
* component-name/contexts/`myothersite`/1024+.css_These **context names** are either defaults or what is entered when prompted._
##### No Context
**Generated Files**
* component-name/0-600.css
* component-name/600-1024.css
* component-name/1024+.css### Breakpoints
* Do you need more than one breakpoint?#### Additional Questions
_( Answer: Yes )_- Which breakpoints would you like to build the css for?
- Will this only be visible on Desktop?
- What is the maximum range for the Mobile Breakpoint? (600)
- What is the maximum range for the Tablet Breakpoint? (1024)**Generated Files**
* component-name/`0-600`.css
* component-name/`600-1024`.css
* component-name/`1024+`.css_These **ranges** are either defaults or what is entered when prompted._
#### Single Breakpoint
_( Answer: No )_**Generated Files**
* component-name/all.css
## Tests
* Tests included in module to check for various cases.* 0 Contexts, Multiple Breakpoints
* 1 Context, Multiple Breakpoints - default
* 2 Contexts, Multiple Breakpoints* 0 Contexts, 1 Breakpoint
* 1 Context, 1 Breakpoint
* 2 Contexts, 1 Breakpoint### Running Tests
```bash
npm test
``````bash
npm test --coverage
``````bash
open coverage/lcov-report/index.html
```## Contributing
Contributions are welcome. Please file issues with any problems that you experience. Pull requests are welcome.
## License
[MIT](LICENSE)