Skip to content

Commit

Permalink
fix(stark-build): enhance regex for 3rd party libs to be transpiled t…
Browse files Browse the repository at this point in the history
…o ES5 in Linux, Mac and Windows

ISSUES CLOSED: #918
  • Loading branch information
christophercr committed Dec 6, 2018
1 parent e491e9a commit c4a4c36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/stark-build/config/webpack.dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ module.exports = function(env) {
* reference: https://github.com/babel/babel-loader
*/
{
test: /node_modules\\.*\.js$/,
exclude: /node_modules\\(@angular|@mdi|@ng-idle|@nationalbankbelgium|@ngrx|@ngx-translate|@uirouter|cerialize|class-validator|core-js|ibantools|lodash|prettier|rxjs)/,
test: /node_modules.*\.js$/,
exclude: /node_modules.*(@angular|@mdi|@ng-idle|@nationalbankbelgium|@ngrx|@ngx-translate|@uirouter|cerialize|class-validator|core-js|ibantools|lodash|prettier|rxjs)/,
use: {
loader: "babel-loader",
options: {
Expand Down

0 comments on commit c4a4c36

Please sign in to comment.