Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
Rosekey
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
freelynetwork
Rosekey
Commits
40c53125
Commit
40c53125
authored
7 years ago
by
syuilo
Browse files
Options
Downloads
Patches
Plain Diff
✌️
parent
f1dc3ebd
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
webpack.config.ts
+6
-16
6 additions, 16 deletions
webpack.config.ts
with
6 additions
and
16 deletions
webpack.config.ts
+
6
−
16
View file @
40c53125
...
...
@@ -21,9 +21,6 @@ import locales from './locales';
const
meta
=
require
(
'
./package.json
'
);
const
version
=
meta
.
version
;
const
env
=
process
.
env
.
NODE_ENV
||
'
development
'
;
const
isProduction
=
env
===
'
production
'
;
//#region Replacer definitions
global
[
'
faReplacement
'
]
=
faReplacement
;
...
...
@@ -42,12 +39,12 @@ global['base64replacement'] = (_, key) => {
const
langs
=
Object
.
keys
(
locales
);
const
entries
=
isP
roduction
const
entries
=
process
.
env
.
NODE_ENV
==
'
p
roduction
'
?
langs
.
map
(
l
=>
[
l
,
false
]).
concat
(
langs
.
map
(
l
=>
[
l
,
true
]))
:
[[
'
ja
'
,
false
]];
module
.
exports
=
entries
.
map
(
x
=>
{
const
[
lang
,
shouldOptimize
]
=
x
;
const
[
lang
,
isProduction
]
=
x
;
// Chunk name
const
name
=
lang
;
...
...
@@ -66,7 +63,7 @@ module.exports = entries.map(x => {
const
output
=
{
path
:
__dirname
+
'
/built/web/assets
'
,
filename
:
`[name].
${
version
}
.
${
lang
}
.
${
shouldOptimize
?
'
min
'
:
'
raw
'
}
.js`
filename
:
`[name].
${
version
}
.
${
lang
}
.
${
isProduction
?
'
min
'
:
'
raw
'
}
.js`
};
const
i18nReplacer
=
new
I18nReplacer
(
lang
as
string
);
...
...
@@ -107,7 +104,7 @@ module.exports = entries.map(x => {
}),
new
webpack
.
DefinePlugin
(
_consts
),
new
webpack
.
DefinePlugin
({
'
process.env.NODE_ENV
'
:
JSON
.
stringify
(
process
.
env
.
NODE_ENV
)
'
process.env.NODE_ENV
'
:
JSON
.
stringify
(
isProduction
?
'
production
'
:
'
development
'
)
}),
new
WebpackOnBuildPlugin
(
stats
=>
{
fs
.
writeFileSync
(
'
./version.json
'
,
JSON
.
stringify
({
...
...
@@ -116,7 +113,7 @@ module.exports = entries.map(x => {
})
];
if
(
shouldOptimize
)
{
if
(
isProduction
)
{
plugins
.
push
(
new
webpack
.
optimize
.
ModuleConcatenationPlugin
());
}
...
...
@@ -241,13 +238,6 @@ module.exports = entries.map(x => {
},
cache
:
true
,
devtool
:
false
,
//'source-map',
optimization
:
{
minimize
:
isProduction
&&
shouldOptimize
},
mode
:
isProduction
?
shouldOptimize
?
'
production
'
:
'
development
'
:
'
development
'
mode
:
isProduction
?
'
production
'
:
'
development
'
};
});
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment