uploadSourcemaps.js 808 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. module.exports = {
  2. ignore: {
  3. param: '--ignore',
  4. type: 'array',
  5. },
  6. ignoreFile: {
  7. param: '--ignore-file',
  8. type: 'string',
  9. },
  10. dist: {
  11. param: '--dist',
  12. type: 'string',
  13. },
  14. rewrite: {
  15. param: '--rewrite',
  16. invertedParam: '--no-rewrite',
  17. type: 'boolean',
  18. },
  19. sourceMapReference: {
  20. invertedParam: '--no-sourcemap-reference',
  21. type: 'boolean',
  22. },
  23. stripPrefix: {
  24. param: '--strip-prefix',
  25. type: 'array',
  26. },
  27. stripCommonPrefix: {
  28. param: '--strip-common-prefix',
  29. type: 'boolean',
  30. },
  31. validate: {
  32. param: '--validate',
  33. type: 'boolean',
  34. },
  35. urlPrefix: {
  36. param: '--url-prefix',
  37. type: 'string',
  38. },
  39. urlSuffix: {
  40. param: '--url-suffix',
  41. type: 'string',
  42. },
  43. ext: {
  44. param: '--ext',
  45. type: 'array',
  46. },
  47. };