@kaliber/build 0.0.119 → 0.0.120
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/build.js +3 -2
- package/package.json +1 -1
package/lib/build.js
CHANGED
@@ -48,7 +48,7 @@ const templateRenderers = require('./getTemplateRenderers')
|
|
48
48
|
|
49
49
|
const isProduction = process.env.NODE_ENV === 'production'
|
50
50
|
|
51
|
-
const { kaliber: { compileWithBabel: userDefinedcompileWithBabel = [], publicPath = '/' } = {} } = require('@kaliber/config')
|
51
|
+
const { kaliber: { compileWithBabel: userDefinedcompileWithBabel = [], publicPath = '/', symlinks = true } = {} } = require('@kaliber/config')
|
52
52
|
|
53
53
|
const recognizedTemplates = Object.keys(templateRenderers)
|
54
54
|
|
@@ -249,7 +249,8 @@ module.exports = function build({ watch }) {
|
|
249
249
|
return {
|
250
250
|
extensions: ['.js', '.mjs'],
|
251
251
|
modules: ['node_modules'],
|
252
|
-
plugins: [absolutePathResolverPlugin(srcDir), fragmentResolverPlugin()]
|
252
|
+
plugins: [absolutePathResolverPlugin(srcDir), fragmentResolverPlugin()],
|
253
|
+
symlinks,
|
253
254
|
}
|
254
255
|
}
|
255
256
|
|
package/package.json
CHANGED