-
Notifications
You must be signed in to change notification settings - Fork 24
Open
Description
I configured as guided by the document and I debugged this plugin, found that it does have commented all matching conditional parts.
However, the final bundle file does not have commented.
source
// #if process.env.APP_NAME === 'M'
alert('Hello M');
// #endif
// #if process.env.APP_NAME === 'U'
alert('Hello U');
// #endifdebug output:
// #if process.env.APP_NAME === 'M'
// alert('Hello M');
// #endif
// #if process.env.APP_NAME === 'U'
// alert('Hello U');
// #endifbundle js:
AComponent.prototype.onTap = function () {
var _this = this;
// #if process.env.APP_NAME === 'M'
alert('Hello M');
// #endif
// #if process.env.APP_NAME === 'U'
alert('Hello U');
// #endifMetadata
Metadata
Assignees
Labels
No labels