generate_configs
Generate build configurations, CI/CD setups, and workflow files for browser compatibility based on specified targets and project types.
Instructions
Generate complete build configurations, CI/CD setups, and workflow files for browser compatibility
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| configType | No | Type of configuration to generate | all | 
| includePolyfills | No | Include polyfill configurations | |
| projectType | No | Project framework type | react | 
| target | No | Primary browser target for configuration | chrome-37 | 
Input Schema (JSON Schema)
{
  "properties": {
    "configType": {
      "default": "all",
      "description": "Type of configuration to generate",
      "enum": [
        "babel",
        "postcss",
        "webpack",
        "package-json",
        "ci",
        "git-hooks",
        "all"
      ],
      "type": "string"
    },
    "includePolyfills": {
      "default": true,
      "description": "Include polyfill configurations",
      "type": "boolean"
    },
    "projectType": {
      "default": "react",
      "description": "Project framework type",
      "enum": [
        "react",
        "vanilla-js",
        "vue",
        "angular"
      ],
      "type": "string"
    },
    "target": {
      "default": "chrome-37",
      "description": "Primary browser target for configuration",
      "type": "string"
    }
  },
  "required": [],
  "type": "object"
}