BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
152b292d
Commit
152b292d
authored
Feb 02, 2017
by
Mike Greiling
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
consistently use single quotes
parent
ae1d69c2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
webpack.config.js
config/webpack.config.js
+3
-3
No files found.
config/webpack.config.js
View file @
152b292d
...
@@ -4,7 +4,7 @@ var fs = require('fs');
...
@@ -4,7 +4,7 @@ var fs = require('fs');
var
path
=
require
(
'path'
);
var
path
=
require
(
'path'
);
var
webpack
=
require
(
'webpack'
);
var
webpack
=
require
(
'webpack'
);
var
StatsPlugin
=
require
(
'stats-webpack-plugin'
);
var
StatsPlugin
=
require
(
'stats-webpack-plugin'
);
var
CompressionPlugin
=
require
(
"compression-webpack-plugin"
);
var
CompressionPlugin
=
require
(
'compression-webpack-plugin'
);
var
ROOT_PATH
=
path
.
resolve
(
__dirname
,
'..'
);
var
ROOT_PATH
=
path
.
resolve
(
__dirname
,
'..'
);
var
IS_PRODUCTION
=
process
.
env
.
NODE_ENV
===
'production'
;
var
IS_PRODUCTION
=
process
.
env
.
NODE_ENV
===
'production'
;
...
@@ -53,10 +53,10 @@ var config = {
...
@@ -53,10 +53,10 @@ var config = {
exclude
:
/node_modules/
,
exclude
:
/node_modules/
,
loader
:
'babel-loader'
,
loader
:
'babel-loader'
,
query
:
{
query
:
{
//
"use strict"
was broken in sprockets-es6 due to sprockets concatination method.
//
'use strict'
was broken in sprockets-es6 due to sprockets concatination method.
// many es5 strict errors which were never caught ended up in our es6 assets as a result.
// many es5 strict errors which were never caught ended up in our es6 assets as a result.
// this hack is necessary until they can be fixed.
// this hack is necessary until they can be fixed.
blacklist
:
[
"useStrict"
]
blacklist
:
[
'useStrict'
]
}
}
},
},
{
{
...
...
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