@fabalous/runtime-node
Advanced tools
Comparing version 0.0.10 to 0.0.11
@@ -16,2 +16,10 @@ var path = require('path'); | ||
function getAlias(){ | ||
try { | ||
return __alias; | ||
} catch (e){ | ||
return {}; | ||
} | ||
} | ||
module.exports = { | ||
@@ -34,3 +42,4 @@ entry:entry, | ||
// Add `.ts` and `.tsx` as a resolvable extension. | ||
extensions: ['.webpack.js', '.web.js', '.ts', '.tsx', '.js'] | ||
extensions: ['.webpack.js', '.web.js', '.ts', '.tsx', '.js'], | ||
alias: getAlias() | ||
}, | ||
@@ -72,7 +81,9 @@ | ||
new webpack.DefinePlugin({ | ||
CLIENT: false, | ||
SERVER: true, | ||
TEST:false | ||
}) | ||
'process.env.NODE_ENV': JSON.stringify("development"), | ||
'process.env.FABALOUS_RUNTIME': JSON.stringify("web"), | ||
'process.env.FABALOUS_DEBUG': JSON.stringify(1) | ||
}), | ||
new ProgressBarPlugin(), | ||
new webpack.NamedModulesPlugin() | ||
] | ||
}; |
{ | ||
"name": "@fabalous/runtime-node", | ||
"version": "0.0.10", | ||
"version": "0.0.11", | ||
"description": "Fabalous Node runtime", | ||
@@ -5,0 +5,0 @@ "scripts": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
17461
343