blprnt

0.0.0 • Public • Published

blprnt

Build Status Build status

Under Construction

A tool for describing and generating files and directory structures.

Extracted from ember-cli.

Writing a blueprint

example-blueprint/
├── files
│   ├── lib
│   │   └── __name__.js
│   └── tests
│       └── __name__-test.js
└── index.js

Installing a blueprint

var Blueprint = require('ember-cli-blueprint');
 
var exampleBlueprint = Blueprint.load('path/to/example-blueprint');
 
var options = {
  entity: {
    name: 'foo'
  },
  target: 'path/to/destination'
};
 
fooBlueprint.install(options)
  .then(function() {
    console.log('Done!');
  });

Generates the following:

path/to/destination/
├── lib
│   └── foo.js
└── tests
    └── foo-test.js

Readme

Keywords

none

Package Sidebar

Install

npm i blprnt

Weekly Downloads

0

Version

0.0.0

License

MIT

Last publish

Collaborators

  • ember-cli
  • rwjblue
  • stefanpenner
  • turbo87