Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
gitlab-ce
Commits
934cb7d2
Commit
934cb7d2
authored
Feb 09, 2017
by
Alfredo Sumaran
Committed by
Regis
Feb 14, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merge branch 'upgrade-webpack-v2.2' into 'master'
Upgrade to webpack v2.2.1 See merge request !9078
parent
e0d8c9d4
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
35 additions
and
20 deletions
+35
-20
changelogs/unreleased/upgrade-webpack-v2-2.yml
changelogs/unreleased/upgrade-webpack-v2-2.yml
+4
-0
config/dependency_decisions.yml
config/dependency_decisions.yml
+12
-0
config/webpack.config.js
config/webpack.config.js
+14
-13
package.json
package.json
+5
-7
No files found.
changelogs/unreleased/upgrade-webpack-v2-2.yml
0 → 100644
View file @
934cb7d2
---
title
:
upgrade to webpack v2.2
merge_request
:
9078
author
:
config/dependency_decisions.yml
View file @
934cb7d2
...
@@ -308,3 +308,15 @@
...
@@ -308,3 +308,15 @@
:why: https://github.com/substack/node-wordwrap/blob/0.0.3/LICENSE
:why: https://github.com/substack/node-wordwrap/blob/0.0.3/LICENSE
:versions: []
:versions: []
:when: 2017-02-08 20:17:13.084968000 Z
:when: 2017-02-08 20:17:13.084968000 Z
-
-
:approve
-
spdx-expression-parse
-
:who: Mike Greiling
:why: https://github.com/kemitchell/spdx-expression-parse.js/blob/v1.0.4/LICENSE
:versions: []
:when: 2017-02-08 22:33:01.806977000 Z
-
-
:approve
-
spdx-license-ids
-
:who: Mike Greiling
:why: https://github.com/shinnn/spdx-license-ids/blob/v1.2.2/LICENSE
:versions: []
:when: 2017-02-08 22:35:00.225232000 Z
config/webpack.config.js
View file @
934cb7d2
...
@@ -48,24 +48,23 @@ var config = {
...
@@ -48,24 +48,23 @@ var config = {
devtool
:
'
inline-source-map
'
,
devtool
:
'
inline-source-map
'
,
module
:
{
module
:
{
loader
s
:
[
rule
s
:
[
{
{
test
:
/
\.(
js|es6
)
$/
,
test
:
/
\.(
js|es6
)
$/
,
exclude
:
/
(
node_modules|vendor
\/
assets
)
/
,
exclude
:
/
(
node_modules|vendor
\/
assets
)
/
,
loader
:
'
babel-loader
'
,
loader
:
'
babel-loader
'
,
query
:
{
options
:
{
presets
:
[
'
es2015
'
,
'
stage-2
'
]
presets
:
[
[
"
es2015
"
,
{
"
modules
"
:
false
}],
'
stage-2
'
]
}
}
},
},
{
{
test
:
/
\.(
js|es6
)
$/
,
test
:
/
\.(
js|es6
)
$/
,
exclude
:
/node_modules/
,
exclude
:
/node_modules/
,
loader
:
'
imports-loader
'
,
loader
:
'
imports-loader
'
,
query
:
'
this=>window
'
options
:
'
this=>window
'
},
{
test
:
/
\.
json$/
,
loader
:
'
json-loader
'
}
}
]
]
},
},
...
@@ -86,7 +85,7 @@ var config = {
...
@@ -86,7 +85,7 @@ var config = {
],
],
resolve
:
{
resolve
:
{
extensions
:
[
'
'
,
'
.js
'
,
'
.es6
'
,
'
.js.es6
'
],
extensions
:
[
'
.js
'
,
'
.es6
'
,
'
.js.es6
'
],
alias
:
{
alias
:
{
'
~
'
:
path
.
join
(
ROOT_PATH
,
'
app/assets/javascripts
'
),
'
~
'
:
path
.
join
(
ROOT_PATH
,
'
app/assets/javascripts
'
),
'
bootstrap/js
'
:
'
bootstrap-sass/assets/javascripts/bootstrap
'
,
'
bootstrap/js
'
:
'
bootstrap-sass/assets/javascripts/bootstrap
'
,
...
@@ -102,14 +101,16 @@ if (IS_PRODUCTION) {
...
@@ -102,14 +101,16 @@ if (IS_PRODUCTION) {
config
.
devtool
=
'
source-map
'
;
config
.
devtool
=
'
source-map
'
;
config
.
plugins
.
push
(
config
.
plugins
.
push
(
new
webpack
.
NoErrorsPlugin
(),
new
webpack
.
NoErrorsPlugin
(),
new
webpack
.
LoaderOptionsPlugin
({
minimize
:
true
,
debug
:
false
}),
new
webpack
.
optimize
.
UglifyJsPlugin
({
new
webpack
.
optimize
.
UglifyJsPlugin
({
compress
:
{
warnings
:
false
}
sourceMap
:
true
}),
}),
new
webpack
.
DefinePlugin
({
new
webpack
.
DefinePlugin
({
'
process.env
'
:
{
NODE_ENV
:
JSON
.
stringify
(
'
production
'
)
}
'
process.env
'
:
{
NODE_ENV
:
JSON
.
stringify
(
'
production
'
)
}
}),
})
new
webpack
.
optimize
.
DedupePlugin
(),
new
webpack
.
optimize
.
OccurrenceOrderPlugin
()
);
);
}
}
...
...
package.json
View file @
934cb7d2
...
@@ -19,20 +19,18 @@
...
@@ -19,20 +19,18 @@
"
compression-webpack-plugin
"
:
"
^0.3.2
"
,
"
compression-webpack-plugin
"
:
"
^0.3.2
"
,
"
d3
"
:
"
3.5.11
"
,
"
d3
"
:
"
3.5.11
"
,
"
dropzone
"
:
"
4.2.0
"
,
"
dropzone
"
:
"
4.2.0
"
,
"
exports-loader
"
:
"
^0.6.3
"
,
"
imports-loader
"
:
"
^0.6.5
"
,
"
imports-loader
"
:
"
^0.6.5
"
,
"
jquery
"
:
"
2.2.1
"
,
"
jquery
"
:
"
2.2.1
"
,
"
jquery-ui
"
:
"
github:jquery/jquery-ui#1.11.4
"
,
"
jquery-ui
"
:
"
github:jquery/jquery-ui#1.11.4
"
,
"
jquery-ujs
"
:
"
1.2.1
"
,
"
jquery-ujs
"
:
"
1.2.1
"
,
"
json-loader
"
:
"
^0.5.4
"
,
"
mousetrap
"
:
"
1.4.6
"
,
"
mousetrap
"
:
"
1.4.6
"
,
"
select2
"
:
"
3.5.2-browserify
"
,
"
select2
"
:
"
3.5.2-browserify
"
,
"
stats-webpack-plugin
"
:
"
^0.4.
2
"
,
"
stats-webpack-plugin
"
:
"
^0.4.
3
"
,
"
underscore
"
:
"
1.8.3
"
,
"
underscore
"
:
"
1.8.3
"
,
"
vue
"
:
"
2.0.3
"
,
"
vue
"
:
"
2.0.3
"
,
"
vue-resource
"
:
"
0.9.3
"
,
"
vue-resource
"
:
"
0.9.3
"
,
"
webpack
"
:
"
^
1.14.0
"
,
"
webpack
"
:
"
^
2.2.1
"
,
"
webpack-dev-server
"
:
"
^
1.16.2
"
"
webpack-dev-server
"
:
"
^
2.3.0
"
},
},
"devDependencies"
:
{
"devDependencies"
:
{
"
eslint
"
:
"
^3.10.1
"
,
"
eslint
"
:
"
^3.10.1
"
,
...
@@ -43,10 +41,10 @@
...
@@ -43,10 +41,10 @@
"
istanbul
"
:
"
^0.4.5
"
,
"
istanbul
"
:
"
^0.4.5
"
,
"
jasmine-core
"
:
"
^2.5.2
"
,
"
jasmine-core
"
:
"
^2.5.2
"
,
"
jasmine-jquery
"
:
"
^2.1.1
"
,
"
jasmine-jquery
"
:
"
^2.1.1
"
,
"
karma
"
:
"
^1.
3.0
"
,
"
karma
"
:
"
^1.
4.1
"
,
"
karma-jasmine
"
:
"
^1.1.0
"
,
"
karma-jasmine
"
:
"
^1.1.0
"
,
"
karma-phantomjs-launcher
"
:
"
^1.0.2
"
,
"
karma-phantomjs-launcher
"
:
"
^1.0.2
"
,
"
karma-sourcemap-loader
"
:
"
^0.3.7
"
,
"
karma-sourcemap-loader
"
:
"
^0.3.7
"
,
"
karma-webpack
"
:
"
^
1.8.0
"
"
karma-webpack
"
:
"
^
2.0.2
"
}
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment