paysera/lib-maba-webpack-extension-bundle 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

paysera/lib-maba-webpack-extension-bundle

Composer 安装命令:

composer require paysera/lib-maba-webpack-extension-bundle

包简介

Provides extensions for maba/webpack-bundle to integrate better into developer environment

README 文档

README

This Bundle allows developer to hook into maba/webpack-bundle webpack.config.js dumping process and make changes needed for developer environment.

Why?

When working with maba/webpack-bundle aliases, you can often end up in situation where neither IDE (PHPStorm) or Eslint gets happy when you import something like this:

import { StaticTextFormGroup } from '@app/js/common/components/StaticText';
import { CheckboxFieldFormGroup } from '@app/js/common/components/CheckboxField';
  1. Eslint yells on you about import/no-unresolved;
  2. IDE (PHPStorm) does not helps you also - no navigation to imported module (ctrl + click);

This is because you run your project from Docker (or any other) container, paths in webpack.config.js are valid only from container but not from host, so IDE (PHPStorm) fails to recognize paths in webpack.config.js.

Installation

composer require --dev paysera/lib-maba-webpack-extension-bundle

In your AppKernel:

    if (in_array($this->getEnvironment(), array('dev', 'test'))) {
        // ...
        $bundles[] = new Paysera\Bundle\MabaWebpackExtensionBundle\PayseraMabaWebpackExtensionBundle();
    }

Configuration

As this Bundle is only needed for development purposes, we suggest you to configure it only in config_dev.yml.

Bundle exposes these options:

paysera_maba_webpack_extension:
    replace_paths:
        /home/app/src: "/home/me/Projects/my-project"
    replace_items:
        webpack_config_path: true
        alias: true
        manifest_path: true
        entry: false
    replaced_webpack_config_path: "%kernel.cache_dir%/webpack.config_%kernel.environment%.js"

maba_webpack:
    aliases:
        prefix: '%' # change the prefix to something different than "@"
  • replace_paths - array of key-value paths to replace in webpack.config.js.
  • replace_items - array of switches where to use replace_paths on.
  • replaced_webpack_config_path - string where to put modified webpack.config.js.
  • change the default maba_webpack.aliases.prefix to something different than @, # or !

Recommended setup

In your config_dev.yml:

paysera_maba_webpack_extension:
    replace_paths:
        /home/app/src: "/home/me/Projects/my-project"

Install eslint-import-resolver-webpack and configure your .eslintrc settings with:

  "settings": {
    "import/resolver": {
      "webpack": {
        "config": "app/cache/dev/webpack.config_dev.js"
      }
    }
  }

With these lines you'll be able to get rid of import/no-unresolved message.

IDE config

Just change IDE's webpack.config.js to app/cache/dev/webpack.config_dev.js

统计信息

  • 总下载量: 9.58k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 2
  • 点击次数: 18
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 2
  • Watchers: 9
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: Unknown
  • 更新时间: 2018-12-23

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固