mirror of
https://github.com/react-webpack-generators/generator-react-webpack.git
synced 2025-12-08 18:01:59 +00:00
This commit refactors the template structure for components to multiple different base templates based on the required styling options: - nostyle - with styles - with styles and css modules
12 lines
184 B
JavaScript
12 lines
184 B
JavaScript
'use strict';
|
|
|
|
const config = require('./config');
|
|
const constants = require('./constants');
|
|
const yeoman = require('./yeoman');
|
|
|
|
module.exports = {
|
|
config,
|
|
constants,
|
|
yeoman
|
|
};
|