mhy
  • Introduction
  • Basics
    • Installation
    • Usage
    • UI
    • Ecosystem
    • How does it work?
  • Tools
    • Built-ins
      • boot
      • config
      • dep
      • options
      • ui
    • Processes
      • eslint
      • jest
      • node
      • nodemon
      • prettier
      • standard-version
      • storybook-start
      • storybook-build
      • tsc
      • webpack
      • webpack-bundle-analyzer
      • webpack-dev-server
    • Configs
      • eslint
      • gitignore
      • jest
      • manifest
      • mhy
      • npmignore
      • prettier
      • storybook
      • typescript
      • webpack
  • IDE setup
    • WebStorm & PHPStorm
    • VSCode
  • Recipes and Examples
    • package.json overrides
    • Add your own
  • Others
    • FAQ
    • Help
    • Development of mhy
    • Suggest a library
Powered by GitBook
On this page
  • Extend .npmignore with custom file names
  • babel: Deep customization
  • Webpack: Some customization
  • Jest: Load extra environment setup file

Was this helpful?

  1. Recipes and Examples

package.json overrides

Using json-merger's syntax you have powerful ways to customize configs without JavaScript directly in your package.json files. There can be some really exotic cases tho. This is a place to collect some of these solutions.

All samples should be placed inside { "mhy": { HERE } } in your package.json file.

Extend .npmignore with custom file names

"npmignore": {
  "root": {
    "$concat": [
      "/test",
      "/ci.sh",
      "/.gitbook"
    ]
  }
}

babel: Deep customization

Note: Babel support was replaced by SWC, but the example is still helpful.

  1. Change preset-env to produce commonjs modules

  2. Add module.exports statements to each module for default exports (from Babel v7 it is not being added anymore by default)

  3. Remove regenerator-plugin, it doesn't needed in node.

"babel": {
  "production": {
    "presets": [
      {
        "$match": {
          "query": "$[?(@[0].includes('preset-env'))]",
          "value": [
            {
              "$match": {
                "index": 1,
                "value": {
                  "modules": "commonjs",
                  "targets": {
                    "node": true,
                    "esmodules": true
                  }
                }
              }
            }
          ]
        }
      }
    ],
    "plugins": [
      {
        "$prepend": {
          "$expression": "$params.require.resolve('babel-plugin-add-module-exports')"
        }
      },
      {
        "$match": {
          "query": "$[?(@.includes('regenerator'))]",
          "value": {
            "$remove": true
          }
        }
      }
    ]
  }
}

Webpack: Some customization

  1. Generate index.php file instead of index.html (in this case html-webpack-plugin is the first in the plugins array).

  2. Change regex for ignored modules from watch. This exact example is useful when working with locally linked npm modules and you want to recompile on it's changes also.

"webpack": {
    "production": {
        "plugins": [{
            "$expression": "Object.assign($targetProperty.options, {filename : 'index.php'})"
        }]
    },
    "development": {
        "watchOptions": {
            "ignored": [
                "node_modules.(?!(my-module-.*)).*"
            ]
        }
    }
}

Jest: Load extra environment setup file

"jest": {
  "development": {
    "setupFilesAfterEnv": {
      "$concat": [
        "./test-setup.js"
      ]
    }
  }
}
PreviousVSCodeNextAdd your own

Last updated 2 years ago

Was this helpful?