Browse Source

Remove warning bullshit.

pull/334/head
Sebastian Stehle 7 years ago
parent
commit
f2003aa46c
  1. 1
      .dockerignore
  2. 1
      .gitignore
  3. 5
      src/Squidex/app-config/webpack.config.js

1
.dockerignore

@ -22,6 +22,7 @@
**/src/Squidex/Assets/*.* **/src/Squidex/Assets/*.*
**/src/Squidex/appsettings.Development.json **/src/Squidex/appsettings.Development.json
**/src/Squidex/appsettings.Production.json
**/src/Squidex/Properties/launchSettings.json **/src/Squidex/Properties/launchSettings.json
CHANGELOG.md CHANGELOG.md

1
.gitignore

@ -25,6 +25,7 @@ node_modules/
**/wwwroot/scripts/**/*.* **/wwwroot/scripts/**/*.*
/src/Squidex/appsettings.Development.json /src/Squidex/appsettings.Development.json
/src/Squidex/appsettings.Production.json
/src/Squidex/Assets /src/Squidex/Assets
/src/Squidex/package-lock.json /src/Squidex/package-lock.json
/src/Squidex/Properties/launchSettings.json /src/Squidex/Properties/launchSettings.json

5
src/Squidex/app-config/webpack.config.js

@ -48,10 +48,6 @@ module.exports = {
test: /\.mjs$/, test: /\.mjs$/,
type: "javascript/auto", type: "javascript/auto",
include: [/node_modules/], include: [/node_modules/],
}, {
test: /[\/\\]@angular[\/\\]core[\/\\].+\.js$/, // Remove warning from angular6
parser: { system: true },
include: [/node_modules/],
}, { }, {
test: /\.ts$/, test: /\.ts$/,
use: [{ use: [{
@ -144,7 +140,6 @@ module.exports = {
}), }),
new webpack.ContextReplacementPlugin(/moment[\/\\]locale$/, /en/), new webpack.ContextReplacementPlugin(/moment[\/\\]locale$/, /en/),
new webpack.ContextReplacementPlugin(/\@angular(\\|\/)core(\\|\/)fesm5/, helpers.root('app')), // Remove warning from angular6
/** /**
* Shim additional libraries * Shim additional libraries

Loading…
Cancel
Save