@kaliber/build 0.0.147 → 0.0.148
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/build.js +2 -2
- package/package.json +1 -1
package/lib/build.js
CHANGED
@@ -69,8 +69,8 @@ const compileWithBabel = kaliberBuildClientModules.concat(
|
|
69
69
|
'WARNING, you specified /@kaliber\\// to be compiled with babel, not all @kaliber\n' +
|
70
70
|
'libraries need to be compiled. An example of this is the @kaliber/config. To get\n' +
|
71
71
|
'rid of this warning, exclude them from the regular expression like this:\n' +
|
72
|
-
' /@kaliber\\/(
|
73
|
-
'We replaced /@kaliber\\// with /@kaliber\\/(
|
72
|
+
' /@kaliber\\/(?!config)\n' +
|
73
|
+
'We replaced /@kaliber\\// with /@kaliber\\/(?!config)/ but this might also cause\n' +
|
74
74
|
'problems with other libraries that dynamically perform requires.\n' +
|
75
75
|
'================================================================================'
|
76
76
|
)
|
package/package.json
CHANGED