我希望有多个应用程序版本,其中每个构建代表指定的theme
。
npm build monokai
会产生monokai主题。项目结构如下:
/themes/default/component.jsx
/themes/monokai/component.jsx
基本上它会归结为/themes/{themeName}/component.jsx
。当然在{themeName}
子目录中会有整个文件夹结构,但每个主题都有相同的文件夹结构,只是不同的html / css。
有没有办法通过webpack
实现这一目标?它不一定要通过npm build {themeName}
工作。