1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00

renamed folder loaders to modules

This commit is contained in:
Sylvain 2022-03-15 09:51:39 +01:00
parent b82b2909d8
commit 2ffe169478
8 changed files with 7 additions and 7 deletions

View File

@ -2,13 +2,13 @@ const { webpackConfig, merge } = require('shakapacker');
const webpack = require('webpack'); const webpack = require('webpack');
const path = require('path'); const path = require('path');
const htmlErb = require('./loaders/html_erb'); const htmlErb = require('./modules/html_erb');
const js = require('./loaders/js'); const js = require('./modules/js');
const jsErb = require('./loaders/js_erb'); const jsErb = require('./modules/js_erb');
const sass = require('./loaders/sass'); const sass = require('./modules/sass');
const sassErb = require('./loaders/sass_erb'); const sassErb = require('./modules/sass_erb');
const html = require('./loaders/html'); const html = require('./modules/html');
const uiTour = require('./loaders/ui-tour'); const uiTour = require('./modules/ui-tour');
// See the shakacode/shakapacker README and docs directory for advice on customizing your webpackConfig. // See the shakacode/shakapacker README and docs directory for advice on customizing your webpackConfig.
const customConfig = { const customConfig = {