Giter Club home page Giter Club logo

project-chef-templates's Introduction

Welcome to project-chef-templates 👋

license npm

Templates for project-chef CLI

Template Structure

📦framework-name
 ┣ 📂extras
 ┃ ┗ 📂extra-package-name
 ┃ ┃ ┣ 📂init
 ┃ ┃ ┃ ┣ 📜injector.config.json
 ┃ ┃ ┃ ┗ 📜other config files
 ┃ ┃ ┗ 📂main
 ┃ ┃ ┃ ┗ 📜main files to be copied
 ┣ 📂init
 ┃ ┗ 📜index.js
 ┗ 📂main
 ┃ ┗ 📜main files to be copied

There are 3 entry points for a framework template, main, init, extras Either main or init is required or both, extras is optional if you want extra packages to be added.

main

The files here are copied directly to the target

init

An index.js is required for this directory, the default export of this index.js file is ran while creating your boilerplate in the cli. The init files index.js needs to be in es5 format.

I used this to ran commands like create-react-app, gatsby-cli and nextjs. You can adjust it to your own needs.

extras

Here appears the packages that are optional for the user who selected your framework in the cli to create the boilerplate. Every main directory is a standalone package to be installed.

There are 2 entry points for an extra package, either one is required or both.

main

The main files of the extra package to be copied to main directory.

init

This directory is for injecting extra config to the main framework directory For example, you want to add plugins to babel.config.json, install npm packages

For these purposes an injector.config.json is required To install npm packages add package names to the lists:

  • packages

  • devPackages

To alter the main config files the field configs is required this field takes json objects as input,

{
  file:"babel.config.json"
  appenders:["plugins"]
}

The field file is the reference config for the Injector API to get the fields that you want to add to target config, config files must be in json format, copy the config file next to injector.config.json

The fields you want to have as reference and target to alter should be appended to field appenders

For example I want to add plugins to babel.config.json,

Add plugins to appenders, this will read the reference babel.config.json's plugins field, and add the plugins to the target babel.config.json

If you want to alter a nested field use . like: field.nested.target

injector.config.json template

Note: leave the fields empty if not used, all the fields must be present in injector.config.json

Note: to a field, whose value type is a list, the values needed are appended. to a field, whose value type is not a list, the value provided by injector.config.json is replaced with the current value.

Examine the existing templates for further understanding

Please contact me if there is a problem or a question :)

Author

👤 Tolga Erdönmez

Show your support

Give a ⭐️ if this project helped you!


This README was generated with ❤️ by readme-md-generator

project-chef-templates's People

Contributors

tolgaerdonmez avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.