Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alexeipanov/ember-project-builder
Generates your Ember.js project scaffold running blueprints from your yml file
https://github.com/alexeipanov/ember-project-builder
blueprint ember ember-addon ember-cli emberjs scaffold
Last synced: 3 months ago
JSON representation
Generates your Ember.js project scaffold running blueprints from your yml file
- Host: GitHub
- URL: https://github.com/alexeipanov/ember-project-builder
- Owner: alexeipanov
- License: mit
- Created: 2024-08-04T12:38:25.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-09-09T19:58:01.000Z (4 months ago)
- Last Synced: 2024-10-01T08:41:42.022Z (3 months ago)
- Topics: blueprint, ember, ember-addon, ember-cli, emberjs, scaffold
- Language: JavaScript
- Homepage:
- Size: 67.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# ember-project-builder
Generates your project scaffold running blueprints from your yml file## Compatibility
* Ember.js v4.8 or above
* Ember CLI v4.8 or above
* Node.js v18 or above## Requirements
- You'll need to have `flock` command available on your machine.- The script should be running from the Ember project directory.
## Installation
```
pnpm add -D ember-project-builder
```## Usage
```
pnpm project build --file=project.yml
```### project.yml file format
On the top level, you can use these keys:
`routes`, `models`, `controllers`, `templates`, and `components`
each of these should be an array containing items.Item can be just a string:
```
controllers:
- application
```or an object:
```
routes:
- countries:
"reset-namespace": true
```
you can run `ember g --help`
to getting options availableItems can be nested:
```
routes:
- countries:
routes:
- cities
```or
```
models:
- city:
name: string
isCapital: boolean
foundedAt: date
models:
- street:
name: string
```Putting line `"lintFix": false` to the .ember-cli file will drastically speed up running the task.
You can put common options for each item (as well as for blueprint-specific options),
but I think `.ember-cli` file is a better place to do it:```
// .ember-cli
{
/**
Setting `isTypeScriptProject` to true will force the blueprint generators to generate TypeScript
rather than JavaScript by default, when a TypeScript version of a given blueprint is available.
*/
"isTypeScriptProject": false,
"lintFix": false,
"dryRun": true,
"componentClass": "@glimmer/component"
}
```## License
This project is licensed under the [MIT License](LICENSE.md).