PATH:
home
/
urbaoubp
/
ramondamassage.online
/
wp-content
/
plugins
/
hello-plus
// WordPress webpack config. const defaultConfig = require( '@wordpress/scripts/config/webpack.config' ); // Plugins. const RemoveEmptyScriptsPlugin = require( 'webpack-remove-empty-scripts' ); const CopyWebpackPlugin = require( 'copy-webpack-plugin' ); // Utilities. const path = require( 'path' ); const imagesPath = path.resolve( __dirname, './assets/images' ); const modulesDir = process.cwd() + '/modules/'; const devDir = process.cwd() + '/dev/'; const entryPoints = { // Admin module: 'js/helloplus-onboarding': path.resolve( modulesDir, 'admin/assets/js', 'hello-plus-onboarding.js' ), 'js/helloplus-whats-new': path.resolve( modulesDir, 'admin/assets/js', 'hello-plus-whats-new.js' ), // Content module 'css/helloplus-zigzag': path.resolve( modulesDir, 'content/assets/scss', 'hello-plus-zigzag.scss' ), 'css/helloplus-hero': path.resolve( modulesDir, 'content/assets/scss', 'hello-plus-hero.scss' ), 'css/helloplus-cta': path.resolve( modulesDir, 'content/assets/scss', 'hello-plus-cta.scss' ), 'css/helloplus-flex-hero': path.resolve( modulesDir, 'content/assets/scss', 'hello-plus-flex-hero.scss' ), 'css/helloplus-contact': path.resolve( modulesDir, 'content/assets/scss', 'hello-plus-contact.scss' ), 'js/helloplus-zigzag-fe': path.resolve( modulesDir, 'content/assets/js/frontend', 'hello-plus-zigzag-fe.js' ), 'css/helloplus-control-choose-img': path.resolve( modulesDir, 'content/assets/scss', 'choose-img.scss' ), 'js/helloplus-control-choose-img': path.resolve( modulesDir, 'content/assets/js', 'editor.js' ), // Template Parts module 'css/helloplus-template-parts-editor': path.resolve( modulesDir, 'template-parts/assets/scss', 'editor.scss' ), 'css/helloplus-header': path.resolve( modulesDir, 'template-parts/assets/scss', 'hello-plus-header.scss' ), 'css/helloplus-footer': path.resolve( modulesDir, 'template-parts/assets/scss', 'hello-plus-footer.scss' ), 'css/helloplus-flex-footer': path.resolve( modulesDir, 'template-parts/assets/scss', 'hello-plus-flex-footer.scss' ), 'js/helloplus-header-fe': path.resolve( modulesDir, 'template-parts/assets/js', 'frontend.js' ), 'js/helloplus-editor': path.resolve( modulesDir, 'template-parts/assets/js', 'editor.js' ), // Forms module 'css/helloplus-forms': path.resolve( modulesDir, 'forms/assets/scss/widgets', 'hello-plus-forms.scss' ), 'js/helloplus-forms-editor': path.resolve( modulesDir, 'forms/assets/js', 'editor.js' ), 'js/helloplus-forms-fe': path.resolve( modulesDir, 'forms/assets/js/frontend', 'frontend.js' ), // Classes 'css/helloplus-button': path.resolve( devDir, 'scss', 'ehp-button.scss' ), 'css/helloplus-image': path.resolve( devDir, 'scss', 'ehp-image.scss' ), 'css/helloplus-shapes': path.resolve( devDir, 'scss', 'ehp-shapes.scss' ), 'css/helloplus-column-structure': path.resolve( devDir, 'scss', 'ehp-column-structure.scss' ), }; module.exports = { ...defaultConfig, ...{ entry: entryPoints, output: { ...defaultConfig.output, path: path.resolve( __dirname, './assets' ), }, plugins: [ // Include WP's plugin config. ...defaultConfig.plugins, new CopyWebpackPlugin( { patterns: [ { from: path.resolve( modulesDir, 'content/assets/images' ), to: imagesPath, }, { from: path.resolve( modulesDir, 'forms/assets/images' ), to: imagesPath, }, { from: path.resolve( modulesDir, 'template-parts/assets/images' ), to: imagesPath, }, { from: path.resolve( devDir, 'images' ), to: imagesPath, }, ], } ), // Removes the empty `.js` files generated by webpack but // sets it after WP has generated its `*.asset.php` file. new RemoveEmptyScriptsPlugin( { stage: RemoveEmptyScriptsPlugin.STAGE_AFTER_PROCESS_PLUGINS, } ), ], }, };
[+]
tests
[-] composer.lock
[edit]
[-] index.php
[edit]
[-] readme.txt
[edit]
[-] phpcs.xml
[edit]
[+]
classes
[-] package-lock.json
[edit]
[+]
dev
[-] plugin.php
[edit]
[-] hello-plus.php
[edit]
[-] webpack.config.js
[edit]
[+]
includes
[+]
svn
[+]
bin
[+]
vendor
[+]
..
[-] tsconfig.json
[edit]
[-] phpunit.xml
[edit]
[+]
modules
[+]
assets
[-] composer.json
[edit]
[-] package.json
[edit]