1.3.1-rc.1 • Published 9 years ago

component-helper v1.3.1-rc.1

Weekly downloads
90
License
-
Repository
github
Last release
9 years ago

Component Helper NPM version Circle CI

Create, Build, Test, Serve and Release. Quickly

Installation

npm install -g component-helper

Quick Start

Creating A New Component

To create a new project with a build process, tdd and continuous deployment already set-up

  1. Run component new *component-name* (which will create your component directory)
  2. follow on-screen instructions.
  3. Run npm start within your new directory

More Info >

Enhancing An Existing Project

Get the CLI (build, test, release etc) working within an existing project

  1. Copy the component.config.js into your project root
  2. Remove and Update the the config for your needs
  3. Update the paths object to match your directory structure

Use Cases

API

The component helper can be run from the command line or directly from within NodeJS files (i.e. a gulpfile). The tasks are almost exactly the same.

Once required (var component = require('component-helper');), you can call the following:

CLINode
component new component-nameunavailable
component buildcomponent.build.run(replacements) (optional: replacements object)
component build scriptscomponent.build.scripts()
component build stylescomponent.build.styles()
component build htmlcomponent.build.html(replacements) (optional: replacements object)
component build server-config-filescomponent.build.serverConfigFiles()
component servecomponent.serve.run(config) (optional: server config)
component serve path/to/servecomponent.serve.adhoc(path) (mandatory: path/to/serve)
component testcomponent.test.run()
component test tddcomponent.test.tdd()
component init bowercomponent.init.bower()
component init gitcomponent.init.git(repository) (mandatory: Git URL)
component bump Semantic Versioncomponent.bump.run(versionType) (optional: major, minor, patch, prerelease or semantic version)
component release Semantic Versioncomponent.release.run(versionType) (optional: major, minor, patch, prerelease or semantic version)
component release gh-pagescomponent.release.ghPages(message) (optional: commit message)
component release s3component.release.s3(version) (optional: semantic version)

The CLI and Node will use the config set within component.config.js in your project root.

Contributing to the Helper

This project depends on collaboration between developers. Contributions of any size are actively encouraged.

Read More >