我是否可以从NODE_ENV
其他gulpfile.js
文件中传递一些 javascript
变量?
gulpfile.js
// Not related with NODE_ENV!
let isDevelopment = true;
somejsfile.js
/*
I need to get "isDevelopment" from the gulpfile.js...
For the production build, where no NodeJS avaliable, this condition will be
always "false". Maybe it's possible to delete it by webpack.
*/
if (isDevelopment) {
printDebugInfromation();
}
// No neccessirity to print it in the production build
function printDebugInfromation() {
console.log(/* ... */)
}
为什么我不使用NODE_ENV
是必须从控制台更改它的值。
另外,我总是使用webpack
并在gulpfile.js
内配置它,所以也许某些webpack插件可以实现......
答案 0 :(得分:2)
如果您不关心全局命名空间中的冲突
// gulpfile.js
global.isDevelopment = true;
// somejsfile.js
console.log(global.isDevelopment);
或者您可以创建一些配置模块
// my-evn.js module
const env = {};
module.exports = {
set(key, value) {
Object.assign(env, { [key]: value });
},
get(key) {
return env[key];
}
}
// or just like a global-like variable
module.exports = env;
然后在gulpfile.js
const myEnv = require('./my-env.js');
myEnv.set('isDevelopment', true)
和somejsfile.js
const myEnv = require('./my-env.js');
console.log(myEnv.get('isDevelopment'));
或类似的东西,带字符串键的getter不是我的最佳解决方案,但这里的想法是使用一些带有本地存储的共享模块。
答案 1 :(得分:1)
如果要使用webpack
,Define
插件可以执行此操作:
plugins: [
new webpack.DefinePlugin({
IS_DEVELOPMENT: isDevelopment
})
]