rollup-plugin-ec-remove-dev.js 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing,
  13. * software distributed under the License is distributed on an
  14. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  15. * KIND, either express or implied. See the License for the
  16. * specific language governing permissions and limitations
  17. * under the License.
  18. */
  19. /**
  20. * Remove the code of `if (__DEV__) { ... }`.
  21. *
  22. * Usage:
  23. *
  24. * import ecRemoveDevPlugin from 'echats/build/rollup-plugin-ec-remove-dev';
  25. * let rollupConfig = {
  26. * plugins: [
  27. * ecRemoveDevPlugin(),
  28. * ...
  29. * ]
  30. * };
  31. */
  32. const babel = require('@babel/core');
  33. const removeDEVPlugin = require('zrender/build/babel-plugin-transform-remove-dev');
  34. /**
  35. * @param {Object} [opt]
  36. * @param {Object} [opt.sourcemap]
  37. */
  38. module.exports = function ({sourcemap} = {}) {
  39. return {
  40. transform: function (sourceCode) {
  41. let {code, map} = babel.transform(sourceCode, {
  42. plugins: [removeDEVPlugin],
  43. sourceMaps: sourcemap
  44. });
  45. return {code, map};
  46. }
  47. };
  48. };