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/appsettings.Development.json
**/src/Squidex/appsettings.Production.json
**/src/Squidex/Properties/launchSettings.json
CHANGELOG.md

1
.gitignore

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

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

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

Loading…
Cancel
Save