1
0
Fork 0
mirror of https://github.com/betagouv/mon-entreprise synced 2025-02-09 02:55:01 +00:00
mon-entreprise/source/webpack.common.js
Maxime Quandalle e9d5f1c62b 🔥 Rangement
* Suppression de fichiers "documentation" qui n'avaient pas été modifiés
  depuis deux ans et n'étaient plus à jour
* Déplacement de base.yaml dans un répertoire publicode de premier
  niveau. Déplacement de la traduction des règles dans le répertoire
  source/locales
* Suppression de la page /documentation/exemples qui n'était pas
  référencée sur le site, pas consultée dans nos stats, et boguée.
* Suppression de la configuration git quotepath qui ne semble plus utile
2020-02-05 14:30:54 +01:00

181 lines
4.5 KiB
JavaScript

/* eslint-env node */
const HTMLPlugin = require('html-webpack-plugin')
const CopyPlugin = require('copy-webpack-plugin')
const { EnvironmentPlugin } = require('webpack')
const path = require('path')
module.exports.default = {
resolve: {
alias: {
Engine: path.resolve('source/engine/'),
Actions: path.resolve('source/actions/'),
Ui: path.resolve('source/components/ui/'),
Components: path.resolve('source/components/'),
Selectors: path.resolve('source/selectors/'),
Reducers: path.resolve('source/reducers/'),
Types: path.resolve('source/types/'),
Publicode: path.resolve('publicode/'),
Images: path.resolve('source/images/')
},
extensions: ['.js', '.ts', '.tsx']
},
entry: {
'mon-entreprise': './source/sites/mon-entreprise.fr/entry.fr.tsx',
infrance: './source/sites/mon-entreprise.fr/entry.en.tsx',
'simulateur-iframe-integration':
'./source/sites/mon-entreprise.fr/iframe-integration-script.js',
publicodes: './source/sites/publi.codes/entry.js'
},
output: {
path: path.resolve('./dist/'),
globalObject: 'self'
},
plugins: [
new EnvironmentPlugin({
EN_SITE: '/infrance${path}',
FR_SITE: '/mon-entreprise${path}',
MASTER: false
}),
new CopyPlugin([
'./manifest.webmanifest',
{
from: './source/sites/mon-entreprise.fr/robots.txt',
to: 'robots.infrance.txt'
},
{
from: './source/sites/mon-entreprise.fr/sitemap.fr.txt',
to: 'sitemap.infrance.fr.txt'
},
{
from: './source/sites/mon-entreprise.fr/sitemap.en.txt',
to: 'sitemap.infrance.en.txt'
},
{
from: './source/images',
to: 'images'
},
{
from: './source/data',
to: 'data'
},
{
from: './source/sites/mon-entreprise.fr/favicon',
to: 'favicon'
}
])
]
}
module.exports.styleLoader = styleLoader => ({
test: /\.css$/,
use: [
{ loader: styleLoader },
{
loader: 'css-loader',
options: {
sourceMap: true,
importLoaders: 1
}
},
{
loader: 'postcss-loader'
}
]
})
module.exports.commonLoaders = ({ legacy = false } = {}) => {
const babelLoader = {
loader: 'babel-loader',
options: {
presets: [
[
'@babel/preset-env',
{
targets: !legacy
? {
esmodules: true
}
: {
esmodules: false,
browsers: ['ie 11']
},
useBuiltIns: 'entry',
corejs: '3'
}
]
]
}
}
return [
{
test: /\.(js|ts|tsx)$/,
loader: babelLoader,
exclude: /node_modules|dist/
},
{
test: /\.(jpe?g|png|svg)$/,
use: {
loader: 'file-loader',
options: {
name: 'images/[name].[ext]'
}
}
},
{
test: /\.yaml$/,
use: ['json-loader', 'yaml-loader']
},
{
test: /\.toml$/,
use: ['toml-loader']
},
{
test: /\.ne$/,
use: [babelLoader, 'nearley-loader']
}
]
}
module.exports.HTMLPlugins = ({ injectTrackingScript = false } = {}) => [
new HTMLPlugin({
template: 'index.html',
inject: false,
injectTrackingScript,
// mycompanyinfrance.fr :
chunks: ['infrance'],
title:
'My company in France: A step-by-step guide to start a business in France',
description:
'Find the type of company that suits you and follow the steps to register your company. Discover the French social security system by simulating your hiring costs. Discover the procedures to hire in France and learn the basics of French labour law.',
filename: 'infrance.html',
shareImage: 'https://mon-entreprise.fr/images/logo-mycompany-share.png',
logo: 'images/logo-mycompany.svg'
}),
new HTMLPlugin({
template: 'index.html',
inject: false,
injectTrackingScript,
// mon-entreprise.fr :
chunks: ['mon-entreprise'],
title: "Mon-entreprise.fr : L'assistant officiel du créateur d'entreprise",
description:
'Du statut juridique à la première embauche, en passant par la simulation des cotisations, vous trouverez ici toutes les ressources pour démarrer votre activité.',
filename: 'mon-entreprise.html',
shareImage: 'https://mon-entreprise.fr/images/logo-share.png',
logo: 'images/logo.svg'
}),
new HTMLPlugin({
template: 'index.html',
inject: false,
// mon-entreprise.fr :
chunks: ['publicodes'],
title: 'publicodes - langage et plateforme de publication de calculs',
description:
'Un langage de calcul ouvert, lisible en français, contributif pour encoder et publier les sujets de société.',
filename: 'publicodes.html',
shareImage: 'https://mon-entreprise.fr/images/logo-share.png',
logo: 'https://mon-entreprise.fr/images/illustration.svg'
})
]