condenser 0.0.8 → 0.0.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2405) hide show
  1. checksums.yaml +4 -4
  2. data/lib/condenser/asset.rb +37 -2
  3. data/lib/condenser/environment.rb +15 -0
  4. data/lib/condenser/minifiers/node_modules/.bin/uglifyjs +1 -0
  5. data/lib/condenser/minifiers/node_modules/commander/CHANGELOG.md +419 -0
  6. data/lib/condenser/minifiers/node_modules/commander/LICENSE +22 -0
  7. data/lib/condenser/minifiers/node_modules/commander/Readme.md +428 -0
  8. data/lib/condenser/minifiers/node_modules/commander/index.js +1224 -0
  9. data/lib/condenser/minifiers/node_modules/commander/package.json +70 -0
  10. data/lib/condenser/minifiers/node_modules/commander/typings/index.d.ts +310 -0
  11. data/lib/condenser/minifiers/node_modules/source-map/package.json +1 -1
  12. data/lib/condenser/minifiers/node_modules/uglify-js/LICENSE +1 -1
  13. data/lib/condenser/minifiers/node_modules/uglify-js/README.md +50 -33
  14. data/lib/condenser/minifiers/node_modules/uglify-js/bin/uglifyjs +51 -47
  15. data/lib/condenser/minifiers/node_modules/uglify-js/lib/ast.js +151 -96
  16. data/lib/condenser/minifiers/node_modules/uglify-js/lib/compress.js +3264 -1761
  17. data/lib/condenser/minifiers/node_modules/uglify-js/lib/minify.js +79 -44
  18. data/lib/condenser/minifiers/node_modules/uglify-js/lib/mozilla-ast.js +17 -20
  19. data/lib/condenser/minifiers/node_modules/uglify-js/lib/output.js +350 -384
  20. data/lib/condenser/minifiers/node_modules/uglify-js/lib/parse.js +187 -223
  21. data/lib/condenser/minifiers/node_modules/uglify-js/lib/propmangle.js +45 -55
  22. data/lib/condenser/minifiers/node_modules/uglify-js/lib/scope.js +142 -117
  23. data/lib/condenser/minifiers/node_modules/uglify-js/lib/sourcemap.js +50 -43
  24. data/lib/condenser/minifiers/node_modules/uglify-js/lib/transform.js +52 -81
  25. data/lib/condenser/minifiers/node_modules/uglify-js/lib/utils.js +55 -126
  26. data/lib/condenser/minifiers/node_modules/uglify-js/package.json +10 -11
  27. data/lib/condenser/minifiers/node_modules/uglify-js/tools/domprops.json +1249 -0
  28. data/lib/condenser/minifiers/node_modules/uglify-js/tools/exports.js +3 -3
  29. data/lib/condenser/minifiers/node_modules/uglify-js/tools/node.js +25 -29
  30. data/lib/condenser/minifiers/node_modules/uglify-js/tools/props.html +535 -56
  31. data/lib/condenser/minifiers/package-lock.json +25 -0
  32. data/lib/condenser/pipeline.rb +1 -1
  33. data/lib/condenser/processors/node_modules/{rollup/node_modules/.bin → .bin}/acorn +0 -0
  34. data/lib/condenser/processors/node_modules/@babel/core/lib/config/caching.js +4 -5
  35. data/lib/condenser/processors/node_modules/@babel/core/lib/config/config-chain.js +1 -1
  36. data/lib/condenser/processors/node_modules/@babel/core/lib/config/config-descriptors.js +2 -1
  37. data/lib/condenser/processors/node_modules/@babel/core/lib/config/files/configuration.js +27 -36
  38. data/lib/condenser/processors/node_modules/@babel/core/lib/config/files/index-browser.js +4 -0
  39. data/lib/condenser/processors/node_modules/@babel/core/lib/config/files/index.js +6 -0
  40. data/lib/condenser/processors/node_modules/@babel/core/lib/config/full.js +31 -8
  41. data/lib/condenser/processors/node_modules/@babel/core/lib/config/partial.js +2 -2
  42. data/lib/condenser/processors/node_modules/@babel/core/lib/config/validation/plugins.js +10 -1
  43. data/lib/condenser/processors/node_modules/@babel/core/lib/index.js +3 -1
  44. data/lib/condenser/processors/node_modules/@babel/core/lib/tools/build-external-helpers.js +3 -1
  45. data/lib/condenser/processors/node_modules/@babel/core/lib/transformation/file/file.js +8 -3
  46. data/lib/condenser/processors/node_modules/@babel/core/lib/transformation/file/generate.js +1 -1
  47. data/lib/condenser/processors/node_modules/@babel/core/lib/transformation/file/merge-map.js +14 -22
  48. data/lib/condenser/processors/node_modules/@babel/core/lib/transformation/index.js +36 -5
  49. data/lib/condenser/processors/node_modules/@babel/core/lib/transformation/normalize-file.js +75 -28
  50. data/lib/condenser/processors/node_modules/@babel/core/package.json +21 -16
  51. data/lib/condenser/processors/node_modules/@babel/generator/lib/buffer.js +1 -14
  52. data/lib/condenser/processors/node_modules/@babel/generator/lib/generators/classes.js +6 -45
  53. data/lib/condenser/processors/node_modules/@babel/generator/lib/generators/expressions.js +16 -16
  54. data/lib/condenser/processors/node_modules/@babel/generator/lib/generators/flow.js +119 -15
  55. data/lib/condenser/processors/node_modules/@babel/generator/lib/generators/methods.js +4 -10
  56. data/lib/condenser/processors/node_modules/@babel/generator/lib/generators/modules.js +8 -14
  57. data/lib/condenser/processors/node_modules/@babel/generator/lib/generators/statements.js +7 -13
  58. data/lib/condenser/processors/node_modules/@babel/generator/lib/generators/types.js +8 -22
  59. data/lib/condenser/processors/node_modules/@babel/generator/lib/generators/typescript.js +47 -4
  60. data/lib/condenser/processors/node_modules/@babel/generator/lib/node/index.js +9 -14
  61. data/lib/condenser/processors/node_modules/@babel/generator/lib/node/parentheses.js +36 -42
  62. data/lib/condenser/processors/node_modules/@babel/generator/lib/node/whitespace.js +18 -24
  63. data/lib/condenser/processors/node_modules/@babel/generator/lib/printer.js +11 -33
  64. data/lib/condenser/processors/node_modules/@babel/generator/lib/source-map.js +6 -14
  65. data/lib/condenser/processors/node_modules/@babel/generator/package.json +15 -16
  66. data/lib/condenser/processors/node_modules/@babel/helper-annotate-as-pure/LICENSE +1 -1
  67. data/lib/condenser/processors/node_modules/@babel/helper-annotate-as-pure/lib/index.js +4 -10
  68. data/lib/condenser/processors/node_modules/@babel/helper-annotate-as-pure/package.json +15 -11
  69. data/lib/condenser/processors/node_modules/@babel/helper-builder-binary-assignment-operator-visitor/LICENSE +1 -1
  70. data/lib/condenser/processors/node_modules/@babel/helper-builder-binary-assignment-operator-visitor/lib/index.js +7 -21
  71. data/lib/condenser/processors/node_modules/@babel/helper-builder-binary-assignment-operator-visitor/package.json +13 -12
  72. data/lib/condenser/processors/node_modules/@babel/helper-call-delegate/lib/index.js +13 -27
  73. data/lib/condenser/processors/node_modules/@babel/helper-call-delegate/package.json +14 -14
  74. data/lib/condenser/processors/node_modules/@babel/helper-create-class-features-plugin/lib/decorators.js +23 -47
  75. data/lib/condenser/processors/node_modules/@babel/helper-create-class-features-plugin/lib/features.js +0 -4
  76. data/lib/condenser/processors/node_modules/@babel/helper-create-class-features-plugin/lib/fields.js +139 -150
  77. data/lib/condenser/processors/node_modules/@babel/helper-create-class-features-plugin/lib/index.js +4 -20
  78. data/lib/condenser/processors/node_modules/@babel/helper-create-class-features-plugin/lib/misc.js +13 -29
  79. data/lib/condenser/processors/node_modules/@babel/helper-create-class-features-plugin/lib/typescript.js +12 -0
  80. data/lib/condenser/processors/node_modules/@babel/helper-create-class-features-plugin/package.json +18 -18
  81. data/lib/condenser/processors/node_modules/@babel/helper-create-regexp-features-plugin/LICENSE +22 -0
  82. data/lib/condenser/processors/node_modules/@babel/helper-create-regexp-features-plugin/README.md +19 -0
  83. data/lib/condenser/processors/node_modules/@babel/helper-create-regexp-features-plugin/lib/features.js +27 -0
  84. data/lib/condenser/processors/node_modules/@babel/helper-create-regexp-features-plugin/lib/index.js +116 -0
  85. data/lib/condenser/processors/node_modules/@babel/helper-create-regexp-features-plugin/lib/util.js +55 -0
  86. data/lib/condenser/processors/node_modules/@babel/helper-create-regexp-features-plugin/package.json +68 -0
  87. data/lib/condenser/processors/node_modules/@babel/helper-define-map/lib/index.js +28 -50
  88. data/lib/condenser/processors/node_modules/@babel/helper-define-map/package.json +13 -13
  89. data/lib/condenser/processors/node_modules/@babel/helper-explode-assignable-expression/LICENSE +1 -1
  90. data/lib/condenser/processors/node_modules/@babel/helper-explode-assignable-expression/lib/index.js +17 -23
  91. data/lib/condenser/processors/node_modules/@babel/helper-explode-assignable-expression/package.json +13 -12
  92. data/lib/condenser/processors/node_modules/@babel/helper-function-name/LICENSE +1 -1
  93. data/lib/condenser/processors/node_modules/@babel/helper-function-name/lib/index.js +24 -46
  94. data/lib/condenser/processors/node_modules/@babel/helper-function-name/package.json +14 -13
  95. data/lib/condenser/processors/node_modules/@babel/helper-get-function-arity/LICENSE +1 -1
  96. data/lib/condenser/processors/node_modules/@babel/helper-get-function-arity/lib/index.js +4 -10
  97. data/lib/condenser/processors/node_modules/@babel/helper-get-function-arity/package.json +15 -11
  98. data/lib/condenser/processors/node_modules/@babel/helper-hoist-variables/lib/index.js +5 -11
  99. data/lib/condenser/processors/node_modules/@babel/helper-hoist-variables/package.json +12 -12
  100. data/lib/condenser/processors/node_modules/@babel/helper-member-expression-to-functions/lib/index.js +9 -15
  101. data/lib/condenser/processors/node_modules/@babel/helper-member-expression-to-functions/package.json +12 -12
  102. data/lib/condenser/processors/node_modules/@babel/helper-module-imports/LICENSE +1 -1
  103. data/lib/condenser/processors/node_modules/@babel/helper-module-imports/lib/import-builder.js +31 -45
  104. data/lib/condenser/processors/node_modules/@babel/helper-module-imports/lib/import-injector.js +10 -24
  105. data/lib/condenser/processors/node_modules/@babel/helper-module-imports/package.json +16 -12
  106. data/lib/condenser/processors/node_modules/@babel/helper-module-transforms/lib/index.js +32 -70
  107. data/lib/condenser/processors/node_modules/@babel/helper-module-transforms/lib/normalize-and-load-metadata.js +4 -20
  108. data/lib/condenser/processors/node_modules/@babel/helper-module-transforms/lib/rewrite-live-references.js +33 -69
  109. data/lib/condenser/processors/node_modules/@babel/helper-module-transforms/package.json +16 -16
  110. data/lib/condenser/processors/node_modules/@babel/helper-optimise-call-expression/LICENSE +1 -1
  111. data/lib/condenser/processors/node_modules/@babel/helper-optimise-call-expression/lib/index.js +6 -12
  112. data/lib/condenser/processors/node_modules/@babel/helper-optimise-call-expression/package.json +15 -11
  113. data/lib/condenser/processors/node_modules/@babel/helper-plugin-utils/package.json +1 -0
  114. data/lib/condenser/processors/node_modules/@babel/helper-regex/package.json +3 -5
  115. data/lib/condenser/processors/node_modules/@babel/helper-remap-async-to-generator/LICENSE +1 -1
  116. data/lib/condenser/processors/node_modules/@babel/helper-remap-async-to-generator/lib/index.js +10 -32
  117. data/lib/condenser/processors/node_modules/@babel/helper-remap-async-to-generator/package.json +16 -15
  118. data/lib/condenser/processors/node_modules/@babel/helper-replace-supers/lib/index.js +26 -56
  119. data/lib/condenser/processors/node_modules/@babel/helper-replace-supers/package.json +15 -15
  120. data/lib/condenser/processors/node_modules/@babel/helper-simple-access/LICENSE +1 -1
  121. data/lib/condenser/processors/node_modules/@babel/helper-simple-access/lib/index.js +8 -14
  122. data/lib/condenser/processors/node_modules/@babel/helper-simple-access/package.json +13 -12
  123. data/lib/condenser/processors/node_modules/@babel/helper-split-export-declaration/lib/index.js +8 -14
  124. data/lib/condenser/processors/node_modules/@babel/helper-split-export-declaration/package.json +12 -12
  125. data/lib/condenser/processors/node_modules/@babel/helper-wrap-function/LICENSE +1 -1
  126. data/lib/condenser/processors/node_modules/@babel/helper-wrap-function/lib/index.js +13 -35
  127. data/lib/condenser/processors/node_modules/@babel/helper-wrap-function/package.json +15 -14
  128. data/lib/condenser/processors/node_modules/@babel/helpers/lib/helpers.js +99 -67
  129. data/lib/condenser/processors/node_modules/@babel/helpers/lib/index.js +14 -28
  130. data/lib/condenser/processors/node_modules/@babel/helpers/package.json +15 -15
  131. data/lib/condenser/processors/node_modules/@babel/parser/CHANGELOG.md +13 -13
  132. data/lib/condenser/processors/node_modules/@babel/parser/lib/index.js +1593 -716
  133. data/lib/condenser/processors/node_modules/@babel/parser/lib/index.js.map +1 -0
  134. data/lib/condenser/processors/node_modules/@babel/parser/lib/options.js +35 -0
  135. data/lib/condenser/processors/node_modules/@babel/parser/lib/parser/base.js +24 -0
  136. data/lib/condenser/processors/node_modules/@babel/parser/lib/parser/comments.js +198 -0
  137. data/lib/condenser/processors/node_modules/@babel/parser/lib/parser/expression.js +1703 -0
  138. data/lib/condenser/processors/node_modules/@babel/parser/lib/parser/index.js +59 -0
  139. data/lib/condenser/processors/node_modules/@babel/parser/lib/parser/location.js +49 -0
  140. data/lib/condenser/processors/node_modules/@babel/parser/lib/parser/lval.js +364 -0
  141. data/lib/condenser/processors/node_modules/@babel/parser/lib/parser/node.js +89 -0
  142. data/lib/condenser/processors/node_modules/@babel/parser/lib/parser/statement.js +1529 -0
  143. data/lib/condenser/processors/node_modules/@babel/parser/lib/parser/util.js +228 -0
  144. data/lib/condenser/processors/node_modules/@babel/parser/lib/plugin-utils.js +91 -0
  145. data/lib/condenser/processors/node_modules/@babel/parser/lib/plugins/estree.js +283 -0
  146. data/lib/condenser/processors/node_modules/@babel/parser/lib/plugins/flow.js +2690 -0
  147. data/lib/condenser/processors/node_modules/@babel/parser/lib/plugins/jsx/index.js +516 -0
  148. data/lib/condenser/processors/node_modules/@babel/parser/lib/plugins/jsx/xhtml.js +263 -0
  149. data/lib/condenser/processors/node_modules/@babel/parser/lib/plugins/placeholders.js +204 -0
  150. data/lib/condenser/processors/node_modules/@babel/parser/lib/plugins/typescript/index.js +2076 -0
  151. data/lib/condenser/processors/node_modules/@babel/parser/lib/plugins/typescript/scope.js +94 -0
  152. data/lib/condenser/processors/node_modules/@babel/parser/lib/plugins/v8intrinsic.js +43 -0
  153. data/lib/condenser/processors/node_modules/@babel/parser/lib/tokenizer/context.js +102 -0
  154. data/lib/condenser/processors/node_modules/@babel/parser/lib/tokenizer/index.js +1225 -0
  155. data/lib/condenser/processors/node_modules/@babel/parser/lib/tokenizer/state.js +101 -0
  156. data/lib/condenser/processors/node_modules/@babel/parser/lib/tokenizer/types.js +267 -0
  157. data/lib/condenser/processors/node_modules/@babel/parser/lib/types.js +0 -0
  158. data/lib/condenser/processors/node_modules/@babel/parser/lib/util/identifier.js +99 -0
  159. data/lib/condenser/processors/node_modules/@babel/parser/lib/util/location.js +43 -0
  160. data/lib/condenser/processors/node_modules/@babel/parser/lib/util/scope.js +172 -0
  161. data/lib/condenser/processors/node_modules/@babel/parser/lib/util/scopeflags.js +82 -0
  162. data/lib/condenser/processors/node_modules/@babel/parser/lib/util/whitespace.js +58 -0
  163. data/lib/condenser/processors/node_modules/@babel/parser/package.json +13 -13
  164. data/lib/condenser/processors/node_modules/@babel/parser/typings/babel-parser.d.ts +29 -18
  165. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-async-generator-functions/LICENSE +1 -1
  166. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-async-generator-functions/lib/for-await.js +8 -16
  167. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-async-generator-functions/lib/index.js +10 -42
  168. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-async-generator-functions/package.json +15 -14
  169. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-class-properties/lib/index.js +5 -21
  170. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-class-properties/package.json +9 -9
  171. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-dynamic-import/lib/index.js +4 -20
  172. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-dynamic-import/package.json +14 -14
  173. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-json-strings/LICENSE +1 -1
  174. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-json-strings/lib/index.js +4 -20
  175. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-json-strings/package.json +14 -13
  176. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-object-rest-spread/lib/index.js +109 -100
  177. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-object-rest-spread/package.json +14 -14
  178. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-optional-catch-binding/LICENSE +1 -1
  179. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-optional-catch-binding/lib/index.js +4 -20
  180. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-optional-catch-binding/package.json +14 -13
  181. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/lib/index.js +8 -53
  182. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/package.json +15 -16
  183. data/lib/condenser/processors/node_modules/@babel/plugin-syntax-async-generators/LICENSE +1 -1
  184. data/lib/condenser/processors/node_modules/@babel/plugin-syntax-async-generators/lib/index.js +2 -10
  185. data/lib/condenser/processors/node_modules/@babel/plugin-syntax-async-generators/package.json +12 -11
  186. data/lib/condenser/processors/node_modules/@babel/plugin-syntax-dynamic-import/LICENSE +1 -1
  187. data/lib/condenser/processors/node_modules/@babel/plugin-syntax-dynamic-import/lib/index.js +2 -10
  188. data/lib/condenser/processors/node_modules/@babel/plugin-syntax-dynamic-import/package.json +12 -11
  189. data/lib/condenser/processors/node_modules/@babel/plugin-syntax-json-strings/LICENSE +1 -1
  190. data/lib/condenser/processors/node_modules/@babel/plugin-syntax-json-strings/lib/index.js +2 -10
  191. data/lib/condenser/processors/node_modules/@babel/plugin-syntax-json-strings/package.json +12 -11
  192. data/lib/condenser/processors/node_modules/@babel/plugin-syntax-object-rest-spread/LICENSE +1 -1
  193. data/lib/condenser/processors/node_modules/@babel/plugin-syntax-object-rest-spread/lib/index.js +2 -10
  194. data/lib/condenser/processors/node_modules/@babel/plugin-syntax-object-rest-spread/package.json +12 -11
  195. data/lib/condenser/processors/node_modules/@babel/plugin-syntax-optional-catch-binding/LICENSE +1 -1
  196. data/lib/condenser/processors/node_modules/@babel/plugin-syntax-optional-catch-binding/lib/index.js +2 -10
  197. data/lib/condenser/processors/node_modules/@babel/plugin-syntax-optional-catch-binding/package.json +12 -11
  198. data/lib/condenser/processors/node_modules/@babel/plugin-syntax-top-level-await/LICENSE +22 -0
  199. data/lib/condenser/processors/node_modules/@babel/plugin-syntax-top-level-await/README.md +19 -0
  200. data/lib/condenser/processors/node_modules/@babel/plugin-syntax-top-level-await/lib/index.js +22 -0
  201. data/lib/condenser/processors/node_modules/@babel/plugin-syntax-top-level-await/package.json +53 -0
  202. data/lib/condenser/processors/node_modules/@babel/plugin-transform-arrow-functions/LICENSE +1 -1
  203. data/lib/condenser/processors/node_modules/@babel/plugin-transform-arrow-functions/lib/index.js +2 -10
  204. data/lib/condenser/processors/node_modules/@babel/plugin-transform-arrow-functions/package.json +14 -13
  205. data/lib/condenser/processors/node_modules/@babel/plugin-transform-async-to-generator/lib/index.js +9 -41
  206. data/lib/condenser/processors/node_modules/@babel/plugin-transform-async-to-generator/package.json +15 -15
  207. data/lib/condenser/processors/node_modules/@babel/plugin-transform-block-scoped-functions/LICENSE +1 -1
  208. data/lib/condenser/processors/node_modules/@babel/plugin-transform-block-scoped-functions/lib/index.js +6 -22
  209. data/lib/condenser/processors/node_modules/@babel/plugin-transform-block-scoped-functions/package.json +13 -12
  210. data/lib/condenser/processors/node_modules/@babel/plugin-transform-block-scoping/lib/index.js +78 -109
  211. data/lib/condenser/processors/node_modules/@babel/plugin-transform-block-scoping/lib/tdz.js +10 -18
  212. data/lib/condenser/processors/node_modules/@babel/plugin-transform-block-scoping/package.json +13 -13
  213. data/lib/condenser/processors/node_modules/@babel/plugin-transform-classes/lib/index.js +12 -60
  214. data/lib/condenser/processors/node_modules/@babel/plugin-transform-classes/lib/transformClass.js +69 -107
  215. data/lib/condenser/processors/node_modules/@babel/plugin-transform-classes/package.json +19 -19
  216. data/lib/condenser/processors/node_modules/@babel/plugin-transform-computed-properties/LICENSE +1 -1
  217. data/lib/condenser/processors/node_modules/@babel/plugin-transform-computed-properties/lib/index.js +23 -39
  218. data/lib/condenser/processors/node_modules/@babel/plugin-transform-computed-properties/package.json +13 -12
  219. data/lib/condenser/processors/node_modules/@babel/plugin-transform-destructuring/lib/index.js +75 -91
  220. data/lib/condenser/processors/node_modules/@babel/plugin-transform-destructuring/package.json +13 -13
  221. data/lib/condenser/processors/node_modules/@babel/plugin-transform-dotall-regex/lib/index.js +6 -51
  222. data/lib/condenser/processors/node_modules/@babel/plugin-transform-dotall-regex/package.json +15 -19
  223. data/lib/condenser/processors/node_modules/@babel/plugin-transform-duplicate-keys/lib/index.js +6 -22
  224. data/lib/condenser/processors/node_modules/@babel/plugin-transform-duplicate-keys/package.json +13 -13
  225. data/lib/condenser/processors/node_modules/@babel/plugin-transform-exponentiation-operator/LICENSE +1 -1
  226. data/lib/condenser/processors/node_modules/@babel/plugin-transform-exponentiation-operator/lib/index.js +6 -30
  227. data/lib/condenser/processors/node_modules/@babel/plugin-transform-exponentiation-operator/package.json +14 -13
  228. data/lib/condenser/processors/node_modules/@babel/plugin-transform-for-of/lib/index.js +36 -52
  229. data/lib/condenser/processors/node_modules/@babel/plugin-transform-for-of/package.json +13 -13
  230. data/lib/condenser/processors/node_modules/@babel/plugin-transform-function-name/lib/index.js +5 -21
  231. data/lib/condenser/processors/node_modules/@babel/plugin-transform-function-name/package.json +14 -14
  232. data/lib/condenser/processors/node_modules/@babel/plugin-transform-literals/LICENSE +1 -1
  233. data/lib/condenser/processors/node_modules/@babel/plugin-transform-literals/README.md +1 -1
  234. data/lib/condenser/processors/node_modules/@babel/plugin-transform-literals/lib/index.js +2 -10
  235. data/lib/condenser/processors/node_modules/@babel/plugin-transform-literals/package.json +13 -12
  236. data/lib/condenser/processors/node_modules/@babel/plugin-transform-member-expression-literals/LICENSE +1 -1
  237. data/lib/condenser/processors/node_modules/@babel/plugin-transform-member-expression-literals/lib/index.js +5 -21
  238. data/lib/condenser/processors/node_modules/@babel/plugin-transform-member-expression-literals/package.json +13 -12
  239. data/lib/condenser/processors/node_modules/@babel/plugin-transform-modules-amd/lib/index.js +26 -58
  240. data/lib/condenser/processors/node_modules/@babel/plugin-transform-modules-amd/package.json +14 -14
  241. data/lib/condenser/processors/node_modules/@babel/plugin-transform-modules-commonjs/lib/index.js +22 -62
  242. data/lib/condenser/processors/node_modules/@babel/plugin-transform-modules-commonjs/package.json +16 -16
  243. data/lib/condenser/processors/node_modules/@babel/plugin-transform-modules-systemjs/lib/index.js +56 -86
  244. data/lib/condenser/processors/node_modules/@babel/plugin-transform-modules-systemjs/package.json +15 -15
  245. data/lib/condenser/processors/node_modules/@babel/plugin-transform-modules-umd/LICENSE +1 -1
  246. data/lib/condenser/processors/node_modules/@babel/plugin-transform-modules-umd/lib/index.js +39 -67
  247. data/lib/condenser/processors/node_modules/@babel/plugin-transform-modules-umd/package.json +14 -13
  248. data/lib/condenser/processors/node_modules/@babel/plugin-transform-named-capturing-groups-regex/lib/index.js +6 -47
  249. data/lib/condenser/processors/node_modules/@babel/plugin-transform-named-capturing-groups-regex/package.json +21 -15
  250. data/lib/condenser/processors/node_modules/@babel/plugin-transform-new-target/lib/index.js +5 -21
  251. data/lib/condenser/processors/node_modules/@babel/plugin-transform-new-target/package.json +15 -15
  252. data/lib/condenser/processors/node_modules/@babel/plugin-transform-object-super/lib/index.js +7 -31
  253. data/lib/condenser/processors/node_modules/@babel/plugin-transform-object-super/package.json +14 -14
  254. data/lib/condenser/processors/node_modules/@babel/plugin-transform-parameters/lib/index.js +2 -10
  255. data/lib/condenser/processors/node_modules/@babel/plugin-transform-parameters/lib/params.js +15 -31
  256. data/lib/condenser/processors/node_modules/@babel/plugin-transform-parameters/lib/rest.js +25 -35
  257. data/lib/condenser/processors/node_modules/@babel/plugin-transform-parameters/package.json +15 -15
  258. data/lib/condenser/processors/node_modules/@babel/plugin-transform-property-literals/LICENSE +1 -1
  259. data/lib/condenser/processors/node_modules/@babel/plugin-transform-property-literals/lib/index.js +5 -21
  260. data/lib/condenser/processors/node_modules/@babel/plugin-transform-property-literals/package.json +13 -12
  261. data/lib/condenser/processors/node_modules/@babel/plugin-transform-regenerator/lib/index.js +2 -10
  262. data/lib/condenser/processors/node_modules/@babel/plugin-transform-regenerator/package.json +13 -13
  263. data/lib/condenser/processors/node_modules/@babel/plugin-transform-reserved-words/LICENSE +1 -1
  264. data/lib/condenser/processors/node_modules/@babel/plugin-transform-reserved-words/lib/index.js +4 -20
  265. data/lib/condenser/processors/node_modules/@babel/plugin-transform-reserved-words/package.json +13 -12
  266. data/lib/condenser/processors/node_modules/@babel/plugin-transform-runtime/lib/helpers.js +5 -21
  267. data/lib/condenser/processors/node_modules/@babel/plugin-transform-runtime/lib/index.js +46 -76
  268. data/lib/condenser/processors/node_modules/@babel/plugin-transform-runtime/package.json +15 -15
  269. data/lib/condenser/processors/node_modules/@babel/plugin-transform-shorthand-properties/LICENSE +1 -1
  270. data/lib/condenser/processors/node_modules/@babel/plugin-transform-shorthand-properties/lib/index.js +5 -21
  271. data/lib/condenser/processors/node_modules/@babel/plugin-transform-shorthand-properties/package.json +13 -12
  272. data/lib/condenser/processors/node_modules/@babel/plugin-transform-spread/LICENSE +1 -1
  273. data/lib/condenser/processors/node_modules/@babel/plugin-transform-spread/lib/index.js +20 -36
  274. data/lib/condenser/processors/node_modules/@babel/plugin-transform-spread/package.json +13 -12
  275. data/lib/condenser/processors/node_modules/@babel/plugin-transform-sticky-regex/LICENSE +1 -1
  276. data/lib/condenser/processors/node_modules/@babel/plugin-transform-sticky-regex/lib/index.js +8 -30
  277. data/lib/condenser/processors/node_modules/@babel/plugin-transform-sticky-regex/package.json +13 -12
  278. data/lib/condenser/processors/node_modules/@babel/plugin-transform-template-literals/lib/index.js +19 -35
  279. data/lib/condenser/processors/node_modules/@babel/plugin-transform-template-literals/package.json +14 -14
  280. data/lib/condenser/processors/node_modules/@babel/plugin-transform-typeof-symbol/LICENSE +1 -1
  281. data/lib/condenser/processors/node_modules/@babel/plugin-transform-typeof-symbol/lib/index.js +7 -23
  282. data/lib/condenser/processors/node_modules/@babel/plugin-transform-typeof-symbol/package.json +13 -12
  283. data/lib/condenser/processors/node_modules/@babel/plugin-transform-unicode-regex/lib/index.js +6 -45
  284. data/lib/condenser/processors/node_modules/@babel/plugin-transform-unicode-regex/package.json +15 -16
  285. data/lib/condenser/processors/node_modules/@babel/preset-env/CONTRIBUTING.md +2 -2
  286. data/lib/condenser/processors/node_modules/@babel/preset-env/data/corejs2-built-in-features.js +25 -1
  287. data/lib/condenser/processors/node_modules/@babel/preset-env/data/corejs2-built-ins.json +3 -0
  288. data/lib/condenser/processors/node_modules/@babel/preset-env/data/overlapping-plugins.js +16 -0
  289. data/lib/condenser/processors/node_modules/@babel/preset-env/data/plugins.json +6 -0
  290. data/lib/condenser/processors/node_modules/@babel/preset-env/lib/available-plugins.js +132 -42
  291. data/lib/condenser/processors/node_modules/@babel/preset-env/lib/debug.js +10 -10
  292. data/lib/condenser/processors/node_modules/@babel/preset-env/lib/filter-items.js +11 -11
  293. data/lib/condenser/processors/node_modules/@babel/preset-env/lib/index.js +128 -81
  294. data/lib/condenser/processors/node_modules/@babel/preset-env/lib/normalize-options.js +15 -39
  295. data/lib/condenser/processors/node_modules/@babel/preset-env/lib/polyfills/corejs2/usage-plugin.js +7 -6
  296. data/lib/condenser/processors/node_modules/@babel/preset-env/lib/polyfills/corejs3/built-in-definitions.js +2 -2
  297. data/lib/condenser/processors/node_modules/@babel/preset-env/lib/polyfills/corejs3/entry-plugin.js +48 -54
  298. data/lib/condenser/processors/node_modules/@babel/preset-env/lib/polyfills/corejs3/usage-plugin.js +37 -42
  299. data/lib/condenser/processors/node_modules/@babel/preset-env/lib/polyfills/regenerator/entry-plugin.js +7 -1
  300. data/lib/condenser/processors/node_modules/@babel/preset-env/lib/polyfills/regenerator/usage-plugin.js +7 -1
  301. data/lib/condenser/processors/node_modules/@babel/preset-env/lib/targets-parser.js +10 -35
  302. data/lib/condenser/processors/node_modules/@babel/preset-env/lib/utils.js +26 -56
  303. data/lib/condenser/processors/node_modules/@babel/preset-env/package.json +57 -57
  304. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/AsyncGenerator.js +1 -1
  305. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/asyncGeneratorDelegate.js +5 -0
  306. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/classStaticPrivateFieldSpecGet.js +4 -0
  307. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/classStaticPrivateFieldSpecSet.js +8 -3
  308. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/esm/AsyncGenerator.js +1 -1
  309. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/esm/asyncGeneratorDelegate.js +5 -0
  310. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/esm/classStaticPrivateFieldSpecGet.js +4 -0
  311. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/esm/classStaticPrivateFieldSpecSet.js +8 -3
  312. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/esm/initializerWarningHelper.js +1 -1
  313. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/esm/interopRequireWildcard.js +46 -16
  314. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/esm/iterableToArrayLimit.js +5 -0
  315. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/esm/iterableToArrayLimitLoose.js +5 -0
  316. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/esm/jsx.js +12 -11
  317. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/esm/objectSpread.js +1 -1
  318. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/esm/objectSpread2.js +2 -2
  319. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/esm/package.json +3 -0
  320. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/esm/tdz.js +3 -0
  321. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/esm/temporalRef.js +2 -5
  322. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/esm/temporalUndefined.js +1 -1
  323. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/esm/typeof.js +3 -6
  324. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/esm/wrapRegExp.js +4 -4
  325. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/initializerWarningHelper.js +1 -1
  326. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/interopRequireWildcard.js +47 -16
  327. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/iterableToArrayLimit.js +6 -0
  328. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/iterableToArrayLimitLoose.js +6 -0
  329. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/jsx.js +13 -11
  330. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/objectSpread.js +1 -1
  331. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/objectSpread2.js +2 -2
  332. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/tdz.js +5 -0
  333. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/temporalRef.js +3 -5
  334. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/temporalUndefined.js +3 -1
  335. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/typeof.js +3 -5
  336. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/helpers/wrapRegExp.js +4 -4
  337. data/lib/condenser/processors/node_modules/@babel/runtime-corejs3/package.json +6 -6
  338. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/AsyncGenerator.js +1 -1
  339. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/asyncGeneratorDelegate.js +5 -0
  340. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/classStaticPrivateFieldSpecGet.js +4 -0
  341. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/classStaticPrivateFieldSpecSet.js +8 -3
  342. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/esm/AsyncGenerator.js +1 -1
  343. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/esm/asyncGeneratorDelegate.js +5 -0
  344. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/esm/classStaticPrivateFieldSpecGet.js +4 -0
  345. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/esm/classStaticPrivateFieldSpecSet.js +8 -3
  346. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/esm/initializerWarningHelper.js +1 -1
  347. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/esm/interopRequireWildcard.js +45 -16
  348. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/esm/iterableToArrayLimit.js +4 -0
  349. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/esm/iterableToArrayLimitLoose.js +4 -0
  350. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/esm/jsx.js +10 -10
  351. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/esm/objectSpread.js +1 -1
  352. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/esm/objectSpread2.js +2 -2
  353. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/esm/package.json +3 -0
  354. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/esm/tdz.js +3 -0
  355. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/esm/temporalRef.js +2 -5
  356. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/esm/temporalUndefined.js +1 -1
  357. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/esm/typeof.js +3 -5
  358. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/esm/wrapRegExp.js +4 -4
  359. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/initializerWarningHelper.js +1 -1
  360. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/interopRequireWildcard.js +45 -16
  361. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/iterableToArrayLimit.js +4 -0
  362. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/iterableToArrayLimitLoose.js +4 -0
  363. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/jsx.js +10 -10
  364. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/objectSpread.js +1 -1
  365. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/objectSpread2.js +2 -2
  366. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/tdz.js +5 -0
  367. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/temporalRef.js +3 -5
  368. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/temporalUndefined.js +3 -1
  369. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/typeof.js +3 -5
  370. data/lib/condenser/processors/node_modules/@babel/runtime/helpers/wrapRegExp.js +4 -4
  371. data/lib/condenser/processors/node_modules/@babel/runtime/package.json +13 -8
  372. data/lib/condenser/processors/node_modules/@babel/template/lib/index.js +3 -1
  373. data/lib/condenser/processors/node_modules/@babel/template/lib/options.js +1 -1
  374. data/lib/condenser/processors/node_modules/@babel/template/lib/parse.js +16 -38
  375. data/lib/condenser/processors/node_modules/@babel/template/lib/populate.js +20 -26
  376. data/lib/condenser/processors/node_modules/@babel/template/package.json +13 -13
  377. data/lib/condenser/processors/node_modules/@babel/traverse/lib/context.js +4 -10
  378. data/lib/condenser/processors/node_modules/@babel/traverse/lib/index.js +14 -24
  379. data/lib/condenser/processors/node_modules/@babel/traverse/lib/path/ancestry.js +5 -11
  380. data/lib/condenser/processors/node_modules/@babel/traverse/lib/path/comments.js +5 -11
  381. data/lib/condenser/processors/node_modules/@babel/traverse/lib/path/context.js +14 -10
  382. data/lib/condenser/processors/node_modules/@babel/traverse/lib/path/conversion.js +72 -107
  383. data/lib/condenser/processors/node_modules/@babel/traverse/lib/path/family.js +59 -13
  384. data/lib/condenser/processors/node_modules/@babel/traverse/lib/path/index.js +79 -42
  385. data/lib/condenser/processors/node_modules/@babel/traverse/lib/path/inference/index.js +20 -26
  386. data/lib/condenser/processors/node_modules/@babel/traverse/lib/path/inference/inferer-reference.js +11 -17
  387. data/lib/condenser/processors/node_modules/@babel/traverse/lib/path/inference/inferers.js +40 -46
  388. data/lib/condenser/processors/node_modules/@babel/traverse/lib/path/introspection.js +122 -70
  389. data/lib/condenser/processors/node_modules/@babel/traverse/lib/path/lib/hoister.js +19 -14
  390. data/lib/condenser/processors/node_modules/@babel/traverse/lib/path/lib/virtual-types.js +22 -28
  391. data/lib/condenser/processors/node_modules/@babel/traverse/lib/path/modification.js +9 -15
  392. data/lib/condenser/processors/node_modules/@babel/traverse/lib/path/removal.js +3 -2
  393. data/lib/condenser/processors/node_modules/@babel/traverse/lib/path/replacement.js +27 -49
  394. data/lib/condenser/processors/node_modules/@babel/traverse/lib/scope/index.js +62 -104
  395. data/lib/condenser/processors/node_modules/@babel/traverse/lib/scope/lib/renamer.js +10 -24
  396. data/lib/condenser/processors/node_modules/@babel/traverse/lib/visitors.js +9 -23
  397. data/lib/condenser/processors/node_modules/@babel/traverse/package.json +17 -17
  398. data/lib/condenser/processors/node_modules/@babel/types/lib/asserts/generated/index.js +85 -20
  399. data/lib/condenser/processors/node_modules/@babel/types/lib/builders/builder.js +2 -10
  400. data/lib/condenser/processors/node_modules/@babel/types/lib/builders/generated/index.js +74 -19
  401. data/lib/condenser/processors/node_modules/@babel/types/lib/constants/generated/index.js +5 -1
  402. data/lib/condenser/processors/node_modules/@babel/types/lib/converters/valueToNode.js +4 -20
  403. data/lib/condenser/processors/node_modules/@babel/types/lib/definitions/core.js +7 -5
  404. data/lib/condenser/processors/node_modules/@babel/types/lib/definitions/es2015.js +13 -7
  405. data/lib/condenser/processors/node_modules/@babel/types/lib/definitions/experimental.js +14 -4
  406. data/lib/condenser/processors/node_modules/@babel/types/lib/definitions/flow.js +73 -1
  407. data/lib/condenser/processors/node_modules/@babel/types/lib/definitions/index.js +9 -17
  408. data/lib/condenser/processors/node_modules/@babel/types/lib/definitions/jsx.js +5 -3
  409. data/lib/condenser/processors/node_modules/@babel/types/lib/definitions/misc.js +11 -1
  410. data/lib/condenser/processors/node_modules/@babel/types/lib/definitions/typescript.js +11 -6
  411. data/lib/condenser/processors/node_modules/@babel/types/lib/index.d.ts +502 -44
  412. data/lib/condenser/processors/node_modules/@babel/types/lib/index.js.flow +182 -40
  413. data/lib/condenser/processors/node_modules/@babel/types/lib/utils/inherit.js +2 -10
  414. data/lib/condenser/processors/node_modules/@babel/types/lib/validators/generated/index.js +232 -24
  415. data/lib/condenser/processors/node_modules/@babel/types/lib/validators/isValidIdentifier.js +3 -11
  416. data/lib/condenser/processors/node_modules/@babel/types/package.json +16 -13
  417. data/lib/condenser/processors/node_modules/@babel/types/scripts/generators/flow.js +98 -5
  418. data/lib/condenser/processors/node_modules/@babel/types/scripts/generators/generateAsserts.js +2 -1
  419. data/lib/condenser/processors/node_modules/@babel/types/scripts/generators/typescript.js +175 -17
  420. data/lib/condenser/processors/node_modules/@babel/types/scripts/utils/formatBuilderName.js +2 -1
  421. data/lib/condenser/processors/node_modules/@types/estree/README.md +4 -4
  422. data/lib/condenser/processors/node_modules/@types/estree/flow.d.ts +174 -0
  423. data/lib/condenser/processors/node_modules/@types/estree/index.d.ts +554 -548
  424. data/lib/condenser/processors/node_modules/@types/estree/package.json +16 -15
  425. data/lib/condenser/processors/node_modules/@types/node/README.md +5 -5
  426. data/lib/condenser/processors/node_modules/@types/node/assert.d.ts +4 -6
  427. data/lib/condenser/processors/node_modules/@types/node/async_hooks.d.ts +1 -1
  428. data/lib/condenser/processors/node_modules/@types/node/child_process.d.ts +176 -51
  429. data/lib/condenser/processors/node_modules/@types/node/cluster.d.ts +9 -3
  430. data/lib/condenser/processors/node_modules/@types/node/constants.d.ts +6 -276
  431. data/lib/condenser/processors/node_modules/@types/node/crypto.d.ts +59 -46
  432. data/lib/condenser/processors/node_modules/@types/node/dgram.d.ts +54 -15
  433. data/lib/condenser/processors/node_modules/@types/node/domain.d.ts +5 -5
  434. data/lib/condenser/processors/node_modules/@types/node/events.d.ts +12 -2
  435. data/lib/condenser/processors/node_modules/@types/node/fs.d.ts +208 -47
  436. data/lib/condenser/processors/node_modules/@types/node/globals.d.ts +56 -131
  437. data/lib/condenser/processors/node_modules/@types/node/http.d.ts +18 -9
  438. data/lib/condenser/processors/node_modules/@types/node/http2.d.ts +36 -49
  439. data/lib/condenser/processors/node_modules/@types/node/index.d.ts +8 -25
  440. data/lib/condenser/processors/node_modules/@types/node/module.d.ts +18 -1
  441. data/lib/condenser/processors/node_modules/@types/node/net.d.ts +23 -4
  442. data/lib/condenser/processors/node_modules/@types/node/os.d.ts +157 -127
  443. data/lib/condenser/processors/node_modules/@types/node/package.json +33 -17
  444. data/lib/condenser/processors/node_modules/@types/node/path.d.ts +146 -152
  445. data/lib/condenser/processors/node_modules/@types/node/process.d.ts +12 -0
  446. data/lib/condenser/processors/node_modules/@types/node/querystring.d.ts +1 -4
  447. data/lib/condenser/processors/node_modules/@types/node/readline.d.ts +8 -1
  448. data/lib/condenser/processors/node_modules/@types/node/repl.d.ts +2 -2
  449. data/lib/condenser/processors/node_modules/@types/node/stream.d.ts +18 -1
  450. data/lib/condenser/processors/node_modules/@types/node/tls.d.ts +295 -11
  451. data/lib/condenser/processors/node_modules/@types/node/trace_events.d.ts +3 -3
  452. data/lib/condenser/processors/node_modules/@types/node/ts3.2/fs.d.ts +33 -0
  453. data/lib/condenser/processors/node_modules/@types/node/ts3.2/index.d.ts +1 -5
  454. data/lib/condenser/processors/node_modules/@types/node/ts3.2/util.d.ts +0 -6
  455. data/lib/condenser/processors/node_modules/@types/node/tty.d.ts +2 -1
  456. data/lib/condenser/processors/node_modules/@types/node/url.d.ts +24 -18
  457. data/lib/condenser/processors/node_modules/@types/node/util.d.ts +34 -14
  458. data/lib/condenser/processors/node_modules/@types/node/v8.d.ts +135 -0
  459. data/lib/condenser/processors/node_modules/@types/node/vm.d.ts +15 -0
  460. data/lib/condenser/processors/node_modules/@types/node/worker_threads.d.ts +8 -0
  461. data/lib/condenser/processors/node_modules/@types/node/zlib.d.ts +2 -2
  462. data/lib/condenser/processors/node_modules/{rollup/node_modules/acorn → acorn}/CHANGELOG.md +12 -2
  463. data/lib/condenser/processors/node_modules/{rollup/node_modules/acorn → acorn}/LICENSE +0 -0
  464. data/lib/condenser/processors/node_modules/{rollup/node_modules/acorn → acorn}/README.md +4 -3
  465. data/lib/condenser/processors/node_modules/{rollup/node_modules/acorn → acorn}/bin/acorn +0 -0
  466. data/lib/condenser/processors/node_modules/{rollup/node_modules/acorn → acorn}/dist/acorn.d.ts +1 -1
  467. data/lib/condenser/processors/node_modules/{rollup/node_modules/acorn → acorn}/dist/acorn.js +25 -3
  468. data/lib/condenser/processors/node_modules/{rollup/node_modules/acorn → acorn}/dist/acorn.js.map +0 -0
  469. data/lib/condenser/processors/node_modules/{rollup/node_modules/acorn → acorn}/dist/acorn.mjs +25 -3
  470. data/lib/condenser/processors/node_modules/{rollup/node_modules/acorn → acorn}/dist/acorn.mjs.map +0 -0
  471. data/lib/condenser/processors/node_modules/{rollup/node_modules/acorn → acorn}/dist/bin.js +0 -0
  472. data/lib/condenser/processors/node_modules/{rollup/node_modules/acorn → acorn}/package.json +11 -11
  473. data/lib/condenser/processors/node_modules/browserslist/CHANGELOG.md +29 -0
  474. data/lib/condenser/processors/node_modules/browserslist/README.md +52 -38
  475. data/lib/condenser/processors/node_modules/browserslist/index.js +146 -86
  476. data/lib/condenser/processors/node_modules/browserslist/node.js +67 -37
  477. data/lib/condenser/processors/node_modules/browserslist/package.json +20 -9
  478. data/lib/condenser/processors/node_modules/caniuse-lite/CHANGELOG.md +24 -0
  479. data/lib/condenser/processors/node_modules/caniuse-lite/README.md +7 -1
  480. data/lib/condenser/processors/node_modules/caniuse-lite/data/agents.js +1 -1
  481. data/lib/condenser/processors/node_modules/caniuse-lite/data/browserVersions.js +1 -1
  482. data/lib/condenser/processors/node_modules/caniuse-lite/data/features.js +1 -1
  483. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/aac.js +1 -1
  484. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/abortcontroller.js +1 -1
  485. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/ac3-ec3.js +1 -1
  486. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/accelerometer.js +1 -1
  487. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/addeventlistener.js +1 -1
  488. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/alternate-stylesheet.js +1 -1
  489. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/ambient-light.js +1 -1
  490. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/apng.js +1 -1
  491. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/array-find-index.js +1 -1
  492. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/array-find.js +1 -1
  493. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/array-flat.js +1 -1
  494. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/array-includes.js +1 -1
  495. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/arrow-functions.js +1 -1
  496. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/asmjs.js +1 -1
  497. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/async-clipboard.js +1 -1
  498. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/async-functions.js +1 -1
  499. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/async-iterations-and-generators.js +1 -1
  500. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/atob-btoa.js +1 -1
  501. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/audio-api.js +1 -1
  502. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/audio.js +1 -1
  503. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/audiotracks.js +1 -1
  504. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/autofocus.js +1 -1
  505. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/auxclick.js +1 -1
  506. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/av1.js +1 -1
  507. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/background-attachment.js +1 -1
  508. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/background-clip-text.js +1 -1
  509. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/background-img-opts.js +1 -1
  510. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/background-position-x-y.js +1 -1
  511. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/background-repeat-round-space.js +1 -1
  512. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/background-sync.js +1 -1
  513. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/battery-status.js +1 -1
  514. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/beacon.js +1 -1
  515. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/beforeafterprint.js +1 -1
  516. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/bigint.js +1 -1
  517. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/blobbuilder.js +1 -1
  518. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/bloburls.js +1 -1
  519. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/border-image.js +1 -1
  520. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/border-radius.js +1 -1
  521. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/broadcastchannel.js +1 -1
  522. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/brotli.js +1 -1
  523. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/calc.js +1 -1
  524. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/canvas-blending.js +1 -1
  525. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/canvas-text.js +1 -1
  526. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/canvas.js +1 -1
  527. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/ch-unit.js +1 -1
  528. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/chacha20-poly1305.js +1 -1
  529. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/channel-messaging.js +1 -1
  530. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/childnode-remove.js +1 -1
  531. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/classlist.js +1 -1
  532. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/clear-site-data-header.js +1 -1
  533. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/client-hints-dpr-width-viewport.js +1 -1
  534. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/clipboard.js +1 -1
  535. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/comparedocumentposition.js +1 -1
  536. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/console-basic.js +1 -1
  537. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/console-time.js +1 -1
  538. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/const.js +1 -1
  539. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/constraint-validation.js +1 -1
  540. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/contenteditable.js +1 -1
  541. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/contentsecuritypolicy.js +1 -1
  542. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/contentsecuritypolicy2.js +1 -1
  543. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/cors.js +1 -1
  544. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/createimagebitmap.js +1 -1
  545. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/credential-management.js +1 -1
  546. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/cryptography.js +1 -1
  547. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-all.js +1 -1
  548. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-animation.js +1 -1
  549. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-any-link.js +1 -1
  550. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-appearance.js +1 -1
  551. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-apply-rule.js +1 -1
  552. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-at-counter-style.js +1 -1
  553. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-backdrop-filter.js +1 -1
  554. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-background-offsets.js +1 -1
  555. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-backgroundblendmode.js +1 -1
  556. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-boxdecorationbreak.js +1 -1
  557. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-boxshadow.js +1 -1
  558. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-canvas.js +1 -1
  559. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-caret-color.js +1 -1
  560. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-case-insensitive.js +1 -1
  561. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-clip-path.js +1 -1
  562. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-color-adjust.js +1 -1
  563. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-conic-gradients.js +1 -1
  564. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-containment.js +1 -1
  565. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-counters.js +1 -1
  566. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-crisp-edges.js +1 -1
  567. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-cross-fade.js +1 -1
  568. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-default-pseudo.js +1 -1
  569. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-descendant-gtgt.js +1 -1
  570. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-deviceadaptation.js +1 -1
  571. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-dir-pseudo.js +1 -1
  572. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-display-contents.js +1 -1
  573. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-element-function.js +1 -1
  574. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-env-function.js +1 -1
  575. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-exclusions.js +1 -1
  576. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-featurequeries.js +1 -1
  577. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-filter-function.js +1 -1
  578. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-filters.js +1 -1
  579. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-first-letter.js +1 -1
  580. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-first-line.js +1 -1
  581. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-fixed.js +1 -1
  582. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-focus-visible.js +1 -1
  583. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-focus-within.js +1 -1
  584. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-font-rendering-controls.js +1 -1
  585. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-font-stretch.js +1 -1
  586. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-gencontent.js +1 -1
  587. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-gradients.js +1 -1
  588. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-grid.js +1 -1
  589. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-hanging-punctuation.js +1 -1
  590. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-has.js +1 -1
  591. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-hyphenate.js +1 -1
  592. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-hyphens.js +1 -1
  593. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-image-orientation.js +1 -1
  594. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-image-set.js +1 -1
  595. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-in-out-of-range.js +1 -1
  596. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-indeterminate-pseudo.js +1 -1
  597. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-initial-letter.js +1 -1
  598. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-initial-value.js +1 -1
  599. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-letter-spacing.js +1 -1
  600. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-line-clamp.js +1 -1
  601. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-logical-props.js +1 -1
  602. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-marker-pseudo.js +1 -1
  603. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-masks.js +1 -1
  604. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-matches-pseudo.js +1 -1
  605. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-math-functions.js +1 -1
  606. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-media-interaction.js +1 -1
  607. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-media-resolution.js +1 -1
  608. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-media-scripting.js +1 -1
  609. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-mediaqueries.js +1 -1
  610. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-mixblendmode.js +1 -1
  611. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-motion-paths.js +1 -1
  612. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-namespaces.js +1 -1
  613. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-not-sel-list.js +1 -1
  614. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-nth-child-of.js +1 -1
  615. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-opacity.js +1 -1
  616. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-optional-pseudo.js +1 -1
  617. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-overflow-anchor.js +1 -1
  618. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-overflow.js +1 -1
  619. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-overscroll-behavior.js +1 -1
  620. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-page-break.js +1 -1
  621. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-paged-media.js +1 -1
  622. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-paint-api.js +1 -1
  623. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-placeholder-shown.js +1 -1
  624. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-placeholder.js +1 -1
  625. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-read-only-write.js +1 -1
  626. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-rebeccapurple.js +1 -1
  627. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-reflections.js +1 -1
  628. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-regions.js +1 -1
  629. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-repeating-gradients.js +1 -1
  630. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-resize.js +1 -1
  631. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-revert-value.js +1 -1
  632. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-rrggbbaa.js +1 -1
  633. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-scroll-behavior.js +1 -1
  634. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-scrollbar.js +1 -1
  635. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-sel2.js +1 -1
  636. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-sel3.js +1 -1
  637. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-selection.js +1 -1
  638. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-shapes.js +1 -1
  639. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-snappoints.js +1 -1
  640. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-sticky.js +1 -1
  641. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-subgrid.js +1 -1
  642. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-supports-api.js +1 -1
  643. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-table.js +1 -1
  644. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-text-align-last.js +1 -1
  645. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-text-indent.js +1 -1
  646. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-text-justify.js +1 -1
  647. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-text-orientation.js +1 -1
  648. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-text-spacing.js +1 -1
  649. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-textshadow.js +1 -1
  650. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-touch-action-2.js +1 -1
  651. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-touch-action.js +1 -1
  652. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-transitions.js +1 -1
  653. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-unicode-bidi.js +1 -1
  654. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-unset-value.js +1 -1
  655. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-variables.js +1 -1
  656. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-widows-orphans.js +1 -1
  657. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-writing-mode.js +1 -1
  658. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css-zoom.js +1 -1
  659. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css3-attr.js +1 -1
  660. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css3-boxsizing.js +1 -1
  661. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css3-colors.js +1 -1
  662. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css3-cursors-grab.js +1 -1
  663. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css3-cursors-newer.js +1 -1
  664. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css3-cursors.js +1 -1
  665. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/css3-tabsize.js +1 -1
  666. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/currentcolor.js +1 -1
  667. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/custom-elements.js +1 -1
  668. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/custom-elementsv1.js +1 -1
  669. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/customevent.js +1 -1
  670. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/datalist.js +1 -1
  671. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/dataset.js +1 -1
  672. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/datauri.js +1 -1
  673. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/date-tolocaledatestring.js +1 -1
  674. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/details.js +1 -1
  675. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/deviceorientation.js +1 -1
  676. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/devicepixelratio.js +1 -1
  677. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/dialog.js +1 -1
  678. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/dispatchevent.js +1 -1
  679. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/do-not-track.js +1 -1
  680. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/document-currentscript.js +1 -1
  681. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/document-evaluate-xpath.js +1 -1
  682. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/document-execcommand.js +1 -1
  683. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/document-scrollingelement.js +1 -1
  684. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/documenthead.js +1 -1
  685. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/dom-manip-convenience.js +1 -1
  686. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/dom-range.js +1 -1
  687. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/domcontentloaded.js +1 -1
  688. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/domfocusin-domfocusout-events.js +1 -1
  689. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/dommatrix.js +1 -1
  690. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/download.js +1 -1
  691. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/dragndrop.js +1 -1
  692. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/element-closest.js +1 -1
  693. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/element-from-point.js +1 -1
  694. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/element-scroll-methods.js +1 -1
  695. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/eme.js +1 -1
  696. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/eot.js +1 -1
  697. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/es5.js +1 -1
  698. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/es6-class.js +1 -1
  699. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/es6-generators.js +1 -1
  700. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/es6-module-dynamic-import.js +1 -1
  701. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/es6-module.js +1 -1
  702. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/es6-number.js +1 -1
  703. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/es6-string-includes.js +1 -1
  704. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/es6.js +1 -1
  705. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/eventsource.js +1 -1
  706. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/feature-policy.js +1 -1
  707. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/fetch.js +1 -1
  708. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/fieldset-disabled.js +1 -1
  709. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/fileapi.js +1 -1
  710. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/filereader.js +1 -1
  711. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/filereadersync.js +1 -1
  712. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/filesystem.js +1 -1
  713. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/flac.js +1 -1
  714. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/flexbox-gap.js +1 -1
  715. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/flexbox.js +1 -1
  716. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/flow-root.js +1 -1
  717. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/focusin-focusout-events.js +1 -1
  718. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/focusoptions-preventscroll.js +1 -1
  719. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/font-family-system-ui.js +1 -1
  720. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/font-feature.js +1 -1
  721. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/font-kerning.js +1 -1
  722. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/font-loading.js +1 -1
  723. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/font-size-adjust.js +1 -1
  724. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/font-smooth.js +1 -1
  725. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/font-unicode-range.js +1 -1
  726. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/font-variant-alternates.js +1 -1
  727. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/font-variant-east-asian.js +1 -1
  728. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/font-variant-numeric.js +1 -1
  729. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/fontface.js +1 -1
  730. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/form-attribute.js +1 -1
  731. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/form-submit-attributes.js +1 -1
  732. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/form-validation.js +1 -1
  733. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/forms.js +1 -1
  734. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/fullscreen.js +1 -1
  735. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/gamepad.js +1 -1
  736. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/geolocation.js +1 -1
  737. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/getboundingclientrect.js +1 -1
  738. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/getcomputedstyle.js +1 -1
  739. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/getelementsbyclassname.js +1 -1
  740. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/getrandomvalues.js +1 -1
  741. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/gyroscope.js +1 -1
  742. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/hardwareconcurrency.js +1 -1
  743. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/hashchange.js +1 -1
  744. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/heif.js +1 -1
  745. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/hevc.js +1 -1
  746. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/hidden.js +1 -1
  747. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/high-resolution-time.js +1 -1
  748. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/history.js +1 -1
  749. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/html-media-capture.js +1 -1
  750. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/html5semantic.js +1 -1
  751. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/http-live-streaming.js +1 -1
  752. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/http2.js +1 -1
  753. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/http3.js +1 -0
  754. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/iframe-sandbox.js +1 -1
  755. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/iframe-seamless.js +1 -1
  756. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/iframe-srcdoc.js +1 -1
  757. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/imagecapture.js +1 -1
  758. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/ime.js +1 -1
  759. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/img-naturalwidth-naturalheight.js +1 -1
  760. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/imports.js +1 -1
  761. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/indeterminate-checkbox.js +1 -1
  762. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/indexeddb.js +1 -1
  763. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/indexeddb2.js +1 -1
  764. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/inline-block.js +1 -1
  765. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/innertext.js +1 -1
  766. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/input-autocomplete-onoff.js +1 -1
  767. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/input-color.js +1 -1
  768. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/input-datetime.js +1 -1
  769. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/input-email-tel-url.js +1 -1
  770. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/input-event.js +1 -1
  771. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/input-file-accept.js +1 -1
  772. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/input-file-directory.js +1 -1
  773. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/input-file-multiple.js +1 -1
  774. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/input-inputmode.js +1 -1
  775. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/input-minlength.js +1 -1
  776. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/input-number.js +1 -1
  777. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/input-pattern.js +1 -1
  778. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/input-placeholder.js +1 -1
  779. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/input-range.js +1 -1
  780. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/input-search.js +1 -1
  781. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/input-selection.js +1 -1
  782. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/insert-adjacent.js +1 -1
  783. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/insertadjacenthtml.js +1 -1
  784. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/internationalization.js +1 -1
  785. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/intersectionobserver.js +1 -1
  786. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/intl-pluralrules.js +1 -1
  787. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/intrinsic-width.js +1 -1
  788. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/jpeg2000.js +1 -1
  789. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/jpegxr.js +1 -1
  790. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/js-regexp-lookbehind.js +1 -1
  791. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/json.js +1 -1
  792. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/justify-content-space-evenly.js +1 -1
  793. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/kerning-pairs-ligatures.js +1 -1
  794. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/keyboardevent-charcode.js +1 -1
  795. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/keyboardevent-code.js +1 -1
  796. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/keyboardevent-getmodifierstate.js +1 -1
  797. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/keyboardevent-key.js +1 -1
  798. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/keyboardevent-location.js +1 -1
  799. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/keyboardevent-which.js +1 -1
  800. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/lazyload.js +1 -1
  801. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/let.js +1 -1
  802. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/link-icon-png.js +1 -1
  803. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/link-icon-svg.js +1 -1
  804. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/link-rel-dns-prefetch.js +1 -1
  805. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/link-rel-modulepreload.js +1 -1
  806. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/link-rel-preconnect.js +1 -1
  807. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/link-rel-prefetch.js +1 -1
  808. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/link-rel-preload.js +1 -1
  809. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/link-rel-prerender.js +1 -1
  810. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/loading-lazy-attr.js +1 -1
  811. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/localecompare.js +1 -1
  812. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/magnetometer.js +1 -1
  813. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/matchesselector.js +1 -1
  814. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/matchmedia.js +1 -1
  815. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/mathml.js +1 -1
  816. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/maxlength.js +1 -1
  817. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/media-attribute.js +1 -1
  818. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/media-fragments.js +1 -1
  819. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/media-session-api.js +1 -1
  820. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/mediacapture-fromelement.js +1 -1
  821. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/mediarecorder.js +1 -1
  822. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/mediasource.js +1 -1
  823. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/menu.js +1 -1
  824. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/meta-theme-color.js +1 -1
  825. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/meter.js +1 -1
  826. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/midi.js +1 -1
  827. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/minmaxwh.js +1 -1
  828. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/mp3.js +1 -1
  829. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/mpeg-dash.js +1 -1
  830. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/mpeg4.js +1 -1
  831. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/multibackgrounds.js +1 -1
  832. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/multicolumn.js +1 -1
  833. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/mutation-events.js +1 -1
  834. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/mutationobserver.js +1 -1
  835. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/namevalue-storage.js +1 -1
  836. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/native-filesystem-api.js +1 -0
  837. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/nav-timing.js +1 -1
  838. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/navigator-language.js +1 -1
  839. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/netinfo.js +1 -1
  840. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/node-contains.js +1 -1
  841. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/node-parentelement.js +1 -1
  842. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/notifications.js +1 -1
  843. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/object-entries.js +1 -1
  844. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/object-fit.js +1 -1
  845. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/object-observe.js +1 -1
  846. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/object-values.js +1 -1
  847. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/objectrtc.js +1 -1
  848. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/offline-apps.js +1 -1
  849. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/offscreencanvas.js +1 -1
  850. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/ogg-vorbis.js +1 -1
  851. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/ogv.js +1 -1
  852. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/ol-reversed.js +1 -1
  853. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/once-event-listener.js +1 -1
  854. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/online-status.js +1 -1
  855. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/opus.js +1 -1
  856. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/orientation-sensor.js +1 -1
  857. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/outline.js +1 -1
  858. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/pad-start-end.js +1 -1
  859. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/page-transition-events.js +1 -1
  860. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/pagevisibility.js +1 -1
  861. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/passive-event-listener.js +1 -1
  862. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/passwordrules.js +1 -1
  863. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/path2d.js +1 -1
  864. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/payment-request.js +1 -1
  865. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/permissions-api.js +1 -1
  866. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/picture-in-picture.js +1 -1
  867. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/picture.js +1 -1
  868. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/ping.js +1 -1
  869. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/png-alpha.js +1 -1
  870. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/pointer-events.js +1 -1
  871. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/pointer.js +1 -1
  872. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/pointerlock.js +1 -1
  873. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/prefers-color-scheme.js +1 -1
  874. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/prefers-reduced-motion.js +1 -1
  875. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/private-class-fields.js +1 -1
  876. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/private-methods-and-accessors.js +1 -1
  877. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/progress.js +1 -1
  878. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/promise-finally.js +1 -1
  879. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/promises.js +1 -1
  880. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/proximity.js +1 -1
  881. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/proxy.js +1 -1
  882. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/public-class-fields.js +1 -1
  883. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/publickeypinning.js +1 -1
  884. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/push-api.js +1 -1
  885. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/queryselector.js +1 -1
  886. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/readonly-attr.js +1 -1
  887. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/referrer-policy.js +1 -1
  888. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/registerprotocolhandler.js +1 -1
  889. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/rel-noopener.js +1 -1
  890. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/rel-noreferrer.js +1 -1
  891. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/rellist.js +1 -1
  892. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/rem.js +1 -1
  893. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/replace-all.js +1 -0
  894. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/requestanimationframe.js +1 -1
  895. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/requestidlecallback.js +1 -1
  896. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/resizeobserver.js +1 -1
  897. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/resource-timing.js +1 -1
  898. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/rest-parameters.js +1 -1
  899. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/rtcpeerconnection.js +1 -1
  900. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/ruby.js +1 -1
  901. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/run-in.js +1 -1
  902. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/same-site-cookie-attribute.js +1 -1
  903. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/screen-orientation.js +1 -1
  904. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/script-async.js +1 -1
  905. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/script-defer.js +1 -1
  906. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/scrollintoview.js +1 -1
  907. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/scrollintoviewifneeded.js +1 -1
  908. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/sdch.js +1 -1
  909. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/selection-api.js +1 -1
  910. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/server-timing.js +1 -1
  911. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/serviceworkers.js +1 -1
  912. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/setimmediate.js +1 -1
  913. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/sha-2.js +1 -1
  914. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/shadowdom.js +1 -1
  915. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/shadowdomv1.js +1 -1
  916. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/sharedarraybuffer.js +1 -1
  917. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/sharedworkers.js +1 -1
  918. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/sni.js +1 -1
  919. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/spdy.js +1 -1
  920. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/speech-recognition.js +1 -1
  921. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/speech-synthesis.js +1 -1
  922. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/spellcheck-attribute.js +1 -1
  923. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/sql-storage.js +1 -1
  924. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/srcset.js +1 -1
  925. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/stopimmediatepropagation.js +1 -1
  926. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/stream.js +1 -1
  927. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/streams.js +1 -1
  928. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/stricttransportsecurity.js +1 -1
  929. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/style-scoped.js +1 -1
  930. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/subresource-integrity.js +1 -1
  931. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/svg-css.js +1 -1
  932. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/svg-filters.js +1 -1
  933. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/svg-fonts.js +1 -1
  934. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/svg-fragment.js +1 -1
  935. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/svg-html.js +1 -1
  936. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/svg-html5.js +1 -1
  937. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/svg-img.js +1 -1
  938. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/svg-smil.js +1 -1
  939. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/svg.js +1 -1
  940. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/sxg.js +1 -0
  941. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/symbols.js +1 -1
  942. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/tabindex-attr.js +1 -1
  943. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/template-literals.js +1 -1
  944. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/template.js +1 -1
  945. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/testfeat.js +1 -1
  946. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/text-decoration.js +1 -1
  947. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/text-emphasis.js +1 -1
  948. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/text-overflow.js +1 -1
  949. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/text-size-adjust.js +1 -1
  950. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/text-stroke.js +1 -1
  951. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/text-underline-offset.js +1 -0
  952. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/textcontent.js +1 -1
  953. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/textencoder.js +1 -1
  954. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/tls1-1.js +1 -1
  955. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/tls1-2.js +1 -1
  956. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/tls1-3.js +1 -1
  957. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/token-binding.js +1 -1
  958. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/touch.js +1 -1
  959. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/transforms2d.js +1 -1
  960. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/transforms3d.js +1 -1
  961. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/ttf.js +1 -1
  962. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/typedarrays.js +1 -1
  963. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/u2f.js +1 -1
  964. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/unhandledrejection.js +1 -1
  965. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/upgradeinsecurerequests.js +1 -1
  966. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/url.js +1 -1
  967. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/urlsearchparams.js +1 -1
  968. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/use-strict.js +1 -1
  969. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/user-select-none.js +1 -1
  970. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/user-timing.js +1 -1
  971. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/variable-fonts.js +1 -1
  972. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/vibration.js +1 -1
  973. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/video.js +1 -1
  974. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/videotracks.js +1 -1
  975. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/viewport-units.js +1 -1
  976. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/wai-aria.js +1 -1
  977. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/wasm.js +1 -1
  978. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/wav.js +1 -1
  979. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/wbr-element.js +1 -1
  980. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/web-animation.js +1 -1
  981. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/web-app-manifest.js +1 -1
  982. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/web-bluetooth.js +1 -1
  983. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/web-share.js +1 -1
  984. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/webauthn.js +1 -1
  985. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/webgl.js +1 -1
  986. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/webgl2.js +1 -1
  987. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/webhid.js +1 -0
  988. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/webm.js +1 -1
  989. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/webp.js +1 -1
  990. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/websockets.js +1 -1
  991. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/webusb.js +1 -1
  992. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/webvr.js +1 -1
  993. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/webvtt.js +1 -1
  994. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/webworkers.js +1 -1
  995. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/webxr.js +1 -0
  996. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/will-change.js +1 -1
  997. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/woff.js +1 -1
  998. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/woff2.js +1 -1
  999. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/word-break.js +1 -1
  1000. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/wordwrap.js +1 -1
  1001. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/x-doc-messaging.js +1 -1
  1002. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/x-frame-options.js +1 -1
  1003. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/xhr2.js +1 -1
  1004. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/xhtml.js +1 -1
  1005. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/xhtmlsmil.js +1 -1
  1006. data/lib/condenser/processors/node_modules/caniuse-lite/data/features/xml-serializer.js +1 -1
  1007. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/AD.js +1 -1
  1008. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/AE.js +1 -1
  1009. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/AF.js +1 -1
  1010. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/AG.js +1 -1
  1011. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/AI.js +1 -1
  1012. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/AL.js +1 -1
  1013. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/AM.js +1 -1
  1014. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/AO.js +1 -1
  1015. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/AR.js +1 -1
  1016. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/AS.js +1 -1
  1017. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/AT.js +1 -1
  1018. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/AU.js +1 -1
  1019. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/AW.js +1 -1
  1020. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/AX.js +1 -1
  1021. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/AZ.js +1 -1
  1022. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/BA.js +1 -1
  1023. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/BB.js +1 -1
  1024. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/BD.js +1 -1
  1025. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/BE.js +1 -1
  1026. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/BF.js +1 -1
  1027. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/BG.js +1 -1
  1028. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/BH.js +1 -1
  1029. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/BI.js +1 -1
  1030. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/BJ.js +1 -1
  1031. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/BM.js +1 -1
  1032. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/BN.js +1 -1
  1033. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/BO.js +1 -1
  1034. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/BR.js +1 -1
  1035. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/BS.js +1 -1
  1036. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/BT.js +1 -1
  1037. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/BW.js +1 -1
  1038. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/BY.js +1 -1
  1039. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/BZ.js +1 -1
  1040. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/CA.js +1 -1
  1041. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/CD.js +1 -1
  1042. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/CF.js +1 -1
  1043. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/CG.js +1 -1
  1044. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/CH.js +1 -1
  1045. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/CI.js +1 -1
  1046. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/CK.js +1 -1
  1047. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/CL.js +1 -1
  1048. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/CM.js +1 -1
  1049. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/CN.js +1 -1
  1050. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/CO.js +1 -1
  1051. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/CR.js +1 -1
  1052. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/CU.js +1 -1
  1053. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/CV.js +1 -1
  1054. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/CX.js +1 -1
  1055. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/CY.js +1 -1
  1056. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/CZ.js +1 -1
  1057. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/DE.js +1 -1
  1058. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/DJ.js +1 -1
  1059. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/DK.js +1 -1
  1060. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/DM.js +1 -1
  1061. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/DO.js +1 -1
  1062. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/DZ.js +1 -1
  1063. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/EC.js +1 -1
  1064. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/EE.js +1 -1
  1065. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/EG.js +1 -1
  1066. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/ER.js +1 -1
  1067. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/ES.js +1 -1
  1068. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/ET.js +1 -1
  1069. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/FI.js +1 -1
  1070. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/FJ.js +1 -1
  1071. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/FK.js +1 -1
  1072. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/FM.js +1 -1
  1073. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/FO.js +1 -1
  1074. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/FR.js +1 -1
  1075. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/GA.js +1 -1
  1076. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/GB.js +1 -1
  1077. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/GD.js +1 -1
  1078. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/GE.js +1 -1
  1079. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/GF.js +1 -1
  1080. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/GG.js +1 -1
  1081. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/GH.js +1 -1
  1082. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/GI.js +1 -1
  1083. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/GL.js +1 -1
  1084. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/GM.js +1 -1
  1085. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/GN.js +1 -1
  1086. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/GP.js +1 -1
  1087. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/GQ.js +1 -1
  1088. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/GR.js +1 -1
  1089. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/GT.js +1 -1
  1090. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/GU.js +1 -1
  1091. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/GW.js +1 -1
  1092. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/GY.js +1 -1
  1093. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/HK.js +1 -1
  1094. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/HN.js +1 -1
  1095. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/HR.js +1 -1
  1096. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/HT.js +1 -1
  1097. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/HU.js +1 -1
  1098. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/ID.js +1 -1
  1099. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/IE.js +1 -1
  1100. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/IL.js +1 -1
  1101. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/IM.js +1 -1
  1102. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/IN.js +1 -1
  1103. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/IQ.js +1 -1
  1104. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/IR.js +1 -1
  1105. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/IS.js +1 -1
  1106. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/IT.js +1 -1
  1107. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/JE.js +1 -1
  1108. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/JM.js +1 -1
  1109. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/JO.js +1 -1
  1110. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/JP.js +1 -1
  1111. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/KE.js +1 -1
  1112. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/KG.js +1 -1
  1113. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/KH.js +1 -1
  1114. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/KI.js +1 -1
  1115. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/KM.js +1 -1
  1116. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/KN.js +1 -1
  1117. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/KP.js +1 -1
  1118. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/KR.js +1 -1
  1119. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/KW.js +1 -1
  1120. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/KY.js +1 -1
  1121. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/KZ.js +1 -1
  1122. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/LA.js +1 -1
  1123. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/LB.js +1 -1
  1124. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/LC.js +1 -1
  1125. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/LI.js +1 -1
  1126. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/LK.js +1 -1
  1127. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/LR.js +1 -1
  1128. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/LS.js +1 -1
  1129. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/LT.js +1 -1
  1130. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/LU.js +1 -1
  1131. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/LV.js +1 -1
  1132. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/LY.js +1 -1
  1133. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/MA.js +1 -1
  1134. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/MC.js +1 -1
  1135. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/MD.js +1 -1
  1136. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/ME.js +1 -1
  1137. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/MG.js +1 -1
  1138. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/MH.js +1 -1
  1139. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/MK.js +1 -1
  1140. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/ML.js +1 -1
  1141. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/MM.js +1 -1
  1142. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/MN.js +1 -1
  1143. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/MO.js +1 -1
  1144. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/MP.js +1 -1
  1145. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/MQ.js +1 -1
  1146. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/MR.js +1 -1
  1147. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/MS.js +1 -1
  1148. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/MT.js +1 -1
  1149. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/MU.js +1 -1
  1150. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/MV.js +1 -1
  1151. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/MW.js +1 -1
  1152. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/MX.js +1 -1
  1153. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/MY.js +1 -1
  1154. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/MZ.js +1 -1
  1155. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/NA.js +1 -1
  1156. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/NC.js +1 -1
  1157. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/NE.js +1 -1
  1158. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/NF.js +1 -1
  1159. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/NG.js +1 -1
  1160. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/NI.js +1 -1
  1161. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/NL.js +1 -1
  1162. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/NO.js +1 -1
  1163. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/NP.js +1 -1
  1164. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/NR.js +1 -1
  1165. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/NU.js +1 -1
  1166. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/NZ.js +1 -1
  1167. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/OM.js +1 -1
  1168. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/PA.js +1 -1
  1169. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/PE.js +1 -1
  1170. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/PF.js +1 -1
  1171. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/PG.js +1 -1
  1172. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/PH.js +1 -1
  1173. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/PK.js +1 -1
  1174. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/PL.js +1 -1
  1175. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/PM.js +1 -1
  1176. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/PN.js +1 -1
  1177. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/PR.js +1 -1
  1178. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/PS.js +1 -1
  1179. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/PT.js +1 -1
  1180. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/PW.js +1 -1
  1181. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/PY.js +1 -1
  1182. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/QA.js +1 -1
  1183. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/RE.js +1 -1
  1184. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/RO.js +1 -1
  1185. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/RS.js +1 -1
  1186. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/RU.js +1 -1
  1187. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/RW.js +1 -1
  1188. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/SA.js +1 -1
  1189. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/SB.js +1 -1
  1190. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/SC.js +1 -1
  1191. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/SD.js +1 -1
  1192. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/SE.js +1 -1
  1193. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/SG.js +1 -1
  1194. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/SH.js +1 -1
  1195. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/SI.js +1 -1
  1196. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/SK.js +1 -1
  1197. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/SL.js +1 -1
  1198. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/SM.js +1 -1
  1199. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/SN.js +1 -1
  1200. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/SO.js +1 -1
  1201. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/SR.js +1 -1
  1202. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/ST.js +1 -1
  1203. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/SV.js +1 -1
  1204. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/SY.js +1 -1
  1205. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/SZ.js +1 -1
  1206. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/TC.js +1 -1
  1207. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/TD.js +1 -1
  1208. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/TG.js +1 -1
  1209. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/TH.js +1 -1
  1210. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/TJ.js +1 -1
  1211. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/TK.js +1 -1
  1212. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/TL.js +1 -1
  1213. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/TM.js +1 -1
  1214. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/TN.js +1 -1
  1215. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/TO.js +1 -1
  1216. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/TR.js +1 -1
  1217. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/TT.js +1 -1
  1218. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/TV.js +1 -1
  1219. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/TW.js +1 -1
  1220. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/TZ.js +1 -1
  1221. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/UA.js +1 -1
  1222. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/UG.js +1 -1
  1223. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/US.js +1 -1
  1224. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/UY.js +1 -1
  1225. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/UZ.js +1 -1
  1226. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/VA.js +1 -1
  1227. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/VC.js +1 -1
  1228. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/VE.js +1 -1
  1229. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/VG.js +1 -1
  1230. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/VI.js +1 -1
  1231. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/VN.js +1 -1
  1232. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/VU.js +1 -1
  1233. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/WF.js +1 -1
  1234. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/WS.js +1 -1
  1235. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/YE.js +1 -1
  1236. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/YT.js +1 -1
  1237. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/ZA.js +1 -1
  1238. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/ZM.js +1 -1
  1239. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/ZW.js +1 -1
  1240. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/alt-af.js +1 -1
  1241. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/alt-an.js +1 -1
  1242. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/alt-as.js +1 -1
  1243. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/alt-eu.js +1 -1
  1244. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/alt-na.js +1 -1
  1245. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/alt-oc.js +1 -1
  1246. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/alt-sa.js +1 -1
  1247. data/lib/condenser/processors/node_modules/caniuse-lite/data/regions/alt-ww.js +1 -1
  1248. data/lib/condenser/processors/node_modules/caniuse-lite/package.json +10 -10
  1249. data/lib/condenser/processors/node_modules/convert-source-map/package.json +13 -10
  1250. data/lib/condenser/processors/node_modules/core-js-compat/LICENSE +1 -1
  1251. data/lib/condenser/processors/node_modules/core-js-compat/README.md +59 -23
  1252. data/lib/condenser/processors/node_modules/core-js-compat/compat.js +56 -0
  1253. data/lib/condenser/processors/node_modules/core-js-compat/data.json +1632 -1288
  1254. data/lib/condenser/processors/node_modules/core-js-compat/entries.json +5462 -4712
  1255. data/lib/condenser/processors/node_modules/core-js-compat/external.json +12 -0
  1256. data/lib/condenser/processors/node_modules/core-js-compat/get-modules-list-for-target-version.js +5 -4
  1257. data/lib/condenser/processors/node_modules/core-js-compat/helpers.js +29 -0
  1258. data/lib/condenser/processors/node_modules/core-js-compat/index.js +11 -102
  1259. data/lib/condenser/processors/node_modules/core-js-compat/modules-by-versions.json +45 -0
  1260. data/lib/condenser/processors/node_modules/core-js-compat/modules.json +336 -0
  1261. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/CHANGELOG.md +4 -0
  1262. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/README.md +58 -2
  1263. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/bin/semver.js +78 -79
  1264. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/classes/comparator.js +139 -0
  1265. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/classes/index.js +5 -0
  1266. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/classes/range.js +448 -0
  1267. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/classes/semver.js +290 -0
  1268. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/clean.js +6 -0
  1269. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/cmp.js +48 -0
  1270. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/coerce.js +51 -0
  1271. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/compare-build.js +7 -0
  1272. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/compare-loose.js +3 -0
  1273. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/compare.js +5 -0
  1274. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/diff.js +25 -0
  1275. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/eq.js +3 -0
  1276. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/gt.js +3 -0
  1277. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/gte.js +3 -0
  1278. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/inc.js +15 -0
  1279. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/lt.js +3 -0
  1280. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/lte.js +3 -0
  1281. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/major.js +3 -0
  1282. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/minor.js +3 -0
  1283. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/neq.js +3 -0
  1284. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/parse.js +37 -0
  1285. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/patch.js +3 -0
  1286. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/prerelease.js +6 -0
  1287. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/rcompare.js +3 -0
  1288. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/rsort.js +3 -0
  1289. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/satisfies.js +10 -0
  1290. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/sort.js +3 -0
  1291. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/functions/valid.js +6 -0
  1292. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/index.js +64 -0
  1293. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/internal/constants.js +17 -0
  1294. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/internal/debug.js +9 -0
  1295. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/internal/identifiers.js +23 -0
  1296. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/internal/re.js +179 -0
  1297. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/package.json +22 -16
  1298. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/ranges/gtr.js +4 -0
  1299. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/ranges/intersects.js +7 -0
  1300. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/ranges/ltr.js +4 -0
  1301. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/ranges/max-satisfying.js +25 -0
  1302. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/ranges/min-satisfying.js +24 -0
  1303. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/ranges/min-version.js +57 -0
  1304. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/ranges/outside.js +80 -0
  1305. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/ranges/to-comparators.js +8 -0
  1306. data/lib/condenser/processors/node_modules/core-js-compat/node_modules/semver/ranges/valid.js +11 -0
  1307. data/lib/condenser/processors/node_modules/core-js-compat/package.json +18 -14
  1308. data/lib/condenser/processors/node_modules/core-js-compat/targets-parser.js +72 -0
  1309. data/lib/condenser/processors/node_modules/core-js-pure/LICENSE +1 -1
  1310. data/lib/condenser/processors/node_modules/core-js-pure/configurator.js +7 -0
  1311. data/lib/condenser/processors/node_modules/core-js-pure/es/global-this.js +3 -0
  1312. data/lib/condenser/processors/node_modules/core-js-pure/es/index.js +6 -1
  1313. data/lib/condenser/processors/node_modules/core-js-pure/es/json/index.js +1 -0
  1314. data/lib/condenser/processors/node_modules/core-js-pure/es/json/stringify.js +6 -3
  1315. data/lib/condenser/processors/node_modules/core-js-pure/es/regexp/index.js +2 -0
  1316. data/lib/condenser/processors/node_modules/core-js-pure/es/regexp/sticky.js +5 -0
  1317. data/lib/condenser/processors/node_modules/core-js-pure/es/regexp/test.js +6 -0
  1318. data/lib/condenser/processors/node_modules/core-js-pure/es/string/index.js +1 -0
  1319. data/lib/condenser/processors/node_modules/core-js-pure/es/string/match.js +1 -0
  1320. data/lib/condenser/processors/node_modules/core-js-pure/es/string/replace.js +1 -0
  1321. data/lib/condenser/processors/node_modules/core-js-pure/es/string/search.js +1 -0
  1322. data/lib/condenser/processors/node_modules/core-js-pure/es/string/split.js +1 -0
  1323. data/lib/condenser/processors/node_modules/core-js-pure/es/symbol/async-iterator.js +1 -1
  1324. data/lib/condenser/processors/node_modules/core-js-pure/es/symbol/has-instance.js +1 -1
  1325. data/lib/condenser/processors/node_modules/core-js-pure/es/symbol/is-concat-spreadable.js +1 -1
  1326. data/lib/condenser/processors/node_modules/core-js-pure/es/symbol/iterator.js +1 -1
  1327. data/lib/condenser/processors/node_modules/core-js-pure/es/symbol/match-all.js +1 -1
  1328. data/lib/condenser/processors/node_modules/core-js-pure/es/symbol/match.js +1 -1
  1329. data/lib/condenser/processors/node_modules/core-js-pure/es/symbol/replace.js +1 -1
  1330. data/lib/condenser/processors/node_modules/core-js-pure/es/symbol/search.js +1 -1
  1331. data/lib/condenser/processors/node_modules/core-js-pure/es/symbol/species.js +1 -1
  1332. data/lib/condenser/processors/node_modules/core-js-pure/es/symbol/split.js +1 -1
  1333. data/lib/condenser/processors/node_modules/core-js-pure/es/symbol/to-primitive.js +1 -1
  1334. data/lib/condenser/processors/node_modules/core-js-pure/es/symbol/to-string-tag.js +1 -1
  1335. data/lib/condenser/processors/node_modules/core-js-pure/es/symbol/unscopables.js +1 -1
  1336. data/lib/condenser/processors/node_modules/core-js-pure/features/array-buffer/constructor.js +3 -1
  1337. data/lib/condenser/processors/node_modules/core-js-pure/features/array-buffer/index.js +3 -1
  1338. data/lib/condenser/processors/node_modules/core-js-pure/features/array-buffer/is-view.js +3 -1
  1339. data/lib/condenser/processors/node_modules/core-js-pure/features/array-buffer/slice.js +3 -1
  1340. data/lib/condenser/processors/node_modules/core-js-pure/features/array/concat.js +3 -1
  1341. data/lib/condenser/processors/node_modules/core-js-pure/features/array/copy-within.js +3 -1
  1342. data/lib/condenser/processors/node_modules/core-js-pure/features/array/entries.js +3 -1
  1343. data/lib/condenser/processors/node_modules/core-js-pure/features/array/every.js +3 -1
  1344. data/lib/condenser/processors/node_modules/core-js-pure/features/array/fill.js +3 -1
  1345. data/lib/condenser/processors/node_modules/core-js-pure/features/array/filter.js +3 -1
  1346. data/lib/condenser/processors/node_modules/core-js-pure/features/array/find-index.js +3 -1
  1347. data/lib/condenser/processors/node_modules/core-js-pure/features/array/find.js +3 -1
  1348. data/lib/condenser/processors/node_modules/core-js-pure/features/array/flat-map.js +3 -1
  1349. data/lib/condenser/processors/node_modules/core-js-pure/features/array/flat.js +3 -1
  1350. data/lib/condenser/processors/node_modules/core-js-pure/features/array/for-each.js +3 -1
  1351. data/lib/condenser/processors/node_modules/core-js-pure/features/array/from.js +3 -1
  1352. data/lib/condenser/processors/node_modules/core-js-pure/features/array/includes.js +3 -1
  1353. data/lib/condenser/processors/node_modules/core-js-pure/features/array/index-of.js +3 -1
  1354. data/lib/condenser/processors/node_modules/core-js-pure/features/array/index.js +3 -2
  1355. data/lib/condenser/processors/node_modules/core-js-pure/features/array/is-array.js +3 -1
  1356. data/lib/condenser/processors/node_modules/core-js-pure/features/array/iterator.js +3 -1
  1357. data/lib/condenser/processors/node_modules/core-js-pure/features/array/join.js +3 -1
  1358. data/lib/condenser/processors/node_modules/core-js-pure/features/array/keys.js +3 -1
  1359. data/lib/condenser/processors/node_modules/core-js-pure/features/array/last-index-of.js +3 -1
  1360. data/lib/condenser/processors/node_modules/core-js-pure/features/array/map.js +3 -1
  1361. data/lib/condenser/processors/node_modules/core-js-pure/features/array/of.js +3 -1
  1362. data/lib/condenser/processors/node_modules/core-js-pure/features/array/reduce-right.js +3 -1
  1363. data/lib/condenser/processors/node_modules/core-js-pure/features/array/reduce.js +3 -1
  1364. data/lib/condenser/processors/node_modules/core-js-pure/features/array/reverse.js +3 -1
  1365. data/lib/condenser/processors/node_modules/core-js-pure/features/array/slice.js +3 -1
  1366. data/lib/condenser/processors/node_modules/core-js-pure/features/array/some.js +3 -1
  1367. data/lib/condenser/processors/node_modules/core-js-pure/features/array/sort.js +3 -1
  1368. data/lib/condenser/processors/node_modules/core-js-pure/features/array/splice.js +3 -1
  1369. data/lib/condenser/processors/node_modules/core-js-pure/features/array/values.js +3 -1
  1370. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/concat.js +3 -1
  1371. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/copy-within.js +3 -1
  1372. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/entries.js +3 -1
  1373. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/every.js +3 -1
  1374. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/fill.js +3 -1
  1375. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/filter.js +3 -1
  1376. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/find-index.js +3 -1
  1377. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/find.js +3 -1
  1378. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/flat-map.js +3 -1
  1379. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/flat.js +3 -1
  1380. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/for-each.js +3 -1
  1381. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/includes.js +3 -1
  1382. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/index-of.js +3 -1
  1383. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/index.js +3 -1
  1384. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/iterator.js +3 -1
  1385. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/join.js +3 -1
  1386. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/keys.js +3 -1
  1387. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/last-index-of.js +3 -1
  1388. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/map.js +3 -1
  1389. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/reduce-right.js +3 -1
  1390. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/reduce.js +3 -1
  1391. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/reverse.js +3 -1
  1392. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/slice.js +3 -1
  1393. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/some.js +3 -1
  1394. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/sort.js +3 -1
  1395. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/splice.js +3 -1
  1396. data/lib/condenser/processors/node_modules/core-js-pure/features/array/virtual/values.js +3 -1
  1397. data/lib/condenser/processors/node_modules/core-js-pure/features/async-iterator/as-indexed-pairs.js +10 -0
  1398. data/lib/condenser/processors/node_modules/core-js-pure/features/async-iterator/drop.js +10 -0
  1399. data/lib/condenser/processors/node_modules/core-js-pure/features/async-iterator/every.js +10 -0
  1400. data/lib/condenser/processors/node_modules/core-js-pure/features/async-iterator/filter.js +10 -0
  1401. data/lib/condenser/processors/node_modules/core-js-pure/features/async-iterator/find.js +10 -0
  1402. data/lib/condenser/processors/node_modules/core-js-pure/features/async-iterator/flat-map.js +10 -0
  1403. data/lib/condenser/processors/node_modules/core-js-pure/features/async-iterator/for-each.js +10 -0
  1404. data/lib/condenser/processors/node_modules/core-js-pure/features/async-iterator/from.js +10 -0
  1405. data/lib/condenser/processors/node_modules/core-js-pure/features/async-iterator/index.js +22 -0
  1406. data/lib/condenser/processors/node_modules/core-js-pure/features/async-iterator/map.js +10 -0
  1407. data/lib/condenser/processors/node_modules/core-js-pure/features/async-iterator/reduce.js +10 -0
  1408. data/lib/condenser/processors/node_modules/core-js-pure/features/async-iterator/some.js +10 -0
  1409. data/lib/condenser/processors/node_modules/core-js-pure/features/async-iterator/take.js +10 -0
  1410. data/lib/condenser/processors/node_modules/core-js-pure/features/async-iterator/to-array.js +10 -0
  1411. data/lib/condenser/processors/node_modules/core-js-pure/features/clear-immediate.js +3 -1
  1412. data/lib/condenser/processors/node_modules/core-js-pure/features/data-view/index.js +3 -1
  1413. data/lib/condenser/processors/node_modules/core-js-pure/features/date/index.js +3 -1
  1414. data/lib/condenser/processors/node_modules/core-js-pure/features/date/now.js +3 -1
  1415. data/lib/condenser/processors/node_modules/core-js-pure/features/date/to-iso-string.js +3 -1
  1416. data/lib/condenser/processors/node_modules/core-js-pure/features/date/to-json.js +3 -1
  1417. data/lib/condenser/processors/node_modules/core-js-pure/features/date/to-primitive.js +3 -1
  1418. data/lib/condenser/processors/node_modules/core-js-pure/features/date/to-string.js +3 -1
  1419. data/lib/condenser/processors/node_modules/core-js-pure/features/dom-collections/for-each.js +3 -1
  1420. data/lib/condenser/processors/node_modules/core-js-pure/features/dom-collections/index.js +3 -1
  1421. data/lib/condenser/processors/node_modules/core-js-pure/features/dom-collections/iterator.js +3 -1
  1422. data/lib/condenser/processors/node_modules/core-js-pure/features/function/bind.js +3 -1
  1423. data/lib/condenser/processors/node_modules/core-js-pure/features/function/has-instance.js +3 -1
  1424. data/lib/condenser/processors/node_modules/core-js-pure/features/function/index.js +3 -1
  1425. data/lib/condenser/processors/node_modules/core-js-pure/features/function/name.js +3 -1
  1426. data/lib/condenser/processors/node_modules/core-js-pure/features/function/virtual/bind.js +3 -1
  1427. data/lib/condenser/processors/node_modules/core-js-pure/features/function/virtual/index.js +3 -1
  1428. data/lib/condenser/processors/node_modules/core-js-pure/features/get-iterator-method.js +2 -1
  1429. data/lib/condenser/processors/node_modules/core-js-pure/features/get-iterator.js +2 -1
  1430. data/lib/condenser/processors/node_modules/core-js-pure/features/global-this.js +4 -1
  1431. data/lib/condenser/processors/node_modules/core-js-pure/features/index.js +3 -1
  1432. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/bind.js +3 -1
  1433. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/code-point-at.js +3 -1
  1434. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/concat.js +3 -1
  1435. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/copy-within.js +3 -1
  1436. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/ends-with.js +3 -1
  1437. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/entries.js +3 -1
  1438. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/every.js +3 -1
  1439. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/fill.js +3 -1
  1440. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/filter.js +3 -1
  1441. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/find-index.js +3 -1
  1442. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/find.js +3 -1
  1443. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/flags.js +3 -1
  1444. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/flat-map.js +3 -1
  1445. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/flat.js +3 -1
  1446. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/for-each.js +3 -1
  1447. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/includes.js +3 -1
  1448. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/index-of.js +3 -1
  1449. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/keys.js +3 -1
  1450. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/last-index-of.js +3 -1
  1451. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/map.js +3 -1
  1452. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/match-all.js +6 -1
  1453. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/pad-end.js +3 -1
  1454. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/pad-start.js +3 -1
  1455. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/reduce-right.js +3 -1
  1456. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/reduce.js +3 -1
  1457. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/repeat.js +3 -1
  1458. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/reverse.js +3 -1
  1459. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/slice.js +3 -1
  1460. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/some.js +3 -1
  1461. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/sort.js +3 -1
  1462. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/splice.js +3 -1
  1463. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/starts-with.js +3 -1
  1464. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/trim-end.js +3 -1
  1465. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/trim-left.js +3 -1
  1466. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/trim-right.js +3 -1
  1467. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/trim-start.js +3 -1
  1468. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/trim.js +3 -1
  1469. data/lib/condenser/processors/node_modules/core-js-pure/features/instance/values.js +3 -1
  1470. data/lib/condenser/processors/node_modules/core-js-pure/features/is-iterable.js +2 -1
  1471. data/lib/condenser/processors/node_modules/core-js-pure/features/iterator/as-indexed-pairs.js +10 -0
  1472. data/lib/condenser/processors/node_modules/core-js-pure/features/iterator/drop.js +9 -0
  1473. data/lib/condenser/processors/node_modules/core-js-pure/features/iterator/every.js +9 -0
  1474. data/lib/condenser/processors/node_modules/core-js-pure/features/iterator/filter.js +9 -0
  1475. data/lib/condenser/processors/node_modules/core-js-pure/features/iterator/find.js +9 -0
  1476. data/lib/condenser/processors/node_modules/core-js-pure/features/iterator/flat-map.js +9 -0
  1477. data/lib/condenser/processors/node_modules/core-js-pure/features/iterator/for-each.js +9 -0
  1478. data/lib/condenser/processors/node_modules/core-js-pure/features/iterator/from.js +9 -0
  1479. data/lib/condenser/processors/node_modules/core-js-pure/features/iterator/index.js +21 -0
  1480. data/lib/condenser/processors/node_modules/core-js-pure/features/iterator/map.js +9 -0
  1481. data/lib/condenser/processors/node_modules/core-js-pure/features/iterator/reduce.js +9 -0
  1482. data/lib/condenser/processors/node_modules/core-js-pure/features/iterator/some.js +9 -0
  1483. data/lib/condenser/processors/node_modules/core-js-pure/features/iterator/take.js +9 -0
  1484. data/lib/condenser/processors/node_modules/core-js-pure/features/iterator/to-array.js +9 -0
  1485. data/lib/condenser/processors/node_modules/core-js-pure/features/json/index.js +3 -1
  1486. data/lib/condenser/processors/node_modules/core-js-pure/features/json/stringify.js +3 -1
  1487. data/lib/condenser/processors/node_modules/core-js-pure/features/json/to-string-tag.js +3 -1
  1488. data/lib/condenser/processors/node_modules/core-js-pure/features/map/index.js +5 -2
  1489. data/lib/condenser/processors/node_modules/core-js-pure/features/map/update-or-insert.js +1 -0
  1490. data/lib/condenser/processors/node_modules/core-js-pure/features/map/upsert.js +5 -0
  1491. data/lib/condenser/processors/node_modules/core-js-pure/features/math/acosh.js +3 -1
  1492. data/lib/condenser/processors/node_modules/core-js-pure/features/math/asinh.js +3 -1
  1493. data/lib/condenser/processors/node_modules/core-js-pure/features/math/atanh.js +3 -1
  1494. data/lib/condenser/processors/node_modules/core-js-pure/features/math/cbrt.js +3 -1
  1495. data/lib/condenser/processors/node_modules/core-js-pure/features/math/clz32.js +3 -1
  1496. data/lib/condenser/processors/node_modules/core-js-pure/features/math/cosh.js +3 -1
  1497. data/lib/condenser/processors/node_modules/core-js-pure/features/math/expm1.js +3 -1
  1498. data/lib/condenser/processors/node_modules/core-js-pure/features/math/fround.js +3 -1
  1499. data/lib/condenser/processors/node_modules/core-js-pure/features/math/hypot.js +3 -1
  1500. data/lib/condenser/processors/node_modules/core-js-pure/features/math/imul.js +3 -1
  1501. data/lib/condenser/processors/node_modules/core-js-pure/features/math/index.js +7 -5
  1502. data/lib/condenser/processors/node_modules/core-js-pure/features/math/log10.js +3 -1
  1503. data/lib/condenser/processors/node_modules/core-js-pure/features/math/log1p.js +3 -1
  1504. data/lib/condenser/processors/node_modules/core-js-pure/features/math/log2.js +3 -1
  1505. data/lib/condenser/processors/node_modules/core-js-pure/features/math/sign.js +3 -1
  1506. data/lib/condenser/processors/node_modules/core-js-pure/features/math/sinh.js +3 -1
  1507. data/lib/condenser/processors/node_modules/core-js-pure/features/math/tanh.js +3 -1
  1508. data/lib/condenser/processors/node_modules/core-js-pure/features/math/to-string-tag.js +3 -1
  1509. data/lib/condenser/processors/node_modules/core-js-pure/features/math/trunc.js +3 -1
  1510. data/lib/condenser/processors/node_modules/core-js-pure/features/number/constructor.js +3 -1
  1511. data/lib/condenser/processors/node_modules/core-js-pure/features/number/epsilon.js +3 -1
  1512. data/lib/condenser/processors/node_modules/core-js-pure/features/number/index.js +3 -1
  1513. data/lib/condenser/processors/node_modules/core-js-pure/features/number/is-finite.js +3 -1
  1514. data/lib/condenser/processors/node_modules/core-js-pure/features/number/is-integer.js +3 -1
  1515. data/lib/condenser/processors/node_modules/core-js-pure/features/number/is-nan.js +3 -1
  1516. data/lib/condenser/processors/node_modules/core-js-pure/features/number/is-safe-integer.js +3 -1
  1517. data/lib/condenser/processors/node_modules/core-js-pure/features/number/max-safe-integer.js +3 -1
  1518. data/lib/condenser/processors/node_modules/core-js-pure/features/number/min-safe-integer.js +3 -1
  1519. data/lib/condenser/processors/node_modules/core-js-pure/features/number/parse-float.js +3 -1
  1520. data/lib/condenser/processors/node_modules/core-js-pure/features/number/parse-int.js +3 -1
  1521. data/lib/condenser/processors/node_modules/core-js-pure/features/number/to-fixed.js +3 -1
  1522. data/lib/condenser/processors/node_modules/core-js-pure/features/number/to-precision.js +3 -1
  1523. data/lib/condenser/processors/node_modules/core-js-pure/features/number/virtual/index.js +3 -1
  1524. data/lib/condenser/processors/node_modules/core-js-pure/features/number/virtual/to-fixed.js +3 -1
  1525. data/lib/condenser/processors/node_modules/core-js-pure/features/number/virtual/to-precision.js +3 -1
  1526. data/lib/condenser/processors/node_modules/core-js-pure/features/object/assign.js +3 -1
  1527. data/lib/condenser/processors/node_modules/core-js-pure/features/object/create.js +3 -1
  1528. data/lib/condenser/processors/node_modules/core-js-pure/features/object/define-getter.js +3 -1
  1529. data/lib/condenser/processors/node_modules/core-js-pure/features/object/define-properties.js +3 -1
  1530. data/lib/condenser/processors/node_modules/core-js-pure/features/object/define-property.js +3 -1
  1531. data/lib/condenser/processors/node_modules/core-js-pure/features/object/define-setter.js +3 -1
  1532. data/lib/condenser/processors/node_modules/core-js-pure/features/object/entries.js +3 -1
  1533. data/lib/condenser/processors/node_modules/core-js-pure/features/object/freeze.js +3 -1
  1534. data/lib/condenser/processors/node_modules/core-js-pure/features/object/from-entries.js +3 -1
  1535. data/lib/condenser/processors/node_modules/core-js-pure/features/object/get-own-property-descriptor.js +3 -1
  1536. data/lib/condenser/processors/node_modules/core-js-pure/features/object/get-own-property-descriptors.js +3 -1
  1537. data/lib/condenser/processors/node_modules/core-js-pure/features/object/get-own-property-names.js +3 -1
  1538. data/lib/condenser/processors/node_modules/core-js-pure/features/object/get-own-property-symbols.js +3 -1
  1539. data/lib/condenser/processors/node_modules/core-js-pure/features/object/get-prototype-of.js +3 -1
  1540. data/lib/condenser/processors/node_modules/core-js-pure/features/object/index.js +6 -1
  1541. data/lib/condenser/processors/node_modules/core-js-pure/features/object/is-extensible.js +3 -1
  1542. data/lib/condenser/processors/node_modules/core-js-pure/features/object/is-frozen.js +3 -1
  1543. data/lib/condenser/processors/node_modules/core-js-pure/features/object/is-sealed.js +3 -1
  1544. data/lib/condenser/processors/node_modules/core-js-pure/features/object/is.js +3 -1
  1545. data/lib/condenser/processors/node_modules/core-js-pure/features/object/iterate-entries.js +4 -0
  1546. data/lib/condenser/processors/node_modules/core-js-pure/features/object/iterate-keys.js +4 -0
  1547. data/lib/condenser/processors/node_modules/core-js-pure/features/object/iterate-values.js +4 -0
  1548. data/lib/condenser/processors/node_modules/core-js-pure/features/object/keys.js +3 -1
  1549. data/lib/condenser/processors/node_modules/core-js-pure/features/object/lookup-getter.js +3 -1
  1550. data/lib/condenser/processors/node_modules/core-js-pure/features/object/lookup-setter.js +3 -1
  1551. data/lib/condenser/processors/node_modules/core-js-pure/features/object/prevent-extensions.js +3 -1
  1552. data/lib/condenser/processors/node_modules/core-js-pure/features/object/seal.js +3 -1
  1553. data/lib/condenser/processors/node_modules/core-js-pure/features/object/set-prototype-of.js +3 -1
  1554. data/lib/condenser/processors/node_modules/core-js-pure/features/object/to-string.js +3 -1
  1555. data/lib/condenser/processors/node_modules/core-js-pure/features/object/values.js +3 -1
  1556. data/lib/condenser/processors/node_modules/core-js-pure/features/parse-float.js +3 -1
  1557. data/lib/condenser/processors/node_modules/core-js-pure/features/parse-int.js +3 -1
  1558. data/lib/condenser/processors/node_modules/core-js-pure/features/promise/all-settled.js +3 -1
  1559. data/lib/condenser/processors/node_modules/core-js-pure/features/promise/finally.js +3 -1
  1560. data/lib/condenser/processors/node_modules/core-js-pure/features/promise/index.js +3 -2
  1561. data/lib/condenser/processors/node_modules/core-js-pure/features/queue-microtask.js +3 -1
  1562. data/lib/condenser/processors/node_modules/core-js-pure/features/reflect/apply.js +3 -1
  1563. data/lib/condenser/processors/node_modules/core-js-pure/features/reflect/construct.js +3 -1
  1564. data/lib/condenser/processors/node_modules/core-js-pure/features/reflect/define-property.js +3 -1
  1565. data/lib/condenser/processors/node_modules/core-js-pure/features/reflect/delete-property.js +3 -1
  1566. data/lib/condenser/processors/node_modules/core-js-pure/features/reflect/get-own-property-descriptor.js +3 -1
  1567. data/lib/condenser/processors/node_modules/core-js-pure/features/reflect/get-prototype-of.js +3 -1
  1568. data/lib/condenser/processors/node_modules/core-js-pure/features/reflect/get.js +3 -1
  1569. data/lib/condenser/processors/node_modules/core-js-pure/features/reflect/has.js +3 -1
  1570. data/lib/condenser/processors/node_modules/core-js-pure/features/reflect/index.js +3 -2
  1571. data/lib/condenser/processors/node_modules/core-js-pure/features/reflect/is-extensible.js +3 -1
  1572. data/lib/condenser/processors/node_modules/core-js-pure/features/reflect/own-keys.js +3 -1
  1573. data/lib/condenser/processors/node_modules/core-js-pure/features/reflect/prevent-extensions.js +3 -1
  1574. data/lib/condenser/processors/node_modules/core-js-pure/features/reflect/set-prototype-of.js +3 -1
  1575. data/lib/condenser/processors/node_modules/core-js-pure/features/reflect/set.js +3 -1
  1576. data/lib/condenser/processors/node_modules/core-js-pure/features/regexp/constructor.js +3 -1
  1577. data/lib/condenser/processors/node_modules/core-js-pure/features/regexp/flags.js +3 -1
  1578. data/lib/condenser/processors/node_modules/core-js-pure/features/regexp/index.js +3 -1
  1579. data/lib/condenser/processors/node_modules/core-js-pure/features/regexp/match.js +3 -1
  1580. data/lib/condenser/processors/node_modules/core-js-pure/features/regexp/replace.js +3 -1
  1581. data/lib/condenser/processors/node_modules/core-js-pure/features/regexp/search.js +3 -1
  1582. data/lib/condenser/processors/node_modules/core-js-pure/features/regexp/split.js +3 -1
  1583. data/lib/condenser/processors/node_modules/core-js-pure/features/regexp/sticky.js +3 -0
  1584. data/lib/condenser/processors/node_modules/core-js-pure/features/regexp/test.js +3 -0
  1585. data/lib/condenser/processors/node_modules/core-js-pure/features/regexp/to-string.js +3 -1
  1586. data/lib/condenser/processors/node_modules/core-js-pure/features/set-immediate.js +3 -1
  1587. data/lib/condenser/processors/node_modules/core-js-pure/features/set-interval.js +3 -1
  1588. data/lib/condenser/processors/node_modules/core-js-pure/features/set-timeout.js +3 -1
  1589. data/lib/condenser/processors/node_modules/core-js-pure/features/set/index.js +3 -2
  1590. data/lib/condenser/processors/node_modules/core-js-pure/features/string/anchor.js +3 -1
  1591. data/lib/condenser/processors/node_modules/core-js-pure/features/string/big.js +3 -1
  1592. data/lib/condenser/processors/node_modules/core-js-pure/features/string/blink.js +3 -1
  1593. data/lib/condenser/processors/node_modules/core-js-pure/features/string/bold.js +3 -1
  1594. data/lib/condenser/processors/node_modules/core-js-pure/features/string/code-point-at.js +3 -1
  1595. data/lib/condenser/processors/node_modules/core-js-pure/features/string/ends-with.js +3 -1
  1596. data/lib/condenser/processors/node_modules/core-js-pure/features/string/fixed.js +3 -1
  1597. data/lib/condenser/processors/node_modules/core-js-pure/features/string/fontcolor.js +3 -1
  1598. data/lib/condenser/processors/node_modules/core-js-pure/features/string/fontsize.js +3 -1
  1599. data/lib/condenser/processors/node_modules/core-js-pure/features/string/from-code-point.js +3 -1
  1600. data/lib/condenser/processors/node_modules/core-js-pure/features/string/includes.js +3 -1
  1601. data/lib/condenser/processors/node_modules/core-js-pure/features/string/index.js +4 -2
  1602. data/lib/condenser/processors/node_modules/core-js-pure/features/string/italics.js +3 -1
  1603. data/lib/condenser/processors/node_modules/core-js-pure/features/string/iterator.js +3 -1
  1604. data/lib/condenser/processors/node_modules/core-js-pure/features/string/link.js +3 -1
  1605. data/lib/condenser/processors/node_modules/core-js-pure/features/string/match-all.js +3 -1
  1606. data/lib/condenser/processors/node_modules/core-js-pure/features/string/match.js +3 -1
  1607. data/lib/condenser/processors/node_modules/core-js-pure/features/string/pad-end.js +3 -1
  1608. data/lib/condenser/processors/node_modules/core-js-pure/features/string/pad-start.js +3 -1
  1609. data/lib/condenser/processors/node_modules/core-js-pure/features/string/raw.js +3 -1
  1610. data/lib/condenser/processors/node_modules/core-js-pure/features/string/repeat.js +3 -1
  1611. data/lib/condenser/processors/node_modules/core-js-pure/features/string/replace.js +3 -1
  1612. data/lib/condenser/processors/node_modules/core-js-pure/features/string/search.js +3 -1
  1613. data/lib/condenser/processors/node_modules/core-js-pure/features/string/small.js +3 -1
  1614. data/lib/condenser/processors/node_modules/core-js-pure/features/string/split.js +3 -1
  1615. data/lib/condenser/processors/node_modules/core-js-pure/features/string/starts-with.js +3 -1
  1616. data/lib/condenser/processors/node_modules/core-js-pure/features/string/strike.js +3 -1
  1617. data/lib/condenser/processors/node_modules/core-js-pure/features/string/sub.js +3 -1
  1618. data/lib/condenser/processors/node_modules/core-js-pure/features/string/sup.js +3 -1
  1619. data/lib/condenser/processors/node_modules/core-js-pure/features/string/trim-end.js +3 -1
  1620. data/lib/condenser/processors/node_modules/core-js-pure/features/string/trim-left.js +3 -1
  1621. data/lib/condenser/processors/node_modules/core-js-pure/features/string/trim-right.js +3 -1
  1622. data/lib/condenser/processors/node_modules/core-js-pure/features/string/trim-start.js +3 -1
  1623. data/lib/condenser/processors/node_modules/core-js-pure/features/string/trim.js +3 -1
  1624. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/anchor.js +3 -1
  1625. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/big.js +3 -1
  1626. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/blink.js +3 -1
  1627. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/bold.js +3 -1
  1628. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/code-point-at.js +3 -1
  1629. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/ends-with.js +3 -1
  1630. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/fixed.js +3 -1
  1631. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/fontcolor.js +3 -1
  1632. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/fontsize.js +3 -1
  1633. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/includes.js +3 -1
  1634. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/index.js +4 -2
  1635. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/italics.js +3 -1
  1636. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/iterator.js +3 -1
  1637. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/link.js +3 -1
  1638. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/match-all.js +3 -1
  1639. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/pad-end.js +3 -1
  1640. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/pad-start.js +3 -1
  1641. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/repeat.js +3 -1
  1642. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/small.js +3 -1
  1643. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/starts-with.js +3 -1
  1644. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/strike.js +3 -1
  1645. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/sub.js +3 -1
  1646. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/sup.js +3 -1
  1647. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/trim-end.js +3 -1
  1648. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/trim-left.js +3 -1
  1649. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/trim-right.js +3 -1
  1650. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/trim-start.js +3 -1
  1651. data/lib/condenser/processors/node_modules/core-js-pure/features/string/virtual/trim.js +3 -1
  1652. data/lib/condenser/processors/node_modules/core-js-pure/features/symbol/async-dispose.js +1 -1
  1653. data/lib/condenser/processors/node_modules/core-js-pure/features/symbol/async-iterator.js +3 -1
  1654. data/lib/condenser/processors/node_modules/core-js-pure/features/symbol/dispose.js +1 -1
  1655. data/lib/condenser/processors/node_modules/core-js-pure/features/symbol/for.js +3 -1
  1656. data/lib/condenser/processors/node_modules/core-js-pure/features/symbol/has-instance.js +3 -1
  1657. data/lib/condenser/processors/node_modules/core-js-pure/features/symbol/index.js +4 -2
  1658. data/lib/condenser/processors/node_modules/core-js-pure/features/symbol/is-concat-spreadable.js +3 -1
  1659. data/lib/condenser/processors/node_modules/core-js-pure/features/symbol/iterator.js +3 -1
  1660. data/lib/condenser/processors/node_modules/core-js-pure/features/symbol/key-for.js +3 -1
  1661. data/lib/condenser/processors/node_modules/core-js-pure/features/symbol/match-all.js +3 -1
  1662. data/lib/condenser/processors/node_modules/core-js-pure/features/symbol/match.js +3 -1
  1663. data/lib/condenser/processors/node_modules/core-js-pure/features/symbol/observable.js +1 -1
  1664. data/lib/condenser/processors/node_modules/core-js-pure/features/symbol/pattern-match.js +1 -1
  1665. data/lib/condenser/processors/node_modules/core-js-pure/features/symbol/replace-all.js +2 -1
  1666. data/lib/condenser/processors/node_modules/core-js-pure/features/symbol/replace.js +3 -1
  1667. data/lib/condenser/processors/node_modules/core-js-pure/features/symbol/search.js +3 -1
  1668. data/lib/condenser/processors/node_modules/core-js-pure/features/symbol/species.js +3 -1
  1669. data/lib/condenser/processors/node_modules/core-js-pure/features/symbol/split.js +3 -1
  1670. data/lib/condenser/processors/node_modules/core-js-pure/features/symbol/to-primitive.js +3 -1
  1671. data/lib/condenser/processors/node_modules/core-js-pure/features/symbol/to-string-tag.js +3 -1
  1672. data/lib/condenser/processors/node_modules/core-js-pure/features/symbol/unscopables.js +3 -1
  1673. data/lib/condenser/processors/node_modules/core-js-pure/features/typed-array/float32-array.js +3 -1
  1674. data/lib/condenser/processors/node_modules/core-js-pure/features/typed-array/float64-array.js +3 -1
  1675. data/lib/condenser/processors/node_modules/core-js-pure/features/typed-array/index.js +3 -1
  1676. data/lib/condenser/processors/node_modules/core-js-pure/features/typed-array/int16-array.js +3 -1
  1677. data/lib/condenser/processors/node_modules/core-js-pure/features/typed-array/int32-array.js +3 -1
  1678. data/lib/condenser/processors/node_modules/core-js-pure/features/typed-array/int8-array.js +3 -1
  1679. data/lib/condenser/processors/node_modules/core-js-pure/features/typed-array/uint16-array.js +3 -1
  1680. data/lib/condenser/processors/node_modules/core-js-pure/features/typed-array/uint32-array.js +3 -1
  1681. data/lib/condenser/processors/node_modules/core-js-pure/features/typed-array/uint8-array.js +3 -1
  1682. data/lib/condenser/processors/node_modules/core-js-pure/features/typed-array/uint8-clamped-array.js +3 -1
  1683. data/lib/condenser/processors/node_modules/core-js-pure/features/url-search-params/index.js +3 -1
  1684. data/lib/condenser/processors/node_modules/core-js-pure/features/url/index.js +3 -1
  1685. data/lib/condenser/processors/node_modules/core-js-pure/features/url/to-json.js +3 -1
  1686. data/lib/condenser/processors/node_modules/core-js-pure/features/weak-map/index.js +4 -2
  1687. data/lib/condenser/processors/node_modules/core-js-pure/features/weak-map/upsert.js +5 -0
  1688. data/lib/condenser/processors/node_modules/core-js-pure/features/weak-set/index.js +3 -2
  1689. data/lib/condenser/processors/node_modules/core-js-pure/index.js +2 -1
  1690. data/lib/condenser/processors/node_modules/core-js-pure/internals/array-buffer-native.js +1 -0
  1691. data/lib/condenser/processors/node_modules/core-js-pure/internals/array-for-each.js +6 -2
  1692. data/lib/condenser/processors/node_modules/core-js-pure/internals/array-from.js +9 -9
  1693. data/lib/condenser/processors/node_modules/core-js-pure/internals/array-iteration.js +1 -1
  1694. data/lib/condenser/processors/node_modules/core-js-pure/internals/array-last-index-of.js +6 -3
  1695. data/lib/condenser/processors/node_modules/core-js-pure/internals/array-method-has-species-support.js +5 -1
  1696. data/lib/condenser/processors/node_modules/core-js-pure/internals/{sloppy-array-method.js → array-method-is-strict.js} +1 -1
  1697. data/lib/condenser/processors/node_modules/core-js-pure/internals/array-method-uses-to-length.js +30 -0
  1698. data/lib/condenser/processors/node_modules/core-js-pure/internals/async-iterator-create-proxy.js +61 -0
  1699. data/lib/condenser/processors/node_modules/core-js-pure/internals/async-iterator-iteration.js +61 -0
  1700. data/lib/condenser/processors/node_modules/core-js-pure/internals/async-iterator-prototype.js +37 -0
  1701. data/lib/condenser/processors/node_modules/core-js-pure/internals/classof.js +2 -1
  1702. data/lib/condenser/processors/node_modules/core-js-pure/internals/collection-from.js +1 -1
  1703. data/lib/condenser/processors/node_modules/core-js-pure/internals/collection-strong.js +1 -1
  1704. data/lib/condenser/processors/node_modules/core-js-pure/internals/collection.js +14 -9
  1705. data/lib/condenser/processors/node_modules/core-js-pure/internals/{hide.js → create-non-enumerable-property.js} +0 -0
  1706. data/lib/condenser/processors/node_modules/core-js-pure/internals/define-iterator.js +3 -3
  1707. data/lib/condenser/processors/node_modules/core-js-pure/internals/define-well-known-symbol.js +1 -1
  1708. data/lib/condenser/processors/node_modules/core-js-pure/internals/descriptors.js +1 -1
  1709. data/lib/condenser/processors/node_modules/core-js-pure/internals/engine-is-ios.js +3 -0
  1710. data/lib/condenser/processors/node_modules/core-js-pure/internals/{user-agent.js → engine-user-agent.js} +0 -0
  1711. data/lib/condenser/processors/node_modules/core-js-pure/internals/engine-v8-version.js +20 -0
  1712. data/lib/condenser/processors/node_modules/core-js-pure/internals/entry-unbind.js +3 -1
  1713. data/lib/condenser/processors/node_modules/core-js-pure/internals/export.js +9 -5
  1714. data/lib/condenser/processors/node_modules/core-js-pure/internals/flatten-into-array.js +1 -1
  1715. data/lib/condenser/processors/node_modules/core-js-pure/internals/{bind-context.js → function-bind-context.js} +0 -0
  1716. data/lib/condenser/processors/node_modules/core-js-pure/internals/get-async-iterator-method.js +9 -0
  1717. data/lib/condenser/processors/node_modules/core-js-pure/internals/global.js +4 -5
  1718. data/lib/condenser/processors/node_modules/core-js-pure/internals/ieee754.js +88 -0
  1719. data/lib/condenser/processors/node_modules/core-js-pure/internals/inspect-source.js +12 -0
  1720. data/lib/condenser/processors/node_modules/core-js-pure/internals/internal-state.js +2 -2
  1721. data/lib/condenser/processors/node_modules/core-js-pure/internals/iterate.js +5 -4
  1722. data/lib/condenser/processors/node_modules/core-js-pure/internals/iterator-create-proxy.js +51 -0
  1723. data/lib/condenser/processors/node_modules/core-js-pure/internals/iterators-core.js +4 -2
  1724. data/lib/condenser/processors/node_modules/core-js-pure/internals/map-upsert.js +23 -0
  1725. data/lib/condenser/processors/node_modules/core-js-pure/internals/microtask.js +3 -3
  1726. data/lib/condenser/processors/node_modules/core-js-pure/internals/native-url.js +13 -4
  1727. data/lib/condenser/processors/node_modules/core-js-pure/internals/native-weak-map.js +2 -2
  1728. data/lib/condenser/processors/node_modules/core-js-pure/internals/{parse-float.js → number-parse-float.js} +4 -4
  1729. data/lib/condenser/processors/node_modules/core-js-pure/internals/{parse-int.js → number-parse-int.js} +4 -4
  1730. data/lib/condenser/processors/node_modules/core-js-pure/internals/object-assign.js +12 -1
  1731. data/lib/condenser/processors/node_modules/core-js-pure/internals/object-create.js +48 -19
  1732. data/lib/condenser/processors/node_modules/core-js-pure/internals/object-iterator.js +37 -0
  1733. data/lib/condenser/processors/node_modules/core-js-pure/internals/{forced-object-prototype-accessors-methods.js → object-prototype-accessors-forced.js} +0 -0
  1734. data/lib/condenser/processors/node_modules/core-js-pure/internals/object-to-string.js +3 -8
  1735. data/lib/condenser/processors/node_modules/core-js-pure/internals/redefine.js +2 -2
  1736. data/lib/condenser/processors/node_modules/core-js-pure/internals/regexp-sticky-helpers.js +1 -0
  1737. data/lib/condenser/processors/node_modules/core-js-pure/internals/set-global.js +2 -2
  1738. data/lib/condenser/processors/node_modules/core-js-pure/internals/set-to-string-tag.js +5 -3
  1739. data/lib/condenser/processors/node_modules/core-js-pure/internals/shared-store.js +7 -0
  1740. data/lib/condenser/processors/node_modules/core-js-pure/internals/shared.js +3 -7
  1741. data/lib/condenser/processors/node_modules/core-js-pure/internals/{forced-string-html-method.js → string-html-forced.js} +0 -0
  1742. data/lib/condenser/processors/node_modules/core-js-pure/internals/{webkit-string-pad-bug.js → string-pad-webkit-bug.js} +1 -1
  1743. data/lib/condenser/processors/node_modules/core-js-pure/internals/{punycode-to-ascii.js → string-punycode-to-ascii.js} +0 -0
  1744. data/lib/condenser/processors/node_modules/core-js-pure/internals/{forced-string-trim-method.js → string-trim-forced.js} +0 -0
  1745. data/lib/condenser/processors/node_modules/core-js-pure/internals/task.js +4 -2
  1746. data/lib/condenser/processors/node_modules/core-js-pure/internals/to-absolute-index.js +1 -1
  1747. data/lib/condenser/processors/node_modules/core-js-pure/internals/to-positive-integer.js +7 -0
  1748. data/lib/condenser/processors/node_modules/core-js-pure/internals/to-string-tag-support.js +8 -0
  1749. data/lib/condenser/processors/node_modules/core-js-pure/internals/{typed-arrays-constructors-requires-wrappers.js → typed-array-constructors-require-wrappers.js} +1 -1
  1750. data/lib/condenser/processors/node_modules/core-js-pure/internals/use-symbol-as-uid.js +7 -0
  1751. data/lib/condenser/processors/node_modules/core-js-pure/internals/well-known-symbol-wrapped.js +3 -0
  1752. data/lib/condenser/processors/node_modules/core-js-pure/internals/well-known-symbol.js +8 -3
  1753. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.array.concat.js +5 -1
  1754. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.array.every.js +6 -2
  1755. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.array.filter.js +6 -1
  1756. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.array.find-index.js +4 -1
  1757. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.array.find.js +4 -1
  1758. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.array.includes.js +4 -1
  1759. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.array.index-of.js +5 -3
  1760. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.array.join.js +3 -3
  1761. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.array.map.js +6 -1
  1762. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.array.reduce-right.js +6 -2
  1763. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.array.reduce.js +6 -2
  1764. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.array.reverse.js +1 -0
  1765. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.array.slice.js +6 -2
  1766. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.array.some.js +6 -2
  1767. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.array.sort.js +5 -5
  1768. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.array.splice.js +5 -1
  1769. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.global-this.js +8 -0
  1770. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.json.stringify.js +32 -0
  1771. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.map.js +3 -3
  1772. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.number.parse-float.js +1 -1
  1773. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.number.parse-int.js +1 -1
  1774. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.object.define-getter.js +1 -1
  1775. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.object.define-setter.js +1 -1
  1776. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.object.lookup-getter.js +1 -1
  1777. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.object.lookup-setter.js +1 -1
  1778. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.parse-float.js +1 -1
  1779. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.parse-int.js +1 -1
  1780. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.promise.finally.js +7 -1
  1781. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.promise.js +29 -21
  1782. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.reflect.set.js +10 -1
  1783. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.regexp.sticky.js +1 -0
  1784. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.regexp.test.js +1 -0
  1785. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.set.js +2 -2
  1786. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.string.anchor.js +1 -1
  1787. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.string.big.js +1 -1
  1788. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.string.blink.js +1 -1
  1789. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.string.bold.js +1 -1
  1790. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.string.ends-with.js +10 -1
  1791. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.string.fixed.js +1 -1
  1792. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.string.fontcolor.js +1 -1
  1793. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.string.fontsize.js +1 -1
  1794. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.string.italics.js +1 -1
  1795. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.string.link.js +1 -1
  1796. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.string.match-all.js +23 -8
  1797. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.string.pad-end.js +1 -1
  1798. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.string.pad-start.js +1 -1
  1799. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.string.small.js +1 -1
  1800. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.string.starts-with.js +10 -1
  1801. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.string.strike.js +1 -1
  1802. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.string.sub.js +1 -1
  1803. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.string.sup.js +1 -1
  1804. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.string.trim-end.js +1 -1
  1805. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.string.trim-start.js +1 -1
  1806. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.string.trim.js +1 -1
  1807. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.symbol.js +46 -34
  1808. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.weak-map.js +3 -3
  1809. data/lib/condenser/processors/node_modules/core-js-pure/modules/es.weak-set.js +3 -3
  1810. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.aggregate-error.js +19 -3
  1811. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.async-iterator.as-indexed-pairs.js +27 -0
  1812. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.async-iterator.constructor.js +29 -0
  1813. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.async-iterator.drop.js +41 -0
  1814. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.async-iterator.every.js +10 -0
  1815. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.async-iterator.filter.js +42 -0
  1816. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.async-iterator.find.js +10 -0
  1817. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.async-iterator.flat-map.js +67 -0
  1818. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.async-iterator.for-each.js +10 -0
  1819. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.async-iterator.from.js +30 -0
  1820. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.async-iterator.map.js +30 -0
  1821. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.async-iterator.reduce.js +46 -0
  1822. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.async-iterator.some.js +10 -0
  1823. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.async-iterator.take.js +22 -0
  1824. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.async-iterator.to-array.js +10 -0
  1825. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.global-this.js +2 -8
  1826. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.iterator.as-indexed-pairs.js +20 -0
  1827. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.iterator.constructor.js +48 -0
  1828. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.iterator.drop.js +30 -0
  1829. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.iterator.every.js +16 -0
  1830. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.iterator.filter.js +30 -0
  1831. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.iterator.find.js +16 -0
  1832. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.iterator.flat-map.js +46 -0
  1833. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.iterator.for-each.js +11 -0
  1834. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.iterator.from.js +32 -0
  1835. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.iterator.map.js +23 -0
  1836. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.iterator.reduce.js +25 -0
  1837. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.iterator.some.js +16 -0
  1838. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.iterator.take.js +25 -0
  1839. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.iterator.to-array.js +15 -0
  1840. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.map.every.js +1 -1
  1841. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.map.filter.js +1 -1
  1842. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.map.find-key.js +1 -1
  1843. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.map.find.js +1 -1
  1844. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.map.map-keys.js +1 -1
  1845. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.map.map-values.js +1 -1
  1846. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.map.reduce.js +9 -8
  1847. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.map.some.js +1 -1
  1848. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.map.update-or-insert.js +5 -12
  1849. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.map.upsert.js +10 -0
  1850. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.math.iaddh.js +1 -0
  1851. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.math.imulh.js +1 -0
  1852. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.math.isubh.js +1 -0
  1853. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.math.signbit.js +1 -2
  1854. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.math.umulh.js +1 -0
  1855. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.number.from-string.js +1 -1
  1856. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.object.iterate-entries.js +11 -0
  1857. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.object.iterate-keys.js +11 -0
  1858. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.object.iterate-values.js +11 -0
  1859. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.observable.js +2 -2
  1860. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.set.every.js +1 -1
  1861. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.set.filter.js +1 -1
  1862. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.set.find.js +1 -1
  1863. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.set.map.js +1 -1
  1864. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.set.reduce.js +9 -8
  1865. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.set.some.js +1 -1
  1866. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.string.match-all.js +0 -1
  1867. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.string.replace-all.js +17 -20
  1868. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.symbol.replace-all.js +1 -2
  1869. data/lib/condenser/processors/node_modules/core-js-pure/modules/esnext.weak-map.upsert.js +10 -0
  1870. data/lib/condenser/processors/node_modules/core-js-pure/modules/web.dom-collections.iterator.js +4 -3
  1871. data/lib/condenser/processors/node_modules/core-js-pure/modules/web.immediate.js +2 -1
  1872. data/lib/condenser/processors/node_modules/core-js-pure/modules/web.timers.js +1 -1
  1873. data/lib/condenser/processors/node_modules/core-js-pure/modules/web.url-search-params.js +42 -6
  1874. data/lib/condenser/processors/node_modules/core-js-pure/modules/web.url.js +1 -2
  1875. data/lib/condenser/processors/node_modules/core-js-pure/package.json +12 -6
  1876. data/lib/condenser/processors/node_modules/core-js-pure/postinstall.js +56 -0
  1877. data/lib/condenser/processors/node_modules/core-js-pure/proposals/global-this.js +2 -1
  1878. data/lib/condenser/processors/node_modules/core-js-pure/proposals/iterator-helpers.js +28 -0
  1879. data/lib/condenser/processors/node_modules/core-js-pure/proposals/map-update-or-insert.js +2 -1
  1880. data/lib/condenser/processors/node_modules/core-js-pure/proposals/map-upsert.js +5 -0
  1881. data/lib/condenser/processors/node_modules/core-js-pure/proposals/object-iteration.js +3 -0
  1882. data/lib/condenser/processors/node_modules/core-js-pure/stable/array-buffer/constructor.js +3 -1
  1883. data/lib/condenser/processors/node_modules/core-js-pure/stable/array-buffer/index.js +3 -1
  1884. data/lib/condenser/processors/node_modules/core-js-pure/stable/array-buffer/is-view.js +3 -1
  1885. data/lib/condenser/processors/node_modules/core-js-pure/stable/array-buffer/slice.js +3 -1
  1886. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/concat.js +3 -1
  1887. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/copy-within.js +3 -1
  1888. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/entries.js +3 -1
  1889. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/every.js +3 -1
  1890. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/fill.js +3 -1
  1891. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/filter.js +3 -1
  1892. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/find-index.js +3 -1
  1893. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/find.js +3 -1
  1894. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/flat-map.js +3 -1
  1895. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/flat.js +3 -1
  1896. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/for-each.js +3 -1
  1897. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/from.js +3 -1
  1898. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/includes.js +3 -1
  1899. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/index-of.js +3 -1
  1900. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/index.js +3 -1
  1901. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/is-array.js +3 -1
  1902. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/iterator.js +3 -1
  1903. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/join.js +3 -1
  1904. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/keys.js +3 -1
  1905. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/last-index-of.js +3 -1
  1906. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/map.js +3 -1
  1907. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/of.js +3 -1
  1908. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/reduce-right.js +3 -1
  1909. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/reduce.js +3 -1
  1910. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/reverse.js +3 -1
  1911. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/slice.js +3 -1
  1912. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/some.js +3 -1
  1913. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/sort.js +3 -1
  1914. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/splice.js +3 -1
  1915. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/values.js +3 -1
  1916. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/concat.js +3 -1
  1917. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/copy-within.js +3 -1
  1918. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/entries.js +3 -1
  1919. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/every.js +3 -1
  1920. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/fill.js +3 -1
  1921. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/filter.js +3 -1
  1922. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/find-index.js +3 -1
  1923. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/find.js +3 -1
  1924. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/flat-map.js +3 -1
  1925. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/flat.js +3 -1
  1926. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/for-each.js +3 -1
  1927. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/includes.js +3 -1
  1928. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/index-of.js +3 -1
  1929. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/index.js +3 -1
  1930. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/iterator.js +3 -1
  1931. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/join.js +3 -1
  1932. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/keys.js +3 -1
  1933. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/last-index-of.js +3 -1
  1934. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/map.js +3 -1
  1935. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/reduce-right.js +3 -1
  1936. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/reduce.js +3 -1
  1937. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/reverse.js +3 -1
  1938. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/slice.js +3 -1
  1939. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/some.js +3 -1
  1940. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/sort.js +3 -1
  1941. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/splice.js +3 -1
  1942. data/lib/condenser/processors/node_modules/core-js-pure/stable/array/virtual/values.js +3 -1
  1943. data/lib/condenser/processors/node_modules/core-js-pure/stable/clear-immediate.js +2 -1
  1944. data/lib/condenser/processors/node_modules/core-js-pure/stable/data-view/index.js +3 -1
  1945. data/lib/condenser/processors/node_modules/core-js-pure/stable/date/index.js +3 -1
  1946. data/lib/condenser/processors/node_modules/core-js-pure/stable/date/now.js +3 -1
  1947. data/lib/condenser/processors/node_modules/core-js-pure/stable/date/to-iso-string.js +3 -1
  1948. data/lib/condenser/processors/node_modules/core-js-pure/stable/date/to-json.js +3 -1
  1949. data/lib/condenser/processors/node_modules/core-js-pure/stable/date/to-primitive.js +3 -1
  1950. data/lib/condenser/processors/node_modules/core-js-pure/stable/date/to-string.js +3 -1
  1951. data/lib/condenser/processors/node_modules/core-js-pure/stable/dom-collections/for-each.js +3 -1
  1952. data/lib/condenser/processors/node_modules/core-js-pure/stable/function/bind.js +3 -1
  1953. data/lib/condenser/processors/node_modules/core-js-pure/stable/function/has-instance.js +3 -1
  1954. data/lib/condenser/processors/node_modules/core-js-pure/stable/function/index.js +3 -1
  1955. data/lib/condenser/processors/node_modules/core-js-pure/stable/function/name.js +3 -1
  1956. data/lib/condenser/processors/node_modules/core-js-pure/stable/function/virtual/bind.js +3 -1
  1957. data/lib/condenser/processors/node_modules/core-js-pure/stable/function/virtual/index.js +3 -1
  1958. data/lib/condenser/processors/node_modules/core-js-pure/stable/global-this.js +2 -2
  1959. data/lib/condenser/processors/node_modules/core-js-pure/stable/index.js +2 -1
  1960. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/bind.js +3 -1
  1961. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/code-point-at.js +3 -1
  1962. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/concat.js +3 -1
  1963. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/copy-within.js +3 -1
  1964. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/ends-with.js +3 -1
  1965. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/every.js +3 -1
  1966. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/fill.js +3 -1
  1967. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/filter.js +3 -1
  1968. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/find-index.js +3 -1
  1969. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/find.js +3 -1
  1970. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/flags.js +3 -1
  1971. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/flat-map.js +3 -1
  1972. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/flat.js +3 -1
  1973. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/includes.js +3 -1
  1974. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/index-of.js +3 -1
  1975. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/last-index-of.js +3 -1
  1976. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/map.js +3 -1
  1977. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/match-all.js +3 -1
  1978. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/pad-end.js +3 -1
  1979. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/pad-start.js +3 -1
  1980. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/reduce-right.js +3 -1
  1981. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/reduce.js +3 -1
  1982. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/repeat.js +3 -1
  1983. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/reverse.js +3 -1
  1984. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/slice.js +3 -1
  1985. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/some.js +3 -1
  1986. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/sort.js +3 -1
  1987. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/splice.js +3 -1
  1988. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/starts-with.js +3 -1
  1989. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/trim-end.js +3 -1
  1990. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/trim-left.js +3 -1
  1991. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/trim-right.js +3 -1
  1992. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/trim-start.js +3 -1
  1993. data/lib/condenser/processors/node_modules/core-js-pure/stable/instance/trim.js +3 -1
  1994. data/lib/condenser/processors/node_modules/core-js-pure/stable/json/index.js +3 -1
  1995. data/lib/condenser/processors/node_modules/core-js-pure/stable/json/stringify.js +3 -1
  1996. data/lib/condenser/processors/node_modules/core-js-pure/stable/json/to-string-tag.js +3 -1
  1997. data/lib/condenser/processors/node_modules/core-js-pure/stable/map/index.js +3 -1
  1998. data/lib/condenser/processors/node_modules/core-js-pure/stable/math/acosh.js +3 -1
  1999. data/lib/condenser/processors/node_modules/core-js-pure/stable/math/asinh.js +3 -1
  2000. data/lib/condenser/processors/node_modules/core-js-pure/stable/math/atanh.js +3 -1
  2001. data/lib/condenser/processors/node_modules/core-js-pure/stable/math/cbrt.js +3 -1
  2002. data/lib/condenser/processors/node_modules/core-js-pure/stable/math/clz32.js +3 -1
  2003. data/lib/condenser/processors/node_modules/core-js-pure/stable/math/cosh.js +3 -1
  2004. data/lib/condenser/processors/node_modules/core-js-pure/stable/math/expm1.js +3 -1
  2005. data/lib/condenser/processors/node_modules/core-js-pure/stable/math/fround.js +3 -1
  2006. data/lib/condenser/processors/node_modules/core-js-pure/stable/math/hypot.js +3 -1
  2007. data/lib/condenser/processors/node_modules/core-js-pure/stable/math/imul.js +3 -1
  2008. data/lib/condenser/processors/node_modules/core-js-pure/stable/math/index.js +3 -1
  2009. data/lib/condenser/processors/node_modules/core-js-pure/stable/math/log10.js +3 -1
  2010. data/lib/condenser/processors/node_modules/core-js-pure/stable/math/log1p.js +3 -1
  2011. data/lib/condenser/processors/node_modules/core-js-pure/stable/math/log2.js +3 -1
  2012. data/lib/condenser/processors/node_modules/core-js-pure/stable/math/sign.js +3 -1
  2013. data/lib/condenser/processors/node_modules/core-js-pure/stable/math/sinh.js +3 -1
  2014. data/lib/condenser/processors/node_modules/core-js-pure/stable/math/tanh.js +3 -1
  2015. data/lib/condenser/processors/node_modules/core-js-pure/stable/math/to-string-tag.js +3 -1
  2016. data/lib/condenser/processors/node_modules/core-js-pure/stable/math/trunc.js +3 -1
  2017. data/lib/condenser/processors/node_modules/core-js-pure/stable/number/constructor.js +3 -1
  2018. data/lib/condenser/processors/node_modules/core-js-pure/stable/number/epsilon.js +3 -1
  2019. data/lib/condenser/processors/node_modules/core-js-pure/stable/number/index.js +3 -1
  2020. data/lib/condenser/processors/node_modules/core-js-pure/stable/number/is-finite.js +3 -1
  2021. data/lib/condenser/processors/node_modules/core-js-pure/stable/number/is-integer.js +3 -1
  2022. data/lib/condenser/processors/node_modules/core-js-pure/stable/number/is-nan.js +3 -1
  2023. data/lib/condenser/processors/node_modules/core-js-pure/stable/number/is-safe-integer.js +3 -1
  2024. data/lib/condenser/processors/node_modules/core-js-pure/stable/number/max-safe-integer.js +3 -1
  2025. data/lib/condenser/processors/node_modules/core-js-pure/stable/number/min-safe-integer.js +3 -1
  2026. data/lib/condenser/processors/node_modules/core-js-pure/stable/number/parse-float.js +3 -1
  2027. data/lib/condenser/processors/node_modules/core-js-pure/stable/number/parse-int.js +3 -1
  2028. data/lib/condenser/processors/node_modules/core-js-pure/stable/number/to-fixed.js +3 -1
  2029. data/lib/condenser/processors/node_modules/core-js-pure/stable/number/to-precision.js +3 -1
  2030. data/lib/condenser/processors/node_modules/core-js-pure/stable/number/virtual/index.js +3 -1
  2031. data/lib/condenser/processors/node_modules/core-js-pure/stable/number/virtual/to-fixed.js +3 -1
  2032. data/lib/condenser/processors/node_modules/core-js-pure/stable/number/virtual/to-precision.js +3 -1
  2033. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/assign.js +3 -1
  2034. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/create.js +3 -1
  2035. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/define-getter.js +3 -1
  2036. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/define-properties.js +3 -1
  2037. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/define-property.js +3 -1
  2038. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/define-setter.js +3 -1
  2039. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/entries.js +3 -1
  2040. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/freeze.js +3 -1
  2041. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/from-entries.js +3 -1
  2042. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/get-own-property-descriptor.js +3 -1
  2043. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/get-own-property-descriptors.js +3 -1
  2044. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/get-own-property-names.js +3 -1
  2045. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/get-own-property-symbols.js +3 -1
  2046. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/get-prototype-of.js +3 -1
  2047. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/index.js +3 -1
  2048. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/is-extensible.js +3 -1
  2049. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/is-frozen.js +3 -1
  2050. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/is-sealed.js +3 -1
  2051. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/is.js +3 -1
  2052. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/keys.js +3 -1
  2053. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/lookup-getter.js +3 -1
  2054. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/lookup-setter.js +3 -1
  2055. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/prevent-extensions.js +3 -1
  2056. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/seal.js +3 -1
  2057. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/set-prototype-of.js +3 -1
  2058. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/to-string.js +3 -1
  2059. data/lib/condenser/processors/node_modules/core-js-pure/stable/object/values.js +3 -1
  2060. data/lib/condenser/processors/node_modules/core-js-pure/stable/parse-float.js +3 -1
  2061. data/lib/condenser/processors/node_modules/core-js-pure/stable/parse-int.js +3 -1
  2062. data/lib/condenser/processors/node_modules/core-js-pure/stable/promise/all-settled.js +3 -1
  2063. data/lib/condenser/processors/node_modules/core-js-pure/stable/promise/finally.js +3 -1
  2064. data/lib/condenser/processors/node_modules/core-js-pure/stable/promise/index.js +3 -1
  2065. data/lib/condenser/processors/node_modules/core-js-pure/stable/queue-microtask.js +3 -1
  2066. data/lib/condenser/processors/node_modules/core-js-pure/stable/reflect/apply.js +3 -1
  2067. data/lib/condenser/processors/node_modules/core-js-pure/stable/reflect/construct.js +3 -1
  2068. data/lib/condenser/processors/node_modules/core-js-pure/stable/reflect/define-property.js +3 -1
  2069. data/lib/condenser/processors/node_modules/core-js-pure/stable/reflect/delete-property.js +3 -1
  2070. data/lib/condenser/processors/node_modules/core-js-pure/stable/reflect/get-own-property-descriptor.js +3 -1
  2071. data/lib/condenser/processors/node_modules/core-js-pure/stable/reflect/get-prototype-of.js +3 -1
  2072. data/lib/condenser/processors/node_modules/core-js-pure/stable/reflect/get.js +3 -1
  2073. data/lib/condenser/processors/node_modules/core-js-pure/stable/reflect/has.js +3 -1
  2074. data/lib/condenser/processors/node_modules/core-js-pure/stable/reflect/index.js +3 -1
  2075. data/lib/condenser/processors/node_modules/core-js-pure/stable/reflect/is-extensible.js +3 -1
  2076. data/lib/condenser/processors/node_modules/core-js-pure/stable/reflect/own-keys.js +3 -1
  2077. data/lib/condenser/processors/node_modules/core-js-pure/stable/reflect/prevent-extensions.js +3 -1
  2078. data/lib/condenser/processors/node_modules/core-js-pure/stable/reflect/set-prototype-of.js +3 -1
  2079. data/lib/condenser/processors/node_modules/core-js-pure/stable/reflect/set.js +3 -1
  2080. data/lib/condenser/processors/node_modules/core-js-pure/stable/regexp/constructor.js +3 -1
  2081. data/lib/condenser/processors/node_modules/core-js-pure/stable/regexp/flags.js +3 -1
  2082. data/lib/condenser/processors/node_modules/core-js-pure/stable/regexp/index.js +3 -1
  2083. data/lib/condenser/processors/node_modules/core-js-pure/stable/regexp/match.js +3 -1
  2084. data/lib/condenser/processors/node_modules/core-js-pure/stable/regexp/replace.js +3 -1
  2085. data/lib/condenser/processors/node_modules/core-js-pure/stable/regexp/search.js +3 -1
  2086. data/lib/condenser/processors/node_modules/core-js-pure/stable/regexp/split.js +3 -1
  2087. data/lib/condenser/processors/node_modules/core-js-pure/stable/regexp/sticky.js +3 -0
  2088. data/lib/condenser/processors/node_modules/core-js-pure/stable/regexp/test.js +3 -0
  2089. data/lib/condenser/processors/node_modules/core-js-pure/stable/regexp/to-string.js +3 -1
  2090. data/lib/condenser/processors/node_modules/core-js-pure/stable/set-immediate.js +2 -1
  2091. data/lib/condenser/processors/node_modules/core-js-pure/stable/set-interval.js +2 -1
  2092. data/lib/condenser/processors/node_modules/core-js-pure/stable/set-timeout.js +2 -1
  2093. data/lib/condenser/processors/node_modules/core-js-pure/stable/set/index.js +3 -1
  2094. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/anchor.js +3 -1
  2095. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/big.js +3 -1
  2096. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/blink.js +3 -1
  2097. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/bold.js +3 -1
  2098. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/code-point-at.js +3 -1
  2099. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/ends-with.js +3 -1
  2100. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/fixed.js +3 -1
  2101. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/fontcolor.js +3 -1
  2102. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/fontsize.js +3 -1
  2103. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/from-code-point.js +3 -1
  2104. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/includes.js +3 -1
  2105. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/index.js +3 -1
  2106. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/italics.js +3 -1
  2107. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/iterator.js +3 -1
  2108. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/link.js +3 -1
  2109. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/match-all.js +3 -1
  2110. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/match.js +3 -1
  2111. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/pad-end.js +3 -1
  2112. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/pad-start.js +3 -1
  2113. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/raw.js +3 -1
  2114. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/repeat.js +3 -1
  2115. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/replace.js +3 -1
  2116. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/search.js +3 -1
  2117. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/small.js +3 -1
  2118. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/split.js +3 -1
  2119. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/starts-with.js +3 -1
  2120. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/strike.js +3 -1
  2121. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/sub.js +3 -1
  2122. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/sup.js +3 -1
  2123. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/trim-end.js +3 -1
  2124. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/trim-left.js +3 -1
  2125. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/trim-right.js +3 -1
  2126. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/trim-start.js +3 -1
  2127. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/trim.js +3 -1
  2128. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/anchor.js +3 -1
  2129. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/big.js +3 -1
  2130. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/blink.js +3 -1
  2131. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/bold.js +3 -1
  2132. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/code-point-at.js +3 -1
  2133. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/ends-with.js +3 -1
  2134. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/fixed.js +3 -1
  2135. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/fontcolor.js +3 -1
  2136. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/fontsize.js +3 -1
  2137. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/includes.js +3 -1
  2138. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/index.js +3 -1
  2139. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/italics.js +3 -1
  2140. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/iterator.js +3 -1
  2141. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/link.js +3 -1
  2142. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/match-all.js +3 -1
  2143. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/pad-end.js +3 -1
  2144. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/pad-start.js +3 -1
  2145. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/repeat.js +3 -1
  2146. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/small.js +3 -1
  2147. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/starts-with.js +3 -1
  2148. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/strike.js +3 -1
  2149. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/sub.js +3 -1
  2150. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/sup.js +3 -1
  2151. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/trim-end.js +3 -1
  2152. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/trim-left.js +3 -1
  2153. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/trim-right.js +3 -1
  2154. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/trim-start.js +3 -1
  2155. data/lib/condenser/processors/node_modules/core-js-pure/stable/string/virtual/trim.js +3 -1
  2156. data/lib/condenser/processors/node_modules/core-js-pure/stable/symbol/async-iterator.js +3 -1
  2157. data/lib/condenser/processors/node_modules/core-js-pure/stable/symbol/for.js +3 -1
  2158. data/lib/condenser/processors/node_modules/core-js-pure/stable/symbol/has-instance.js +3 -1
  2159. data/lib/condenser/processors/node_modules/core-js-pure/stable/symbol/index.js +3 -1
  2160. data/lib/condenser/processors/node_modules/core-js-pure/stable/symbol/is-concat-spreadable.js +3 -1
  2161. data/lib/condenser/processors/node_modules/core-js-pure/stable/symbol/iterator.js +3 -1
  2162. data/lib/condenser/processors/node_modules/core-js-pure/stable/symbol/key-for.js +3 -1
  2163. data/lib/condenser/processors/node_modules/core-js-pure/stable/symbol/match-all.js +3 -1
  2164. data/lib/condenser/processors/node_modules/core-js-pure/stable/symbol/match.js +3 -1
  2165. data/lib/condenser/processors/node_modules/core-js-pure/stable/symbol/replace.js +3 -1
  2166. data/lib/condenser/processors/node_modules/core-js-pure/stable/symbol/search.js +3 -1
  2167. data/lib/condenser/processors/node_modules/core-js-pure/stable/symbol/species.js +3 -1
  2168. data/lib/condenser/processors/node_modules/core-js-pure/stable/symbol/split.js +3 -1
  2169. data/lib/condenser/processors/node_modules/core-js-pure/stable/symbol/to-primitive.js +3 -1
  2170. data/lib/condenser/processors/node_modules/core-js-pure/stable/symbol/to-string-tag.js +3 -1
  2171. data/lib/condenser/processors/node_modules/core-js-pure/stable/symbol/unscopables.js +3 -1
  2172. data/lib/condenser/processors/node_modules/core-js-pure/stable/typed-array/float32-array.js +3 -1
  2173. data/lib/condenser/processors/node_modules/core-js-pure/stable/typed-array/float64-array.js +3 -1
  2174. data/lib/condenser/processors/node_modules/core-js-pure/stable/typed-array/index.js +3 -1
  2175. data/lib/condenser/processors/node_modules/core-js-pure/stable/typed-array/int16-array.js +3 -1
  2176. data/lib/condenser/processors/node_modules/core-js-pure/stable/typed-array/int32-array.js +3 -1
  2177. data/lib/condenser/processors/node_modules/core-js-pure/stable/typed-array/int8-array.js +3 -1
  2178. data/lib/condenser/processors/node_modules/core-js-pure/stable/typed-array/uint16-array.js +3 -1
  2179. data/lib/condenser/processors/node_modules/core-js-pure/stable/typed-array/uint32-array.js +3 -1
  2180. data/lib/condenser/processors/node_modules/core-js-pure/stable/typed-array/uint8-array.js +3 -1
  2181. data/lib/condenser/processors/node_modules/core-js-pure/stable/typed-array/uint8-clamped-array.js +3 -1
  2182. data/lib/condenser/processors/node_modules/core-js-pure/stable/url-search-params/index.js +3 -1
  2183. data/lib/condenser/processors/node_modules/core-js-pure/stable/url/index.js +3 -1
  2184. data/lib/condenser/processors/node_modules/core-js-pure/stable/weak-map/index.js +3 -1
  2185. data/lib/condenser/processors/node_modules/core-js-pure/stable/weak-set/index.js +3 -1
  2186. data/lib/condenser/processors/node_modules/core-js-pure/stage/0.js +2 -1
  2187. data/lib/condenser/processors/node_modules/core-js-pure/stage/1.js +3 -2
  2188. data/lib/condenser/processors/node_modules/core-js-pure/stage/2.js +4 -3
  2189. data/lib/condenser/processors/node_modules/core-js-pure/stage/3.js +4 -2
  2190. data/lib/condenser/processors/node_modules/core-js-pure/stage/4.js +3 -1
  2191. data/lib/condenser/processors/node_modules/core-js-pure/stage/index.js +3 -1
  2192. data/lib/condenser/processors/node_modules/core-js-pure/stage/pre.js +2 -1
  2193. data/lib/condenser/processors/node_modules/core-js-pure/web/dom-collections.js +2 -1
  2194. data/lib/condenser/processors/node_modules/core-js-pure/web/immediate.js +2 -1
  2195. data/lib/condenser/processors/node_modules/core-js-pure/web/index.js +2 -1
  2196. data/lib/condenser/processors/node_modules/core-js-pure/web/timers.js +2 -1
  2197. data/lib/condenser/processors/node_modules/electron-to-chromium/README.md +11 -1
  2198. data/lib/condenser/processors/node_modules/electron-to-chromium/chromium-versions.js +3 -1
  2199. data/lib/condenser/processors/node_modules/electron-to-chromium/full-chromium-versions.js +142 -0
  2200. data/lib/condenser/processors/node_modules/electron-to-chromium/full-versions.js +102 -0
  2201. data/lib/condenser/processors/node_modules/electron-to-chromium/package.json +11 -11
  2202. data/lib/condenser/processors/node_modules/electron-to-chromium/versions.js +3 -0
  2203. data/lib/condenser/processors/node_modules/has-symbols/.eslintrc +2 -1
  2204. data/lib/condenser/processors/node_modules/has-symbols/.github/FUNDING.yml +12 -0
  2205. data/lib/condenser/processors/node_modules/has-symbols/.github/workflows/rebase.yml +15 -0
  2206. data/lib/condenser/processors/node_modules/has-symbols/.travis.yml +9 -110
  2207. data/lib/condenser/processors/node_modules/has-symbols/CHANGELOG.md +34 -3
  2208. data/lib/condenser/processors/node_modules/has-symbols/package.json +26 -15
  2209. data/lib/condenser/processors/node_modules/has-symbols/shams.js +1 -1
  2210. data/lib/condenser/processors/node_modules/is-reference/CHANGELOG.md +4 -0
  2211. data/lib/condenser/processors/node_modules/is-reference/dist/is-reference.es.js +4 -2
  2212. data/lib/condenser/processors/node_modules/is-reference/dist/is-reference.js +4 -2
  2213. data/lib/condenser/processors/node_modules/is-reference/node_modules/@types/estree/LICENSE +21 -0
  2214. data/lib/condenser/processors/node_modules/is-reference/node_modules/@types/estree/README.md +16 -0
  2215. data/lib/condenser/processors/node_modules/is-reference/node_modules/@types/estree/index.d.ts +548 -0
  2216. data/lib/condenser/processors/node_modules/is-reference/node_modules/@types/estree/package.json +51 -0
  2217. data/lib/condenser/processors/node_modules/is-reference/package.json +5 -5
  2218. data/lib/condenser/processors/node_modules/json5/CHANGELOG.md +14 -0
  2219. data/lib/condenser/processors/node_modules/json5/README.md +1 -1
  2220. data/lib/condenser/processors/node_modules/json5/dist/index.js +30 -8
  2221. data/lib/condenser/processors/node_modules/json5/dist/index.min.js +1 -1
  2222. data/lib/condenser/processors/node_modules/json5/dist/index.min.mjs +1 -1
  2223. data/lib/condenser/processors/node_modules/json5/dist/index.mjs +8 -1
  2224. data/lib/condenser/processors/node_modules/json5/lib/stringify.js +8 -1
  2225. data/lib/condenser/processors/node_modules/json5/package.json +18 -17
  2226. data/lib/condenser/processors/node_modules/magic-string/CHANGELOG.md +8 -0
  2227. data/lib/condenser/processors/node_modules/magic-string/dist/magic-string.cjs.js +27 -8
  2228. data/lib/condenser/processors/node_modules/magic-string/dist/magic-string.cjs.js.map +1 -1
  2229. data/lib/condenser/processors/node_modules/magic-string/dist/magic-string.es.js +26 -8
  2230. data/lib/condenser/processors/node_modules/magic-string/dist/magic-string.es.js.map +1 -1
  2231. data/lib/condenser/processors/node_modules/magic-string/dist/magic-string.umd.js +27 -8
  2232. data/lib/condenser/processors/node_modules/magic-string/dist/magic-string.umd.js.map +1 -1
  2233. data/lib/condenser/processors/node_modules/magic-string/index.d.ts +6 -1
  2234. data/lib/condenser/processors/node_modules/magic-string/package.json +5 -5
  2235. data/lib/condenser/processors/node_modules/node-releases/.idea/workspace.xml +58 -92
  2236. data/lib/condenser/processors/node_modules/node-releases/data/processed/envs.json +368 -135
  2237. data/lib/condenser/processors/node_modules/node-releases/data/raw/nodejs.json +19 -0
  2238. data/lib/condenser/processors/node_modules/node-releases/data/release-schedule/release-schedule.json +8 -8
  2239. data/lib/condenser/processors/node_modules/node-releases/node_modules/.bin/semver +1 -0
  2240. data/lib/condenser/processors/node_modules/node-releases/node_modules/semver/CHANGELOG.md +70 -0
  2241. data/lib/condenser/processors/node_modules/node-releases/node_modules/semver/LICENSE +15 -0
  2242. data/lib/condenser/processors/node_modules/node-releases/node_modules/semver/README.md +443 -0
  2243. data/lib/condenser/processors/node_modules/node-releases/node_modules/semver/bin/semver.js +174 -0
  2244. data/lib/condenser/processors/node_modules/node-releases/node_modules/semver/package.json +60 -0
  2245. data/lib/condenser/processors/node_modules/node-releases/node_modules/semver/range.bnf +16 -0
  2246. data/lib/condenser/processors/node_modules/{core-js-compat → node-releases}/node_modules/semver/semver.js +0 -0
  2247. data/lib/condenser/processors/node_modules/node-releases/package.json +11 -11
  2248. data/lib/condenser/processors/node_modules/regexpu-core/package.json +13 -15
  2249. data/lib/condenser/processors/node_modules/regexpu-core/rewrite-pattern.js +14 -14
  2250. data/lib/condenser/processors/node_modules/regjsgen/LICENSE +1 -1
  2251. data/lib/condenser/processors/node_modules/regjsgen/README.md +12 -5
  2252. data/lib/condenser/processors/node_modules/regjsgen/package.json +9 -9
  2253. data/lib/condenser/processors/node_modules/regjsgen/regjsgen.js +3 -3
  2254. data/lib/condenser/processors/node_modules/regjsparser/package.json +5 -5
  2255. data/lib/condenser/processors/node_modules/regjsparser/parser.js +20 -3
  2256. data/lib/condenser/processors/node_modules/resolve/.travis.yml +5 -305
  2257. data/lib/condenser/processors/node_modules/resolve/index.js +2 -3
  2258. data/lib/condenser/processors/node_modules/resolve/lib/async.js +52 -45
  2259. data/lib/condenser/processors/node_modules/resolve/lib/core.json +1 -0
  2260. data/lib/condenser/processors/node_modules/resolve/lib/is-core.js +5 -0
  2261. data/lib/condenser/processors/node_modules/resolve/lib/sync.js +10 -10
  2262. data/lib/condenser/processors/node_modules/resolve/package.json +13 -9
  2263. data/lib/condenser/processors/node_modules/resolve/readme.markdown +3 -2
  2264. data/lib/condenser/processors/node_modules/resolve/test/core.js +3 -0
  2265. data/lib/condenser/processors/node_modules/resolve/test/filter.js +1 -1
  2266. data/lib/condenser/processors/node_modules/resolve/test/filter_sync.js +12 -5
  2267. data/lib/condenser/processors/node_modules/resolve/test/resolver.js +2 -2
  2268. data/lib/condenser/processors/node_modules/resolve/test/resolver_sync.js +2 -2
  2269. data/lib/condenser/processors/node_modules/resolve/test/symlinks.js +90 -1
  2270. data/lib/condenser/processors/node_modules/rollup-plugin-commonjs/CHANGELOG.md +5 -0
  2271. data/lib/condenser/processors/node_modules/rollup-plugin-commonjs/README.md +6 -4
  2272. data/lib/condenser/processors/node_modules/rollup-plugin-commonjs/dist/rollup-plugin-commonjs.cjs.js +6 -2
  2273. data/lib/condenser/processors/node_modules/rollup-plugin-commonjs/dist/rollup-plugin-commonjs.cjs.js.map +1 -1
  2274. data/lib/condenser/processors/node_modules/rollup-plugin-commonjs/dist/rollup-plugin-commonjs.es.js +7 -3
  2275. data/lib/condenser/processors/node_modules/rollup-plugin-commonjs/dist/rollup-plugin-commonjs.es.js.map +1 -1
  2276. data/lib/condenser/processors/node_modules/rollup-plugin-commonjs/package.json +6 -6
  2277. data/lib/condenser/processors/node_modules/rollup-plugin-commonjs/src/index.js +8 -2
  2278. data/lib/condenser/processors/node_modules/rollup-pluginutils/CHANGELOG.md +4 -0
  2279. data/lib/condenser/processors/node_modules/rollup-pluginutils/dist/pluginutils.cjs.js +1 -1
  2280. data/lib/condenser/processors/node_modules/rollup-pluginutils/dist/pluginutils.es.js +1 -1
  2281. data/lib/condenser/processors/node_modules/rollup-pluginutils/package.json +7 -7
  2282. data/lib/condenser/processors/node_modules/rollup-pluginutils/src/attachScopes.ts +1 -1
  2283. data/lib/condenser/processors/node_modules/rollup/CHANGELOG.md +406 -0
  2284. data/lib/condenser/processors/node_modules/rollup/LICENSE.md +27 -29
  2285. data/lib/condenser/processors/node_modules/rollup/README.md +5 -5
  2286. data/lib/condenser/processors/node_modules/rollup/dist/bin/rollup +240 -209
  2287. data/lib/condenser/processors/node_modules/rollup/dist/rollup.browser.es.js +17 -3
  2288. data/lib/condenser/processors/node_modules/rollup/dist/rollup.browser.js +17 -3
  2289. data/lib/condenser/processors/node_modules/rollup/dist/rollup.d.ts +58 -28
  2290. data/lib/condenser/processors/node_modules/rollup/dist/rollup.es.js +6317 -9944
  2291. data/lib/condenser/processors/node_modules/rollup/dist/rollup.js +6811 -10485
  2292. data/lib/condenser/processors/node_modules/rollup/dist/shared/index.js +61 -12
  2293. data/lib/condenser/processors/node_modules/rollup/package.json +43 -40
  2294. data/lib/condenser/processors/node_modules/semver/package.json +1 -2
  2295. data/lib/condenser/processors/node_modules/sourcemap-codec/CHANGELOG.md +4 -0
  2296. data/lib/condenser/processors/node_modules/sourcemap-codec/dist/sourcemap-codec.es.js.map +1 -0
  2297. data/lib/condenser/processors/node_modules/sourcemap-codec/dist/sourcemap-codec.umd.js.map +1 -0
  2298. data/lib/condenser/processors/node_modules/sourcemap-codec/package.json +6 -5
  2299. data/lib/condenser/processors/node_processor.rb +3 -0
  2300. data/lib/condenser/processors/package-lock.json +472 -456
  2301. data/lib/condenser/templating_engine/erb.rb +4 -2
  2302. data/lib/condenser/transformers/ejs.rb +6 -4
  2303. data/lib/condenser/transformers/sass_transformer.rb +4 -2
  2304. data/lib/condenser/version.rb +1 -1
  2305. data/test/minifiers/uglify_minifier_test.rb +2 -2
  2306. data/test/preprocessor/babel_test.rb +29 -15
  2307. data/test/templates/ejs_test.rb +21 -0
  2308. data/test/test_helper.rb +1 -2
  2309. metadata +386 -142
  2310. data/lib/condenser/processors/node_modules/.bin/regexp-tree +0 -1
  2311. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/src/index.js +0 -32
  2312. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/test/fixtures/with-unicode-flag/options.json +0 -10
  2313. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/test/fixtures/with-unicode-flag/script-extensions/input.js +0 -1
  2314. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/test/fixtures/with-unicode-flag/script-extensions/output.js +0 -1
  2315. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/test/fixtures/with-unicode-flag/simple/input.js +0 -1
  2316. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/test/fixtures/with-unicode-flag/simple/output.js +0 -1
  2317. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/test/fixtures/with-unicode-flag/unicode-10/input.js +0 -1
  2318. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/test/fixtures/with-unicode-flag/unicode-10/output.js +0 -1
  2319. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/test/fixtures/with-unicode-flag/unicode-11/input.js +0 -1
  2320. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/test/fixtures/with-unicode-flag/unicode-11/output.js +0 -1
  2321. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/test/fixtures/with-unicode-flag/unicode-12/input.js +0 -1
  2322. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/test/fixtures/with-unicode-flag/unicode-12/output.js +0 -1
  2323. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/test/fixtures/without-unicode-flag/options.json +0 -10
  2324. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/test/fixtures/without-unicode-flag/script-extensions/input.js +0 -1
  2325. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/test/fixtures/without-unicode-flag/script-extensions/output.js +0 -1
  2326. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/test/fixtures/without-unicode-flag/simple/input.js +0 -1
  2327. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/test/fixtures/without-unicode-flag/simple/output.js +0 -1
  2328. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/test/fixtures/without-unicode-flag/unicode-10/input.js +0 -1
  2329. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/test/fixtures/without-unicode-flag/unicode-10/output.js +0 -1
  2330. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/test/fixtures/without-unicode-flag/unicode-11/input.js +0 -1
  2331. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/test/fixtures/without-unicode-flag/unicode-11/output.js +0 -1
  2332. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/test/fixtures/without-unicode-flag/unicode-12/input.js +0 -1
  2333. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/test/fixtures/without-unicode-flag/unicode-12/output.js +0 -1
  2334. data/lib/condenser/processors/node_modules/@babel/plugin-proposal-unicode-property-regex/test/index.js +0 -2
  2335. data/lib/condenser/processors/node_modules/@babel/plugin-transform-dotall-regex/src/index.js +0 -25
  2336. data/lib/condenser/processors/node_modules/@babel/plugin-transform-dotall-regex/test/fixtures/dotall-regex/options.json +0 -3
  2337. data/lib/condenser/processors/node_modules/@babel/plugin-transform-dotall-regex/test/fixtures/dotall-regex/simple/input.js +0 -2
  2338. data/lib/condenser/processors/node_modules/@babel/plugin-transform-dotall-regex/test/fixtures/dotall-regex/simple/output.js +0 -2
  2339. data/lib/condenser/processors/node_modules/@babel/plugin-transform-dotall-regex/test/fixtures/dotall-regex/with-unicode-flag/input.js +0 -2
  2340. data/lib/condenser/processors/node_modules/@babel/plugin-transform-dotall-regex/test/fixtures/dotall-regex/with-unicode-flag/output.js +0 -2
  2341. data/lib/condenser/processors/node_modules/@babel/plugin-transform-dotall-regex/test/index.js +0 -2
  2342. data/lib/condenser/processors/node_modules/@babel/preset-env/CHANGELOG.md +0 -668
  2343. data/lib/condenser/processors/node_modules/@babel/preset-env/yarn-error.log +0 -57
  2344. data/lib/condenser/processors/node_modules/core-js-pure/internals/function-to-string.js +0 -3
  2345. data/lib/condenser/processors/node_modules/core-js-pure/internals/wrapped-well-known-symbol.js +0 -1
  2346. data/lib/condenser/processors/node_modules/core-js-pure/scripts/postinstall.js +0 -24
  2347. data/lib/condenser/processors/node_modules/has-symbols/.npmignore +0 -37
  2348. data/lib/condenser/processors/node_modules/regexp-tree/LICENSE +0 -21
  2349. data/lib/condenser/processors/node_modules/regexp-tree/README.md +0 -2085
  2350. data/lib/condenser/processors/node_modules/regexp-tree/bin/regexp-tree +0 -5
  2351. data/lib/condenser/processors/node_modules/regexp-tree/dist/bin/regexp-tree.js +0 -16
  2352. data/lib/condenser/processors/node_modules/regexp-tree/dist/compat-transpiler/index.js +0 -50
  2353. data/lib/condenser/processors/node_modules/regexp-tree/dist/compat-transpiler/runtime/index.js +0 -123
  2354. data/lib/condenser/processors/node_modules/regexp-tree/dist/compat-transpiler/transforms/compat-dotall-s-transform.js +0 -69
  2355. data/lib/condenser/processors/node_modules/regexp-tree/dist/compat-transpiler/transforms/compat-named-capturing-groups-transform.js +0 -59
  2356. data/lib/condenser/processors/node_modules/regexp-tree/dist/compat-transpiler/transforms/compat-x-flag-transform.js +0 -23
  2357. data/lib/condenser/processors/node_modules/regexp-tree/dist/compat-transpiler/transforms/index.js +0 -17
  2358. data/lib/condenser/processors/node_modules/regexp-tree/dist/generator/index.js +0 -177
  2359. data/lib/condenser/processors/node_modules/regexp-tree/dist/interpreter/finite-automaton/dfa/dfa-minimizer.js +0 -412
  2360. data/lib/condenser/processors/node_modules/regexp-tree/dist/interpreter/finite-automaton/dfa/dfa.js +0 -380
  2361. data/lib/condenser/processors/node_modules/regexp-tree/dist/interpreter/finite-automaton/index.js +0 -59
  2362. data/lib/condenser/processors/node_modules/regexp-tree/dist/interpreter/finite-automaton/nfa/builders.js +0 -227
  2363. data/lib/condenser/processors/node_modules/regexp-tree/dist/interpreter/finite-automaton/nfa/nfa-from-regexp.js +0 -94
  2364. data/lib/condenser/processors/node_modules/regexp-tree/dist/interpreter/finite-automaton/nfa/nfa-state.js +0 -220
  2365. data/lib/condenser/processors/node_modules/regexp-tree/dist/interpreter/finite-automaton/nfa/nfa.js +0 -234
  2366. data/lib/condenser/processors/node_modules/regexp-tree/dist/interpreter/finite-automaton/special-symbols.js +0 -22
  2367. data/lib/condenser/processors/node_modules/regexp-tree/dist/interpreter/finite-automaton/state.js +0 -81
  2368. data/lib/condenser/processors/node_modules/regexp-tree/dist/interpreter/finite-automaton/table-printer.js +0 -27
  2369. data/lib/condenser/processors/node_modules/regexp-tree/dist/interpreter/finite-automaton/transforms/char-plus-to-star-transform.js +0 -35
  2370. data/lib/condenser/processors/node_modules/regexp-tree/dist/interpreter/finite-automaton/transforms/index.js +0 -10
  2371. data/lib/condenser/processors/node_modules/regexp-tree/dist/optimizer/index.js +0 -83
  2372. data/lib/condenser/processors/node_modules/regexp-tree/dist/optimizer/transforms/char-case-insensitive-lowercase-transform.js +0 -110
  2373. data/lib/condenser/processors/node_modules/regexp-tree/dist/optimizer/transforms/char-class-classranges-merge-transform.js +0 -339
  2374. data/lib/condenser/processors/node_modules/regexp-tree/dist/optimizer/transforms/char-class-classranges-to-chars-transform.js +0 -30
  2375. data/lib/condenser/processors/node_modules/regexp-tree/dist/optimizer/transforms/char-class-remove-duplicates-transform.js +0 -33
  2376. data/lib/condenser/processors/node_modules/regexp-tree/dist/optimizer/transforms/char-class-to-meta-transform.js +0 -211
  2377. data/lib/condenser/processors/node_modules/regexp-tree/dist/optimizer/transforms/char-class-to-single-char-transform.js +0 -71
  2378. data/lib/condenser/processors/node_modules/regexp-tree/dist/optimizer/transforms/char-code-to-simple-char-transform.js +0 -84
  2379. data/lib/condenser/processors/node_modules/regexp-tree/dist/optimizer/transforms/char-escape-unescape-transform.js +0 -143
  2380. data/lib/condenser/processors/node_modules/regexp-tree/dist/optimizer/transforms/char-surrogate-pair-to-single-unicode-transform.js +0 -27
  2381. data/lib/condenser/processors/node_modules/regexp-tree/dist/optimizer/transforms/combine-repeating-patterns-transform.js +0 -195
  2382. data/lib/condenser/processors/node_modules/regexp-tree/dist/optimizer/transforms/disjunction-remove-duplicates-transform.js +0 -44
  2383. data/lib/condenser/processors/node_modules/regexp-tree/dist/optimizer/transforms/group-single-chars-to-char-class.js +0 -92
  2384. data/lib/condenser/processors/node_modules/regexp-tree/dist/optimizer/transforms/index.js +0 -56
  2385. data/lib/condenser/processors/node_modules/regexp-tree/dist/optimizer/transforms/quantifier-range-to-symbol-transform.js +0 -74
  2386. data/lib/condenser/processors/node_modules/regexp-tree/dist/optimizer/transforms/quantifiers-merge-transform.js +0 -113
  2387. data/lib/condenser/processors/node_modules/regexp-tree/dist/optimizer/transforms/remove-empty-group-transform.js +0 -34
  2388. data/lib/condenser/processors/node_modules/regexp-tree/dist/optimizer/transforms/ungroup-transform.js +0 -55
  2389. data/lib/condenser/processors/node_modules/regexp-tree/dist/parser/generated/regexp-tree.js +0 -1405
  2390. data/lib/condenser/processors/node_modules/regexp-tree/dist/parser/index.js +0 -28
  2391. data/lib/condenser/processors/node_modules/regexp-tree/dist/parser/unicode/parser-unicode-properties.js +0 -379
  2392. data/lib/condenser/processors/node_modules/regexp-tree/dist/regexp-tree.js +0 -178
  2393. data/lib/condenser/processors/node_modules/regexp-tree/dist/transform/index.js +0 -138
  2394. data/lib/condenser/processors/node_modules/regexp-tree/dist/transform/utils.js +0 -88
  2395. data/lib/condenser/processors/node_modules/regexp-tree/dist/traverse/index.js +0 -313
  2396. data/lib/condenser/processors/node_modules/regexp-tree/dist/traverse/node-path.js +0 -426
  2397. data/lib/condenser/processors/node_modules/regexp-tree/dist/utils/clone.js +0 -29
  2398. data/lib/condenser/processors/node_modules/regexp-tree/index.d.ts +0 -294
  2399. data/lib/condenser/processors/node_modules/regexp-tree/index.js +0 -8
  2400. data/lib/condenser/processors/node_modules/regexp-tree/package.json +0 -70
  2401. data/lib/condenser/processors/node_modules/resolve/.editorconfig +0 -20
  2402. data/lib/condenser/processors/node_modules/trim-right/index.js +0 -10
  2403. data/lib/condenser/processors/node_modules/trim-right/license +0 -21
  2404. data/lib/condenser/processors/node_modules/trim-right/package.json +0 -69
  2405. data/lib/condenser/processors/node_modules/trim-right/readme.md +0 -30
@@ -1,5 +1,10 @@
1
1
  # rollup-plugin-commonjs changelog
2
2
 
3
+ ## 10.1.0
4
+ *2019-08-27*
5
+ * Normalize ids before looking up in named export map ([#406](https://github.com/rollup/rollup-plugin-commonjs/issues/406))
6
+ * Update README.md with note on symlinks ([#405](https://github.com/rollup/rollup-plugin-commonjs/issues/405))
7
+
3
8
  ## 10.0.2
4
9
  *2019-08-03*
5
10
  * Support preserveSymlinks: false ([#401](https://github.com/rollup/rollup-plugin-commonjs/issues/401))
@@ -54,7 +54,7 @@ export default {
54
54
 
55
55
  // explicitly specify unresolvable named exports
56
56
  // (see below for more details)
57
- namedExports: { './module.js': ['foo', 'bar' ] }, // Default: undefined
57
+ namedExports: { 'react': ['createElement', 'Component' ] }, // Default: undefined
58
58
 
59
59
  // sometimes you have to leave require statements
60
60
  // unconverted. Pass an array containing the IDs
@@ -66,9 +66,9 @@ export default {
66
66
  };
67
67
  ```
68
68
 
69
- ### Usage in monorepo
69
+ ### Usage with symlinks
70
70
 
71
- In case you are using a monorepo, you may want to use a regular expression for `include` as the string 'node_modules' will not match if your `node_modules` is not in your current working directory (i.e. '../node_modules'). Try this:
71
+ Symlinks are common in monorepos and are also created by the `npm link` command. Rollup with `rollup-plugin-node-resolve` resolves modules to their real paths by default. So `include` and `exclude` paths should handle real paths rather than symlinked paths (e.g. `../common/node_modules/**` instead of `node_modules/**`). You may also use a regular expression for `include` that works regardless of base path. Try this:
72
72
 
73
73
  ```
74
74
  commonjs({
@@ -76,6 +76,8 @@ commonjs({
76
76
  })
77
77
  ```
78
78
 
79
+ Whether symlinked module paths are [realpathed](http://man7.org/linux/man-pages/man3/realpath.3.html) or preserved depends on Rollup's `preserveSymlinks` setting, which is false by default, matching Node.js' default behavior. Setting `preserveSymlinks` to true in your Rollup config will cause `import` and `export` to match based on symlinked paths instead.
80
+
79
81
  ### Custom named exports
80
82
 
81
83
  This plugin will attempt to create named exports, where appropriate, so you can do this...
@@ -107,7 +109,7 @@ commonjs({
107
109
  // left-hand side can be an absolute path, a path
108
110
  // relative to the current directory, or the name
109
111
  // of a module in node_modules
110
- 'node_modules/my-lib/index.js': [ 'named' ]
112
+ 'my-lib': [ 'named' ]
111
113
  }
112
114
  })
113
115
  ```
@@ -732,7 +732,10 @@ function commonjs(options = {}) {
732
732
  });
733
733
  } catch (err) {
734
734
  resolvedId = path.resolve(id);
735
- }
735
+ } // Note: customNamedExport's keys must be normalized file paths.
736
+ // resolve and nodeResolveSync both return normalized file paths
737
+ // so no additional normalization is necessary.
738
+
736
739
 
737
740
  customNamedExports[resolvedId] = options.namedExports[id];
738
741
 
@@ -772,7 +775,8 @@ function commonjs(options = {}) {
772
775
  return null;
773
776
  }
774
777
 
775
- const transformed = transformCommonjs(this.parse, code, id, this.getModuleInfo(id).isEntry, ignoreGlobal, ignoreRequire, customNamedExports[id], sourceMap, allowDynamicRequire, ast);
778
+ const normalizedId = path.normalize(id);
779
+ const transformed = transformCommonjs(this.parse, code, id, this.getModuleInfo(id).isEntry, ignoreGlobal, ignoreRequire, customNamedExports[normalizedId], sourceMap, allowDynamicRequire, ast);
776
780
 
777
781
  if (!transformed) {
778
782
  esModulesWithoutDefaultExport.add(id);
@@ -1 +1 @@
1
- {"version":3,"file":"rollup-plugin-commonjs.cjs.js","sources":["../src/helpers.js","../src/is-cjs.js","../src/resolve-id.js","../src/ast-utils.js","../src/utils.js","../src/transform.js","../src/index.js"],"sourcesContent":["export const PROXY_SUFFIX = '?commonjs-proxy';\nexport const getProxyId = id => `\\0${id}${PROXY_SUFFIX}`;\nexport const getIdFromProxyId = proxyId => proxyId.slice(1, -PROXY_SUFFIX.length);\n\nexport const EXTERNAL_SUFFIX = '?commonjs-external';\nexport const getExternalProxyId = id => `\\0${id}${EXTERNAL_SUFFIX}`;\nexport const getIdFromExternalProxyId = proxyId => proxyId.slice(1, -EXTERNAL_SUFFIX.length);\n\nexport const HELPERS_ID = '\\0commonjsHelpers.js';\n\n// `x['default']` is used instead of `x.default` for backward compatibility with ES3 browsers.\n// Minifiers like uglify will usually transpile it back if compatibility with ES3 is not enabled.\nexport const HELPERS = `\nexport var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};\n\nexport function commonjsRequire () {\n\tthrow new Error('Dynamic requires are not currently supported by rollup-plugin-commonjs');\n}\n\nexport function unwrapExports (x) {\n\treturn x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x;\n}\n\nexport function createCommonjsModule(fn, module) {\n\treturn module = { exports: {} }, fn(module, module.exports), module.exports;\n}\n\nexport function getCjsExportFromNamespace (n) {\n\treturn n && n['default'] || n;\n}`;\n","const isCjsPromises = new Map();\n\nexport function getIsCjsPromise(id) {\n\tlet isCjsPromise = isCjsPromises.get(id);\n\tif (isCjsPromise) return isCjsPromise.promise;\n\n\tconst promise = new Promise(resolve => {\n\t\tisCjsPromise = {\n\t\t\tresolve,\n\t\t\tpromise: undefined\n\t\t};\n\t\tisCjsPromises.set(id, isCjsPromise);\n\t});\n\tisCjsPromise.promise = promise;\n\n\treturn promise;\n}\n\nexport function setIsCjsPromise(id, resolution) {\n\tconst isCjsPromise = isCjsPromises.get(id);\n\tif (isCjsPromise) {\n\t\tif (isCjsPromise.resolve) {\n\t\t\tisCjsPromise.resolve(resolution);\n\t\t\tisCjsPromise.resolve = undefined;\n\t\t}\n\t} else {\n\t\tisCjsPromises.set(id, { promise: Promise.resolve(resolution), resolve: undefined });\n\t}\n}\n","import { statSync } from 'fs';\nimport { dirname, resolve, sep } from 'path';\nimport {\n\tgetExternalProxyId,\n\tgetIdFromProxyId,\n\tgetProxyId,\n\tHELPERS_ID,\n\tPROXY_SUFFIX\n} from './helpers';\n\nfunction getCandidatesForExtension(resolved, extension) {\n\treturn [resolved + extension, resolved + `${sep}index${extension}`];\n}\n\nfunction getCandidates(resolved, extensions) {\n\treturn extensions.reduce(\n\t\t(paths, extension) => paths.concat(getCandidatesForExtension(resolved, extension)),\n\t\t[resolved]\n\t);\n}\n\nexport function getResolveId(extensions) {\n\tfunction resolveExtensions(importee, importer) {\n\t\tif (importee[0] !== '.' || !importer) return; // not our problem\n\n\t\tconst resolved = resolve(dirname(importer), importee);\n\t\tconst candidates = getCandidates(resolved, extensions);\n\n\t\tfor (let i = 0; i < candidates.length; i += 1) {\n\t\t\ttry {\n\t\t\t\tconst stats = statSync(candidates[i]);\n\t\t\t\tif (stats.isFile()) return { id: candidates[i] };\n\t\t\t} catch (err) {\n\t\t\t\t/* noop */\n\t\t\t}\n\t\t}\n\t}\n\n\tfunction resolveId(importee, importer) {\n\t\tconst isProxyModule = importee.endsWith(PROXY_SUFFIX);\n\t\tif (isProxyModule) {\n\t\t\timportee = getIdFromProxyId(importee);\n\t\t} else if (importee.startsWith('\\0')) {\n\t\t\tif (importee === HELPERS_ID) {\n\t\t\t\treturn importee;\n\t\t\t}\n\t\t\treturn null;\n\t\t}\n\n\t\tif (importer && importer.endsWith(PROXY_SUFFIX)) {\n\t\t\timporter = getIdFromProxyId(importer);\n\t\t}\n\n\t\treturn this.resolve(importee, importer, { skipSelf: true }).then(resolved => {\n\t\t\tif (!resolved) {\n\t\t\t\tresolved = resolveExtensions(importee, importer);\n\t\t\t}\n\t\t\tif (isProxyModule) {\n\t\t\t\tif (!resolved) {\n\t\t\t\t\treturn { id: getExternalProxyId(importee), external: false };\n\t\t\t\t}\n\t\t\t\tresolved.id = (resolved.external ? getExternalProxyId : getProxyId)(resolved.id);\n\t\t\t\tresolved.external = false;\n\t\t\t\treturn resolved;\n\t\t\t}\n\t\t\treturn resolved;\n\t\t});\n\t}\n\n\treturn resolveId;\n}\n","export { default as isReference } from 'is-reference';\n\nexport function flatten(node) {\n\tconst parts = [];\n\n\twhile (node.type === 'MemberExpression') {\n\t\tif (node.computed) return null;\n\n\t\tparts.unshift(node.property.name);\n\t\tnode = node.object;\n\t}\n\n\tif (node.type !== 'Identifier') return null;\n\n\tconst name = node.name;\n\tparts.unshift(name);\n\n\treturn { name, keypath: parts.join('.') };\n}\n\nexport function isTruthy(node) {\n\tif (node.type === 'Literal') return !!node.value;\n\tif (node.type === 'ParenthesizedExpression') return isTruthy(node.expression);\n\tif (node.operator in operators) return operators[node.operator](node);\n}\n\nexport function isFalsy(node) {\n\treturn not(isTruthy(node));\n}\n\nfunction not(value) {\n\treturn value === undefined ? value : !value;\n}\n\nfunction equals(a, b, strict) {\n\tif (a.type !== b.type) return undefined;\n\tif (a.type === 'Literal') return strict ? a.value === b.value : a.value == b.value;\n}\n\nconst operators = {\n\t'==': x => {\n\t\treturn equals(x.left, x.right, false);\n\t},\n\n\t'!=': x => not(operators['=='](x)),\n\n\t'===': x => {\n\t\treturn equals(x.left, x.right, true);\n\t},\n\n\t'!==': x => not(operators['==='](x)),\n\n\t'!': x => isFalsy(x.argument),\n\n\t'&&': x => isTruthy(x.left) && isTruthy(x.right),\n\n\t'||': x => isTruthy(x.left) || isTruthy(x.right)\n};\n","import { basename, dirname, extname, sep } from 'path';\nimport { makeLegalIdentifier } from 'rollup-pluginutils';\n\nexport function getName(id) {\n\tconst name = makeLegalIdentifier(basename(id, extname(id)));\n\tif (name !== 'index') {\n\t\treturn name;\n\t} else {\n\t\tconst segments = dirname(id).split(sep);\n\t\treturn makeLegalIdentifier(segments[segments.length - 1]);\n\t}\n}\n\n// Return the first non-falsy result from an array of\n// maybe-sync, maybe-promise-returning functions\nexport function first(candidates) {\n\treturn function(...args) {\n\t\treturn candidates.reduce((promise, candidate) => {\n\t\t\treturn promise.then(result =>\n\t\t\t\tresult != null ? result : Promise.resolve(candidate.call(this, ...args))\n\t\t\t);\n\t\t}, Promise.resolve());\n\t};\n}\n","import { walk } from 'estree-walker';\nimport MagicString from 'magic-string';\nimport { attachScopes, extractAssignedNames, makeLegalIdentifier } from 'rollup-pluginutils';\nimport { flatten, isFalsy, isReference, isTruthy } from './ast-utils.js';\nimport { getProxyId, HELPERS_ID } from './helpers';\nimport { getName } from './utils.js';\n\nconst reserved = 'process location abstract arguments boolean break byte case catch char class const continue debugger default delete do double else enum eval export extends false final finally float for from function goto if implements import in instanceof int interface let long native new null package private protected public return short static super switch synchronized this throw throws transient true try typeof var void volatile while with yield'.split(\n\t' '\n);\nconst blacklist = { __esModule: true };\nreserved.forEach(word => (blacklist[word] = true));\n\nconst exportsPattern = /^(?:module\\.)?exports(?:\\.([a-zA-Z_$][a-zA-Z_$0-9]*))?$/;\n\nconst firstpassGlobal = /\\b(?:require|module|exports|global)\\b/;\nconst firstpassNoGlobal = /\\b(?:require|module|exports)\\b/;\nconst importExportDeclaration = /^(?:Import|Export(?:Named|Default))Declaration/;\nconst functionType = /^(?:FunctionDeclaration|FunctionExpression|ArrowFunctionExpression)$/;\n\nfunction deconflict(scope, globals, identifier) {\n\tlet i = 1;\n\tlet deconflicted = identifier;\n\n\twhile (scope.contains(deconflicted) || globals.has(deconflicted) || deconflicted in blacklist)\n\t\tdeconflicted = `${identifier}_${i++}`;\n\tscope.declarations[deconflicted] = true;\n\n\treturn deconflicted;\n}\n\nfunction tryParse(parse, code, id) {\n\ttry {\n\t\treturn parse(code, { allowReturnOutsideFunction: true });\n\t} catch (err) {\n\t\terr.message += ` in ${id}`;\n\t\tthrow err;\n\t}\n}\n\nexport function hasCjsKeywords(code, ignoreGlobal) {\n\tconst firstpass = ignoreGlobal ? firstpassNoGlobal : firstpassGlobal;\n\treturn firstpass.test(code);\n}\n\nexport function checkEsModule(parse, code, id) {\n\tconst ast = tryParse(parse, code, id);\n\n\tlet isEsModule = false;\n\tfor (const node of ast.body) {\n\t\tif (node.type === 'ExportDefaultDeclaration')\n\t\t\treturn { isEsModule: true, hasDefaultExport: true, ast };\n\t\tif (node.type === 'ExportNamedDeclaration') {\n\t\t\tisEsModule = true;\n\t\t\tfor (const specifier of node.specifiers) {\n\t\t\t\tif (specifier.exported.name === 'default') {\n\t\t\t\t\treturn { isEsModule: true, hasDefaultExport: true, ast };\n\t\t\t\t}\n\t\t\t}\n\t\t} else if (importExportDeclaration.test(node.type)) isEsModule = true;\n\t}\n\n\treturn { isEsModule, hasDefaultExport: false, ast };\n}\n\nexport function transformCommonjs(\n\tparse,\n\tcode,\n\tid,\n\tisEntry,\n\tignoreGlobal,\n\tignoreRequire,\n\tcustomNamedExports,\n\tsourceMap,\n\tallowDynamicRequire,\n\tastCache\n) {\n\tconst ast = astCache || tryParse(parse, code, id);\n\n\tconst magicString = new MagicString(code);\n\n\tconst required = {};\n\t// Because objects have no guaranteed ordering, yet we need it,\n\t// we need to keep track of the order in a array\n\tconst sources = [];\n\n\tlet uid = 0;\n\n\tlet scope = attachScopes(ast, 'scope');\n\tconst uses = { module: false, exports: false, global: false, require: false };\n\n\tlet lexicalDepth = 0;\n\tlet programDepth = 0;\n\n\tconst globals = new Set();\n\n\tconst HELPERS_NAME = deconflict(scope, globals, 'commonjsHelpers'); // TODO technically wrong since globals isn't populated yet, but ¯\\_(ツ)_/¯\n\n\tconst namedExports = {};\n\n\t// TODO handle transpiled modules\n\tlet shouldWrap = /__esModule/.test(code);\n\n\tfunction isRequireStatement(node) {\n\t\tif (!node) return;\n\t\tif (node.type !== 'CallExpression') return;\n\t\tif (node.callee.name !== 'require' || scope.contains('require')) return;\n\t\tif (node.arguments.length === 0) return; // Weird case of require() without arguments\n\t\treturn true;\n\t}\n\n\tfunction hasDynamicArguments(node) {\n\t\treturn (\n\t\t\tnode.arguments.length > 1 ||\n\t\t\t(node.arguments[0].type !== 'Literal' &&\n\t\t\t\t(node.arguments[0].type !== 'TemplateLiteral' || node.arguments[0].expressions.length > 0))\n\t\t);\n\t}\n\n\tfunction isStaticRequireStatement(node) {\n\t\tif (!isRequireStatement(node)) return;\n\t\tif (hasDynamicArguments(node)) return;\n\t\tif (ignoreRequire(node.arguments[0].value)) return;\n\t\treturn true;\n\t}\n\n\tfunction getRequireStringArg(node) {\n\t\treturn node.arguments[0].type === 'Literal'\n\t\t\t? node.arguments[0].value\n\t\t\t: node.arguments[0].quasis[0].value.cooked;\n\t}\n\n\tfunction getRequired(node, name) {\n\t\tconst sourceId = getRequireStringArg(node);\n\t\tconst existing = required[sourceId];\n\t\tif (existing === undefined) {\n\t\t\tif (!name) {\n\t\t\t\tdo name = `require$$${uid++}`;\n\t\t\t\twhile (scope.contains(name));\n\t\t\t}\n\n\t\t\tsources.push(sourceId);\n\t\t\trequired[sourceId] = { source: sourceId, name, importsDefault: false };\n\t\t}\n\n\t\treturn required[sourceId];\n\t}\n\n\t// do a first pass, see which names are assigned to. This is necessary to prevent\n\t// illegally replacing `var foo = require('foo')` with `import foo from 'foo'`,\n\t// where `foo` is later reassigned. (This happens in the wild. CommonJS, sigh)\n\tconst assignedTo = new Set();\n\twalk(ast, {\n\t\tenter(node) {\n\t\t\tif (node.type !== 'AssignmentExpression') return;\n\t\t\tif (node.left.type === 'MemberExpression') return;\n\n\t\t\textractAssignedNames(node.left).forEach(name => {\n\t\t\t\tassignedTo.add(name);\n\t\t\t});\n\t\t}\n\t});\n\n\twalk(ast, {\n\t\tenter(node, parent) {\n\t\t\tif (sourceMap) {\n\t\t\t\tmagicString.addSourcemapLocation(node.start);\n\t\t\t\tmagicString.addSourcemapLocation(node.end);\n\t\t\t}\n\n\t\t\t// skip dead branches\n\t\t\tif (parent && (parent.type === 'IfStatement' || parent.type === 'ConditionalExpression')) {\n\t\t\t\tif (node === parent.consequent && isFalsy(parent.test)) return this.skip();\n\t\t\t\tif (node === parent.alternate && isTruthy(parent.test)) return this.skip();\n\t\t\t}\n\n\t\t\tif (node._skip) return this.skip();\n\n\t\t\tprogramDepth += 1;\n\n\t\t\tif (node.scope) scope = node.scope;\n\t\t\tif (functionType.test(node.type)) lexicalDepth += 1;\n\n\t\t\t// if toplevel return, we need to wrap it\n\t\t\tif (node.type === 'ReturnStatement' && lexicalDepth === 0) {\n\t\t\t\tshouldWrap = true;\n\t\t\t}\n\n\t\t\t// rewrite `this` as `commonjsHelpers.commonjsGlobal`\n\t\t\tif (node.type === 'ThisExpression' && lexicalDepth === 0) {\n\t\t\t\tuses.global = true;\n\t\t\t\tif (!ignoreGlobal)\n\t\t\t\t\tmagicString.overwrite(node.start, node.end, `${HELPERS_NAME}.commonjsGlobal`, {\n\t\t\t\t\t\tstoreName: true\n\t\t\t\t\t});\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// rewrite `typeof module`, `typeof module.exports` and `typeof exports` (https://github.com/rollup/rollup-plugin-commonjs/issues/151)\n\t\t\tif (node.type === 'UnaryExpression' && node.operator === 'typeof') {\n\t\t\t\tconst flattened = flatten(node.argument);\n\t\t\t\tif (!flattened) return;\n\n\t\t\t\tif (scope.contains(flattened.name)) return;\n\n\t\t\t\tif (\n\t\t\t\t\tflattened.keypath === 'module.exports' ||\n\t\t\t\t\tflattened.keypath === 'module' ||\n\t\t\t\t\tflattened.keypath === 'exports'\n\t\t\t\t) {\n\t\t\t\t\tmagicString.overwrite(node.start, node.end, `'object'`, { storeName: false });\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// rewrite `require` (if not already handled) `global` and `define`, and handle free references to\n\t\t\t// `module` and `exports` as these mean we need to wrap the module in commonjsHelpers.createCommonjsModule\n\t\t\tif (node.type === 'Identifier') {\n\t\t\t\tif (isReference(node, parent) && !scope.contains(node.name)) {\n\t\t\t\t\tif (node.name in uses) {\n\t\t\t\t\t\tif (node.name === 'require') {\n\t\t\t\t\t\t\tif (allowDynamicRequire) return;\n\t\t\t\t\t\t\tmagicString.overwrite(node.start, node.end, `${HELPERS_NAME}.commonjsRequire`, {\n\t\t\t\t\t\t\t\tstoreName: true\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tuses[node.name] = true;\n\t\t\t\t\t\tif (node.name === 'global' && !ignoreGlobal) {\n\t\t\t\t\t\t\tmagicString.overwrite(node.start, node.end, `${HELPERS_NAME}.commonjsGlobal`, {\n\t\t\t\t\t\t\t\tstoreName: true\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// if module or exports are used outside the context of an assignment\n\t\t\t\t\t\t// expression, we need to wrap the module\n\t\t\t\t\t\tif (node.name === 'module' || node.name === 'exports') {\n\t\t\t\t\t\t\tshouldWrap = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tif (node.name === 'define') {\n\t\t\t\t\t\tmagicString.overwrite(node.start, node.end, 'undefined', { storeName: true });\n\t\t\t\t\t}\n\n\t\t\t\t\tglobals.add(node.name);\n\t\t\t\t}\n\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Is this an assignment to exports or module.exports?\n\t\t\tif (node.type === 'AssignmentExpression') {\n\t\t\t\tif (node.left.type !== 'MemberExpression') return;\n\n\t\t\t\tconst flattened = flatten(node.left);\n\t\t\t\tif (!flattened) return;\n\n\t\t\t\tif (scope.contains(flattened.name)) return;\n\n\t\t\t\tconst match = exportsPattern.exec(flattened.keypath);\n\t\t\t\tif (!match || flattened.keypath === 'exports') return;\n\n\t\t\t\tuses[flattened.name] = true;\n\n\t\t\t\t// we're dealing with `module.exports = ...` or `[module.]exports.foo = ...` –\n\t\t\t\t// if this isn't top-level, we'll need to wrap the module\n\t\t\t\tif (programDepth > 3) shouldWrap = true;\n\n\t\t\t\tnode.left._skip = true;\n\n\t\t\t\tif (flattened.keypath === 'module.exports' && node.right.type === 'ObjectExpression') {\n\t\t\t\t\treturn node.right.properties.forEach(prop => {\n\t\t\t\t\t\tif (prop.computed || prop.key.type !== 'Identifier') return;\n\t\t\t\t\t\tconst name = prop.key.name;\n\t\t\t\t\t\tif (name === makeLegalIdentifier(name)) namedExports[name] = true;\n\t\t\t\t\t});\n\t\t\t\t}\n\n\t\t\t\tif (match[1]) namedExports[match[1]] = true;\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// if this is `var x = require('x')`, we can do `import x from 'x'`\n\t\t\tif (\n\t\t\t\tnode.type === 'VariableDeclarator' &&\n\t\t\t\tnode.id.type === 'Identifier' &&\n\t\t\t\tisStaticRequireStatement(node.init)\n\t\t\t) {\n\t\t\t\t// for now, only do this for top-level requires. maybe fix this in future\n\t\t\t\tif (scope.parent) return;\n\n\t\t\t\t// edge case — CJS allows you to assign to imports. ES doesn't\n\t\t\t\tif (assignedTo.has(node.id.name)) return;\n\n\t\t\t\tconst required = getRequired(node.init, node.id.name);\n\t\t\t\trequired.importsDefault = true;\n\n\t\t\t\tif (required.name === node.id.name) {\n\t\t\t\t\tnode._shouldRemove = true;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif (!isStaticRequireStatement(node)) return;\n\n\t\t\tconst required = getRequired(node);\n\n\t\t\tif (parent.type === 'ExpressionStatement') {\n\t\t\t\t// is a bare import, e.g. `require('foo');`\n\t\t\t\tmagicString.remove(parent.start, parent.end);\n\t\t\t} else {\n\t\t\t\trequired.importsDefault = true;\n\t\t\t\tmagicString.overwrite(node.start, node.end, required.name);\n\t\t\t}\n\n\t\t\tnode.callee._skip = true;\n\t\t},\n\n\t\tleave(node) {\n\t\t\tprogramDepth -= 1;\n\t\t\tif (node.scope) scope = scope.parent;\n\t\t\tif (functionType.test(node.type)) lexicalDepth -= 1;\n\n\t\t\tif (node.type === 'VariableDeclaration') {\n\t\t\t\tlet keepDeclaration = false;\n\t\t\t\tlet c = node.declarations[0].start;\n\n\t\t\t\tfor (let i = 0; i < node.declarations.length; i += 1) {\n\t\t\t\t\tconst declarator = node.declarations[i];\n\n\t\t\t\t\tif (declarator._shouldRemove) {\n\t\t\t\t\t\tmagicString.remove(c, declarator.end);\n\t\t\t\t\t} else {\n\t\t\t\t\t\tif (!keepDeclaration) {\n\t\t\t\t\t\t\tmagicString.remove(c, declarator.start);\n\t\t\t\t\t\t\tkeepDeclaration = true;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tc = declarator.end;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tif (!keepDeclaration) {\n\t\t\t\t\tmagicString.remove(node.start, node.end);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t});\n\n\tif (\n\t\t!sources.length &&\n\t\t!uses.module &&\n\t\t!uses.exports &&\n\t\t!uses.require &&\n\t\t(ignoreGlobal || !uses.global)\n\t) {\n\t\tif (Object.keys(namedExports).length) {\n\t\t\tthrow new Error(\n\t\t\t\t`Custom named exports were specified for ${id} but it does not appear to be a CommonJS module`\n\t\t\t);\n\t\t}\n\t\treturn null; // not a CommonJS module\n\t}\n\n\tconst includeHelpers = shouldWrap || uses.global || uses.require;\n\tconst importBlock =\n\t\t(includeHelpers ? [`import * as ${HELPERS_NAME} from '${HELPERS_ID}';`] : [])\n\t\t\t.concat(\n\t\t\t\tsources.map(source => {\n\t\t\t\t\t// import the actual module before the proxy, so that we know\n\t\t\t\t\t// what kind of proxy to build\n\t\t\t\t\treturn `import '${source}';`;\n\t\t\t\t}),\n\t\t\t\tsources.map(source => {\n\t\t\t\t\tconst { name, importsDefault } = required[source];\n\t\t\t\t\treturn `import ${importsDefault ? `${name} from ` : ``}'${getProxyId(source)}';`;\n\t\t\t\t})\n\t\t\t)\n\t\t\t.join('\\n') + '\\n\\n';\n\n\tconst namedExportDeclarations = [];\n\tlet wrapperStart = '';\n\tlet wrapperEnd = '';\n\n\tconst moduleName = deconflict(scope, globals, getName(id));\n\tif (!isEntry) {\n\t\tconst exportModuleExports = {\n\t\t\tstr: `export { ${moduleName} as __moduleExports };`,\n\t\t\tname: '__moduleExports'\n\t\t};\n\n\t\tnamedExportDeclarations.push(exportModuleExports);\n\t}\n\n\tconst name = getName(id);\n\n\tfunction addExport(x) {\n\t\tconst deconflicted = deconflict(scope, globals, name);\n\n\t\tconst declaration =\n\t\t\tdeconflicted === name\n\t\t\t\t? `export var ${x} = ${moduleName}.${x};`\n\t\t\t\t: `var ${deconflicted} = ${moduleName}.${x};\\nexport { ${deconflicted} as ${x} };`;\n\n\t\tnamedExportDeclarations.push({\n\t\t\tstr: declaration,\n\t\t\tname: x\n\t\t});\n\t}\n\n\tif (customNamedExports) customNamedExports.forEach(addExport);\n\n\tconst defaultExportPropertyAssignments = [];\n\tlet hasDefaultExport = false;\n\n\tif (shouldWrap) {\n\t\tconst args = `module${uses.exports ? ', exports' : ''}`;\n\n\t\twrapperStart = `var ${moduleName} = ${HELPERS_NAME}.createCommonjsModule(function (${args}) {\\n`;\n\t\twrapperEnd = `\\n});`;\n\t} else {\n\t\tconst names = [];\n\n\t\tast.body.forEach(node => {\n\t\t\tif (node.type === 'ExpressionStatement' && node.expression.type === 'AssignmentExpression') {\n\t\t\t\tconst left = node.expression.left;\n\t\t\t\tconst flattened = flatten(left);\n\n\t\t\t\tif (!flattened) return;\n\n\t\t\t\tconst match = exportsPattern.exec(flattened.keypath);\n\t\t\t\tif (!match) return;\n\n\t\t\t\tif (flattened.keypath === 'module.exports') {\n\t\t\t\t\thasDefaultExport = true;\n\t\t\t\t\tmagicString.overwrite(left.start, left.end, `var ${moduleName}`);\n\t\t\t\t} else {\n\t\t\t\t\tconst name = match[1];\n\t\t\t\t\tconst deconflicted = deconflict(scope, globals, name);\n\n\t\t\t\t\tnames.push({ name, deconflicted });\n\n\t\t\t\t\tmagicString.overwrite(node.start, left.end, `var ${deconflicted}`);\n\n\t\t\t\t\tconst declaration =\n\t\t\t\t\t\tname === deconflicted\n\t\t\t\t\t\t\t? `export { ${name} };`\n\t\t\t\t\t\t\t: `export { ${deconflicted} as ${name} };`;\n\n\t\t\t\t\tif (name !== 'default') {\n\t\t\t\t\t\tnamedExportDeclarations.push({\n\t\t\t\t\t\t\tstr: declaration,\n\t\t\t\t\t\t\tname\n\t\t\t\t\t\t});\n\t\t\t\t\t\tdelete namedExports[name];\n\t\t\t\t\t}\n\n\t\t\t\t\tdefaultExportPropertyAssignments.push(`${moduleName}.${name} = ${deconflicted};`);\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\n\t\tif (!hasDefaultExport) {\n\t\t\twrapperEnd = `\\n\\nvar ${moduleName} = {\\n${names\n\t\t\t\t.map(({ name, deconflicted }) => `\\t${name}: ${deconflicted}`)\n\t\t\t\t.join(',\\n')}\\n};`;\n\t\t}\n\t}\n\tObject.keys(namedExports)\n\t\t.filter(key => !blacklist[key])\n\t\t.forEach(addExport);\n\n\tconst defaultExport = /__esModule/.test(code)\n\t\t? `export default ${HELPERS_NAME}.unwrapExports(${moduleName});`\n\t\t: `export default ${moduleName};`;\n\n\tconst named = namedExportDeclarations\n\t\t.filter(x => x.name !== 'default' || !hasDefaultExport)\n\t\t.map(x => x.str);\n\n\tconst exportBlock =\n\t\t'\\n\\n' +\n\t\t[defaultExport]\n\t\t\t.concat(named)\n\t\t\t.concat(hasDefaultExport ? defaultExportPropertyAssignments : [])\n\t\t\t.join('\\n');\n\n\tmagicString\n\t\t.trim()\n\t\t.prepend(importBlock + wrapperStart)\n\t\t.trim()\n\t\t.append(wrapperEnd + exportBlock);\n\n\tcode = magicString.toString();\n\tconst map = sourceMap ? magicString.generateMap() : null;\n\n\treturn { code, map };\n}\n","import { realpathSync, existsSync } from 'fs';\nimport { extname, resolve } from 'path';\nimport { sync as nodeResolveSync, isCore } from 'resolve';\nimport { createFilter } from 'rollup-pluginutils';\nimport { peerDependencies } from '../package.json';\nimport {\n\tEXTERNAL_SUFFIX,\n\tgetIdFromExternalProxyId,\n\tgetIdFromProxyId,\n\tHELPERS,\n\tHELPERS_ID,\n\tPROXY_SUFFIX\n} from './helpers';\nimport { getIsCjsPromise, setIsCjsPromise } from './is-cjs';\nimport { getResolveId } from './resolve-id';\nimport { checkEsModule, hasCjsKeywords, transformCommonjs } from './transform.js';\nimport { getName } from './utils.js';\n\nexport default function commonjs(options = {}) {\n\tconst extensions = options.extensions || ['.js'];\n\tconst filter = createFilter(options.include, options.exclude);\n\tconst ignoreGlobal = options.ignoreGlobal;\n\n\tconst customNamedExports = {};\n\tif (options.namedExports) {\n\t\tObject.keys(options.namedExports).forEach(id => {\n\t\t\tlet resolveId = id;\n\t\t\tlet resolvedId;\n\n\t\t\tif (isCore(id)) {\n\t\t\t\t// resolve will not find npm modules with the same name as\n\t\t\t\t// core modules without a trailing slash. Since core modules\n\t\t\t\t// must be external, we can assume any core modules defined\n\t\t\t\t// here are npm modules by that name.\n\t\t\t\tresolveId += '/';\n\t\t\t}\n\n\t\t\ttry {\n\t\t\t\tresolvedId = nodeResolveSync(resolveId, { basedir: process.cwd() });\n\t\t\t} catch (err) {\n\t\t\t\tresolvedId = resolve(id);\n\t\t\t}\n\t\t\tcustomNamedExports[resolvedId] = options.namedExports[id];\n\n\t\t\tif (existsSync(resolvedId)) {\n\t\t\t\tconst realpath = realpathSync(resolvedId);\n\t\t\t\tif (realpath !== resolvedId) {\n\t\t\t\t\tcustomNamedExports[realpath] = options.namedExports[id];\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t}\n\n\tconst esModulesWithoutDefaultExport = new Set();\n\tconst esModulesWithDefaultExport = new Set();\n\tconst allowDynamicRequire = !!options.ignore; // TODO maybe this should be configurable?\n\n\tconst ignoreRequire =\n\t\ttypeof options.ignore === 'function'\n\t\t\t? options.ignore\n\t\t\t: Array.isArray(options.ignore)\n\t\t\t\t? id => options.ignore.includes(id)\n\t\t\t\t: () => false;\n\n\tconst resolveId = getResolveId(extensions);\n\n\tconst sourceMap = options.sourceMap !== false;\n\n\tfunction transformAndCheckExports(code, id) {\n\t\t{\n\t\t\tconst { isEsModule, hasDefaultExport, ast } = checkEsModule(this.parse, code, id);\n\t\t\tif (isEsModule) {\n\t\t\t\t(hasDefaultExport ? esModulesWithDefaultExport : esModulesWithoutDefaultExport).add(id);\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\t// it is not an ES module but it does not have CJS-specific elements.\n\t\t\tif (!hasCjsKeywords(code, ignoreGlobal)) {\n\t\t\t\tesModulesWithoutDefaultExport.add(id);\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\tconst transformed = transformCommonjs(\n\t\t\t\tthis.parse,\n\t\t\t\tcode,\n\t\t\t\tid,\n\t\t\t\tthis.getModuleInfo(id).isEntry,\n\t\t\t\tignoreGlobal,\n\t\t\t\tignoreRequire,\n\t\t\t\tcustomNamedExports[id],\n\t\t\t\tsourceMap,\n\t\t\t\tallowDynamicRequire,\n\t\t\t\tast\n\t\t\t);\n\t\t\tif (!transformed) {\n\t\t\t\tesModulesWithoutDefaultExport.add(id);\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\treturn transformed;\n\t\t}\n\t}\n\n\treturn {\n\t\tname: 'commonjs',\n\n\t\tbuildStart() {\n\t\t\tconst [major, minor] = this.meta.rollupVersion.split('.').map(Number);\n\t\t\tconst minVersion = peerDependencies.rollup.slice(2);\n\t\t\tconst [minMajor, minMinor] = minVersion.split('.').map(Number);\n\t\t\tif (major < minMajor || (major === minMajor && minor < minMinor)) {\n\t\t\t\tthis.error(\n\t\t\t\t\t`Insufficient Rollup version: \"rollup-plugin-commonjs\" requires at least rollup@${minVersion} but found rollup@${this.meta.rollupVersion}.`\n\t\t\t\t);\n\t\t\t}\n\t\t},\n\n\t\tresolveId,\n\n\t\tload(id) {\n\t\t\tif (id === HELPERS_ID) return HELPERS;\n\n\t\t\t// generate proxy modules\n\t\t\tif (id.endsWith(EXTERNAL_SUFFIX)) {\n\t\t\t\tconst actualId = getIdFromExternalProxyId(id);\n\t\t\t\tconst name = getName(actualId);\n\n\t\t\t\treturn `import ${name} from ${JSON.stringify(actualId)}; export default ${name};`;\n\t\t\t}\n\n\t\t\tif (id.endsWith(PROXY_SUFFIX)) {\n\t\t\t\tconst actualId = getIdFromProxyId(id);\n\t\t\t\tconst name = getName(actualId);\n\n\t\t\t\treturn getIsCjsPromise(actualId).then(isCjs => {\n\t\t\t\t\tif (isCjs)\n\t\t\t\t\t\treturn `import { __moduleExports } from ${JSON.stringify(\n\t\t\t\t\t\t\tactualId\n\t\t\t\t\t\t)}; export default __moduleExports;`;\n\t\t\t\t\telse if (esModulesWithoutDefaultExport.has(actualId))\n\t\t\t\t\t\treturn `import * as ${name} from ${JSON.stringify(actualId)}; export default ${name};`;\n\t\t\t\t\telse if (esModulesWithDefaultExport.has(actualId)) {\n\t\t\t\t\t\treturn `export {default} from ${JSON.stringify(actualId)};`;\n\t\t\t\t\t} else\n\t\t\t\t\t\treturn `import * as ${name} from ${JSON.stringify(\n\t\t\t\t\t\t\tactualId\n\t\t\t\t\t\t)}; import {getCjsExportFromNamespace} from \"${HELPERS_ID}\"; export default getCjsExportFromNamespace(${name})`;\n\t\t\t\t});\n\t\t\t}\n\t\t},\n\n\t\ttransform(code, id) {\n\t\t\tif (!filter(id) || extensions.indexOf(extname(id)) === -1) {\n\t\t\t\tsetIsCjsPromise(id, null);\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\tlet transformed;\n\t\t\ttry {\n\t\t\t\ttransformed = transformAndCheckExports.call(this, code, id);\n\t\t\t} catch (err) {\n\t\t\t\ttransformed = null;\n\t\t\t\tthis.error(err, err.loc);\n\t\t\t}\n\n\t\t\tsetIsCjsPromise(id, Boolean(transformed));\n\t\t\treturn transformed;\n\t\t}\n\t};\n}\n"],"names":["PROXY_SUFFIX","getProxyId","id","getIdFromProxyId","proxyId","slice","length","EXTERNAL_SUFFIX","getExternalProxyId","getIdFromExternalProxyId","HELPERS_ID","HELPERS","isCjsPromises","Map","getIsCjsPromise","isCjsPromise","get","promise","Promise","resolve","undefined","set","setIsCjsPromise","resolution","getCandidatesForExtension","resolved","extension","sep","getCandidates","extensions","reduce","paths","concat","getResolveId","resolveExtensions","importee","importer","dirname","candidates","i","stats","statSync","isFile","err","resolveId","isProxyModule","endsWith","startsWith","skipSelf","then","external","flatten","node","parts","type","computed","unshift","property","name","object","keypath","join","isTruthy","value","expression","operator","operators","isFalsy","not","equals","a","b","strict","x","left","right","argument","getName","makeLegalIdentifier","basename","extname","segments","split","reserved","blacklist","__esModule","forEach","word","exportsPattern","firstpassGlobal","firstpassNoGlobal","importExportDeclaration","functionType","deconflict","scope","globals","identifier","deconflicted","contains","has","declarations","tryParse","parse","code","allowReturnOutsideFunction","message","hasCjsKeywords","ignoreGlobal","firstpass","test","checkEsModule","ast","isEsModule","body","hasDefaultExport","specifiers","specifier","exported","transformCommonjs","isEntry","ignoreRequire","customNamedExports","sourceMap","allowDynamicRequire","astCache","magicString","MagicString","required","sources","uid","attachScopes","uses","module","exports","global","require","lexicalDepth","programDepth","Set","HELPERS_NAME","namedExports","shouldWrap","isRequireStatement","callee","arguments","hasDynamicArguments","expressions","isStaticRequireStatement","getRequireStringArg","quasis","cooked","getRequired","sourceId","existing","push","source","importsDefault","assignedTo","walk","enter","extractAssignedNames","add","parent","addSourcemapLocation","start","end","consequent","skip","alternate","_skip","overwrite","storeName","flattened","isReference","match","exec","properties","prop","key","init","_shouldRemove","remove","leave","keepDeclaration","c","declarator","Object","keys","Error","includeHelpers","importBlock","map","namedExportDeclarations","wrapperStart","wrapperEnd","moduleName","exportModuleExports","str","addExport","declaration","defaultExportPropertyAssignments","args","names","filter","defaultExport","named","exportBlock","trim","prepend","append","toString","generateMap","commonjs","options","createFilter","include","exclude","resolvedId","isCore","nodeResolveSync","basedir","process","cwd","existsSync","realpath","realpathSync","esModulesWithoutDefaultExport","esModulesWithDefaultExport","ignore","Array","isArray","includes","transformAndCheckExports","transformed","getModuleInfo","buildStart","meta","rollupVersion","Number","major","minor","minVersion","peerDependencies","rollup","minMajor","minMinor","error","load","actualId","JSON","stringify","isCjs","transform","indexOf","call","loc","Boolean"],"mappings":"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"}
1
+ {"version":3,"file":"rollup-plugin-commonjs.cjs.js","sources":["../src/helpers.js","../src/is-cjs.js","../src/resolve-id.js","../src/ast-utils.js","../src/utils.js","../src/transform.js","../src/index.js"],"sourcesContent":["export const PROXY_SUFFIX = '?commonjs-proxy';\nexport const getProxyId = id => `\\0${id}${PROXY_SUFFIX}`;\nexport const getIdFromProxyId = proxyId => proxyId.slice(1, -PROXY_SUFFIX.length);\n\nexport const EXTERNAL_SUFFIX = '?commonjs-external';\nexport const getExternalProxyId = id => `\\0${id}${EXTERNAL_SUFFIX}`;\nexport const getIdFromExternalProxyId = proxyId => proxyId.slice(1, -EXTERNAL_SUFFIX.length);\n\nexport const HELPERS_ID = '\\0commonjsHelpers.js';\n\n// `x['default']` is used instead of `x.default` for backward compatibility with ES3 browsers.\n// Minifiers like uglify will usually transpile it back if compatibility with ES3 is not enabled.\nexport const HELPERS = `\nexport var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};\n\nexport function commonjsRequire () {\n\tthrow new Error('Dynamic requires are not currently supported by rollup-plugin-commonjs');\n}\n\nexport function unwrapExports (x) {\n\treturn x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x;\n}\n\nexport function createCommonjsModule(fn, module) {\n\treturn module = { exports: {} }, fn(module, module.exports), module.exports;\n}\n\nexport function getCjsExportFromNamespace (n) {\n\treturn n && n['default'] || n;\n}`;\n","const isCjsPromises = new Map();\n\nexport function getIsCjsPromise(id) {\n\tlet isCjsPromise = isCjsPromises.get(id);\n\tif (isCjsPromise) return isCjsPromise.promise;\n\n\tconst promise = new Promise(resolve => {\n\t\tisCjsPromise = {\n\t\t\tresolve,\n\t\t\tpromise: undefined\n\t\t};\n\t\tisCjsPromises.set(id, isCjsPromise);\n\t});\n\tisCjsPromise.promise = promise;\n\n\treturn promise;\n}\n\nexport function setIsCjsPromise(id, resolution) {\n\tconst isCjsPromise = isCjsPromises.get(id);\n\tif (isCjsPromise) {\n\t\tif (isCjsPromise.resolve) {\n\t\t\tisCjsPromise.resolve(resolution);\n\t\t\tisCjsPromise.resolve = undefined;\n\t\t}\n\t} else {\n\t\tisCjsPromises.set(id, { promise: Promise.resolve(resolution), resolve: undefined });\n\t}\n}\n","import { statSync } from 'fs';\nimport { dirname, resolve, sep } from 'path';\nimport {\n\tgetExternalProxyId,\n\tgetIdFromProxyId,\n\tgetProxyId,\n\tHELPERS_ID,\n\tPROXY_SUFFIX\n} from './helpers';\n\nfunction getCandidatesForExtension(resolved, extension) {\n\treturn [resolved + extension, resolved + `${sep}index${extension}`];\n}\n\nfunction getCandidates(resolved, extensions) {\n\treturn extensions.reduce(\n\t\t(paths, extension) => paths.concat(getCandidatesForExtension(resolved, extension)),\n\t\t[resolved]\n\t);\n}\n\nexport function getResolveId(extensions) {\n\tfunction resolveExtensions(importee, importer) {\n\t\tif (importee[0] !== '.' || !importer) return; // not our problem\n\n\t\tconst resolved = resolve(dirname(importer), importee);\n\t\tconst candidates = getCandidates(resolved, extensions);\n\n\t\tfor (let i = 0; i < candidates.length; i += 1) {\n\t\t\ttry {\n\t\t\t\tconst stats = statSync(candidates[i]);\n\t\t\t\tif (stats.isFile()) return { id: candidates[i] };\n\t\t\t} catch (err) {\n\t\t\t\t/* noop */\n\t\t\t}\n\t\t}\n\t}\n\n\tfunction resolveId(importee, importer) {\n\t\tconst isProxyModule = importee.endsWith(PROXY_SUFFIX);\n\t\tif (isProxyModule) {\n\t\t\timportee = getIdFromProxyId(importee);\n\t\t} else if (importee.startsWith('\\0')) {\n\t\t\tif (importee === HELPERS_ID) {\n\t\t\t\treturn importee;\n\t\t\t}\n\t\t\treturn null;\n\t\t}\n\n\t\tif (importer && importer.endsWith(PROXY_SUFFIX)) {\n\t\t\timporter = getIdFromProxyId(importer);\n\t\t}\n\n\t\treturn this.resolve(importee, importer, { skipSelf: true }).then(resolved => {\n\t\t\tif (!resolved) {\n\t\t\t\tresolved = resolveExtensions(importee, importer);\n\t\t\t}\n\t\t\tif (isProxyModule) {\n\t\t\t\tif (!resolved) {\n\t\t\t\t\treturn { id: getExternalProxyId(importee), external: false };\n\t\t\t\t}\n\t\t\t\tresolved.id = (resolved.external ? getExternalProxyId : getProxyId)(resolved.id);\n\t\t\t\tresolved.external = false;\n\t\t\t\treturn resolved;\n\t\t\t}\n\t\t\treturn resolved;\n\t\t});\n\t}\n\n\treturn resolveId;\n}\n","export { default as isReference } from 'is-reference';\n\nexport function flatten(node) {\n\tconst parts = [];\n\n\twhile (node.type === 'MemberExpression') {\n\t\tif (node.computed) return null;\n\n\t\tparts.unshift(node.property.name);\n\t\tnode = node.object;\n\t}\n\n\tif (node.type !== 'Identifier') return null;\n\n\tconst name = node.name;\n\tparts.unshift(name);\n\n\treturn { name, keypath: parts.join('.') };\n}\n\nexport function isTruthy(node) {\n\tif (node.type === 'Literal') return !!node.value;\n\tif (node.type === 'ParenthesizedExpression') return isTruthy(node.expression);\n\tif (node.operator in operators) return operators[node.operator](node);\n}\n\nexport function isFalsy(node) {\n\treturn not(isTruthy(node));\n}\n\nfunction not(value) {\n\treturn value === undefined ? value : !value;\n}\n\nfunction equals(a, b, strict) {\n\tif (a.type !== b.type) return undefined;\n\tif (a.type === 'Literal') return strict ? a.value === b.value : a.value == b.value;\n}\n\nconst operators = {\n\t'==': x => {\n\t\treturn equals(x.left, x.right, false);\n\t},\n\n\t'!=': x => not(operators['=='](x)),\n\n\t'===': x => {\n\t\treturn equals(x.left, x.right, true);\n\t},\n\n\t'!==': x => not(operators['==='](x)),\n\n\t'!': x => isFalsy(x.argument),\n\n\t'&&': x => isTruthy(x.left) && isTruthy(x.right),\n\n\t'||': x => isTruthy(x.left) || isTruthy(x.right)\n};\n","import { basename, dirname, extname, sep } from 'path';\nimport { makeLegalIdentifier } from 'rollup-pluginutils';\n\nexport function getName(id) {\n\tconst name = makeLegalIdentifier(basename(id, extname(id)));\n\tif (name !== 'index') {\n\t\treturn name;\n\t} else {\n\t\tconst segments = dirname(id).split(sep);\n\t\treturn makeLegalIdentifier(segments[segments.length - 1]);\n\t}\n}\n\n// Return the first non-falsy result from an array of\n// maybe-sync, maybe-promise-returning functions\nexport function first(candidates) {\n\treturn function(...args) {\n\t\treturn candidates.reduce((promise, candidate) => {\n\t\t\treturn promise.then(result =>\n\t\t\t\tresult != null ? result : Promise.resolve(candidate.call(this, ...args))\n\t\t\t);\n\t\t}, Promise.resolve());\n\t};\n}\n","import { walk } from 'estree-walker';\nimport MagicString from 'magic-string';\nimport { attachScopes, extractAssignedNames, makeLegalIdentifier } from 'rollup-pluginutils';\nimport { flatten, isFalsy, isReference, isTruthy } from './ast-utils.js';\nimport { getProxyId, HELPERS_ID } from './helpers';\nimport { getName } from './utils.js';\n\nconst reserved = 'process location abstract arguments boolean break byte case catch char class const continue debugger default delete do double else enum eval export extends false final finally float for from function goto if implements import in instanceof int interface let long native new null package private protected public return short static super switch synchronized this throw throws transient true try typeof var void volatile while with yield'.split(\n\t' '\n);\nconst blacklist = { __esModule: true };\nreserved.forEach(word => (blacklist[word] = true));\n\nconst exportsPattern = /^(?:module\\.)?exports(?:\\.([a-zA-Z_$][a-zA-Z_$0-9]*))?$/;\n\nconst firstpassGlobal = /\\b(?:require|module|exports|global)\\b/;\nconst firstpassNoGlobal = /\\b(?:require|module|exports)\\b/;\nconst importExportDeclaration = /^(?:Import|Export(?:Named|Default))Declaration/;\nconst functionType = /^(?:FunctionDeclaration|FunctionExpression|ArrowFunctionExpression)$/;\n\nfunction deconflict(scope, globals, identifier) {\n\tlet i = 1;\n\tlet deconflicted = identifier;\n\n\twhile (scope.contains(deconflicted) || globals.has(deconflicted) || deconflicted in blacklist)\n\t\tdeconflicted = `${identifier}_${i++}`;\n\tscope.declarations[deconflicted] = true;\n\n\treturn deconflicted;\n}\n\nfunction tryParse(parse, code, id) {\n\ttry {\n\t\treturn parse(code, { allowReturnOutsideFunction: true });\n\t} catch (err) {\n\t\terr.message += ` in ${id}`;\n\t\tthrow err;\n\t}\n}\n\nexport function hasCjsKeywords(code, ignoreGlobal) {\n\tconst firstpass = ignoreGlobal ? firstpassNoGlobal : firstpassGlobal;\n\treturn firstpass.test(code);\n}\n\nexport function checkEsModule(parse, code, id) {\n\tconst ast = tryParse(parse, code, id);\n\n\tlet isEsModule = false;\n\tfor (const node of ast.body) {\n\t\tif (node.type === 'ExportDefaultDeclaration')\n\t\t\treturn { isEsModule: true, hasDefaultExport: true, ast };\n\t\tif (node.type === 'ExportNamedDeclaration') {\n\t\t\tisEsModule = true;\n\t\t\tfor (const specifier of node.specifiers) {\n\t\t\t\tif (specifier.exported.name === 'default') {\n\t\t\t\t\treturn { isEsModule: true, hasDefaultExport: true, ast };\n\t\t\t\t}\n\t\t\t}\n\t\t} else if (importExportDeclaration.test(node.type)) isEsModule = true;\n\t}\n\n\treturn { isEsModule, hasDefaultExport: false, ast };\n}\n\nexport function transformCommonjs(\n\tparse,\n\tcode,\n\tid,\n\tisEntry,\n\tignoreGlobal,\n\tignoreRequire,\n\tcustomNamedExports,\n\tsourceMap,\n\tallowDynamicRequire,\n\tastCache\n) {\n\tconst ast = astCache || tryParse(parse, code, id);\n\n\tconst magicString = new MagicString(code);\n\n\tconst required = {};\n\t// Because objects have no guaranteed ordering, yet we need it,\n\t// we need to keep track of the order in a array\n\tconst sources = [];\n\n\tlet uid = 0;\n\n\tlet scope = attachScopes(ast, 'scope');\n\tconst uses = { module: false, exports: false, global: false, require: false };\n\n\tlet lexicalDepth = 0;\n\tlet programDepth = 0;\n\n\tconst globals = new Set();\n\n\tconst HELPERS_NAME = deconflict(scope, globals, 'commonjsHelpers'); // TODO technically wrong since globals isn't populated yet, but ¯\\_(ツ)_/¯\n\n\tconst namedExports = {};\n\n\t// TODO handle transpiled modules\n\tlet shouldWrap = /__esModule/.test(code);\n\n\tfunction isRequireStatement(node) {\n\t\tif (!node) return;\n\t\tif (node.type !== 'CallExpression') return;\n\t\tif (node.callee.name !== 'require' || scope.contains('require')) return;\n\t\tif (node.arguments.length === 0) return; // Weird case of require() without arguments\n\t\treturn true;\n\t}\n\n\tfunction hasDynamicArguments(node) {\n\t\treturn (\n\t\t\tnode.arguments.length > 1 ||\n\t\t\t(node.arguments[0].type !== 'Literal' &&\n\t\t\t\t(node.arguments[0].type !== 'TemplateLiteral' || node.arguments[0].expressions.length > 0))\n\t\t);\n\t}\n\n\tfunction isStaticRequireStatement(node) {\n\t\tif (!isRequireStatement(node)) return;\n\t\tif (hasDynamicArguments(node)) return;\n\t\tif (ignoreRequire(node.arguments[0].value)) return;\n\t\treturn true;\n\t}\n\n\tfunction getRequireStringArg(node) {\n\t\treturn node.arguments[0].type === 'Literal'\n\t\t\t? node.arguments[0].value\n\t\t\t: node.arguments[0].quasis[0].value.cooked;\n\t}\n\n\tfunction getRequired(node, name) {\n\t\tconst sourceId = getRequireStringArg(node);\n\t\tconst existing = required[sourceId];\n\t\tif (existing === undefined) {\n\t\t\tif (!name) {\n\t\t\t\tdo name = `require$$${uid++}`;\n\t\t\t\twhile (scope.contains(name));\n\t\t\t}\n\n\t\t\tsources.push(sourceId);\n\t\t\trequired[sourceId] = { source: sourceId, name, importsDefault: false };\n\t\t}\n\n\t\treturn required[sourceId];\n\t}\n\n\t// do a first pass, see which names are assigned to. This is necessary to prevent\n\t// illegally replacing `var foo = require('foo')` with `import foo from 'foo'`,\n\t// where `foo` is later reassigned. (This happens in the wild. CommonJS, sigh)\n\tconst assignedTo = new Set();\n\twalk(ast, {\n\t\tenter(node) {\n\t\t\tif (node.type !== 'AssignmentExpression') return;\n\t\t\tif (node.left.type === 'MemberExpression') return;\n\n\t\t\textractAssignedNames(node.left).forEach(name => {\n\t\t\t\tassignedTo.add(name);\n\t\t\t});\n\t\t}\n\t});\n\n\twalk(ast, {\n\t\tenter(node, parent) {\n\t\t\tif (sourceMap) {\n\t\t\t\tmagicString.addSourcemapLocation(node.start);\n\t\t\t\tmagicString.addSourcemapLocation(node.end);\n\t\t\t}\n\n\t\t\t// skip dead branches\n\t\t\tif (parent && (parent.type === 'IfStatement' || parent.type === 'ConditionalExpression')) {\n\t\t\t\tif (node === parent.consequent && isFalsy(parent.test)) return this.skip();\n\t\t\t\tif (node === parent.alternate && isTruthy(parent.test)) return this.skip();\n\t\t\t}\n\n\t\t\tif (node._skip) return this.skip();\n\n\t\t\tprogramDepth += 1;\n\n\t\t\tif (node.scope) scope = node.scope;\n\t\t\tif (functionType.test(node.type)) lexicalDepth += 1;\n\n\t\t\t// if toplevel return, we need to wrap it\n\t\t\tif (node.type === 'ReturnStatement' && lexicalDepth === 0) {\n\t\t\t\tshouldWrap = true;\n\t\t\t}\n\n\t\t\t// rewrite `this` as `commonjsHelpers.commonjsGlobal`\n\t\t\tif (node.type === 'ThisExpression' && lexicalDepth === 0) {\n\t\t\t\tuses.global = true;\n\t\t\t\tif (!ignoreGlobal)\n\t\t\t\t\tmagicString.overwrite(node.start, node.end, `${HELPERS_NAME}.commonjsGlobal`, {\n\t\t\t\t\t\tstoreName: true\n\t\t\t\t\t});\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// rewrite `typeof module`, `typeof module.exports` and `typeof exports` (https://github.com/rollup/rollup-plugin-commonjs/issues/151)\n\t\t\tif (node.type === 'UnaryExpression' && node.operator === 'typeof') {\n\t\t\t\tconst flattened = flatten(node.argument);\n\t\t\t\tif (!flattened) return;\n\n\t\t\t\tif (scope.contains(flattened.name)) return;\n\n\t\t\t\tif (\n\t\t\t\t\tflattened.keypath === 'module.exports' ||\n\t\t\t\t\tflattened.keypath === 'module' ||\n\t\t\t\t\tflattened.keypath === 'exports'\n\t\t\t\t) {\n\t\t\t\t\tmagicString.overwrite(node.start, node.end, `'object'`, { storeName: false });\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// rewrite `require` (if not already handled) `global` and `define`, and handle free references to\n\t\t\t// `module` and `exports` as these mean we need to wrap the module in commonjsHelpers.createCommonjsModule\n\t\t\tif (node.type === 'Identifier') {\n\t\t\t\tif (isReference(node, parent) && !scope.contains(node.name)) {\n\t\t\t\t\tif (node.name in uses) {\n\t\t\t\t\t\tif (node.name === 'require') {\n\t\t\t\t\t\t\tif (allowDynamicRequire) return;\n\t\t\t\t\t\t\tmagicString.overwrite(node.start, node.end, `${HELPERS_NAME}.commonjsRequire`, {\n\t\t\t\t\t\t\t\tstoreName: true\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tuses[node.name] = true;\n\t\t\t\t\t\tif (node.name === 'global' && !ignoreGlobal) {\n\t\t\t\t\t\t\tmagicString.overwrite(node.start, node.end, `${HELPERS_NAME}.commonjsGlobal`, {\n\t\t\t\t\t\t\t\tstoreName: true\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// if module or exports are used outside the context of an assignment\n\t\t\t\t\t\t// expression, we need to wrap the module\n\t\t\t\t\t\tif (node.name === 'module' || node.name === 'exports') {\n\t\t\t\t\t\t\tshouldWrap = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tif (node.name === 'define') {\n\t\t\t\t\t\tmagicString.overwrite(node.start, node.end, 'undefined', { storeName: true });\n\t\t\t\t\t}\n\n\t\t\t\t\tglobals.add(node.name);\n\t\t\t\t}\n\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Is this an assignment to exports or module.exports?\n\t\t\tif (node.type === 'AssignmentExpression') {\n\t\t\t\tif (node.left.type !== 'MemberExpression') return;\n\n\t\t\t\tconst flattened = flatten(node.left);\n\t\t\t\tif (!flattened) return;\n\n\t\t\t\tif (scope.contains(flattened.name)) return;\n\n\t\t\t\tconst match = exportsPattern.exec(flattened.keypath);\n\t\t\t\tif (!match || flattened.keypath === 'exports') return;\n\n\t\t\t\tuses[flattened.name] = true;\n\n\t\t\t\t// we're dealing with `module.exports = ...` or `[module.]exports.foo = ...` –\n\t\t\t\t// if this isn't top-level, we'll need to wrap the module\n\t\t\t\tif (programDepth > 3) shouldWrap = true;\n\n\t\t\t\tnode.left._skip = true;\n\n\t\t\t\tif (flattened.keypath === 'module.exports' && node.right.type === 'ObjectExpression') {\n\t\t\t\t\treturn node.right.properties.forEach(prop => {\n\t\t\t\t\t\tif (prop.computed || prop.key.type !== 'Identifier') return;\n\t\t\t\t\t\tconst name = prop.key.name;\n\t\t\t\t\t\tif (name === makeLegalIdentifier(name)) namedExports[name] = true;\n\t\t\t\t\t});\n\t\t\t\t}\n\n\t\t\t\tif (match[1]) namedExports[match[1]] = true;\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// if this is `var x = require('x')`, we can do `import x from 'x'`\n\t\t\tif (\n\t\t\t\tnode.type === 'VariableDeclarator' &&\n\t\t\t\tnode.id.type === 'Identifier' &&\n\t\t\t\tisStaticRequireStatement(node.init)\n\t\t\t) {\n\t\t\t\t// for now, only do this for top-level requires. maybe fix this in future\n\t\t\t\tif (scope.parent) return;\n\n\t\t\t\t// edge case — CJS allows you to assign to imports. ES doesn't\n\t\t\t\tif (assignedTo.has(node.id.name)) return;\n\n\t\t\t\tconst required = getRequired(node.init, node.id.name);\n\t\t\t\trequired.importsDefault = true;\n\n\t\t\t\tif (required.name === node.id.name) {\n\t\t\t\t\tnode._shouldRemove = true;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif (!isStaticRequireStatement(node)) return;\n\n\t\t\tconst required = getRequired(node);\n\n\t\t\tif (parent.type === 'ExpressionStatement') {\n\t\t\t\t// is a bare import, e.g. `require('foo');`\n\t\t\t\tmagicString.remove(parent.start, parent.end);\n\t\t\t} else {\n\t\t\t\trequired.importsDefault = true;\n\t\t\t\tmagicString.overwrite(node.start, node.end, required.name);\n\t\t\t}\n\n\t\t\tnode.callee._skip = true;\n\t\t},\n\n\t\tleave(node) {\n\t\t\tprogramDepth -= 1;\n\t\t\tif (node.scope) scope = scope.parent;\n\t\t\tif (functionType.test(node.type)) lexicalDepth -= 1;\n\n\t\t\tif (node.type === 'VariableDeclaration') {\n\t\t\t\tlet keepDeclaration = false;\n\t\t\t\tlet c = node.declarations[0].start;\n\n\t\t\t\tfor (let i = 0; i < node.declarations.length; i += 1) {\n\t\t\t\t\tconst declarator = node.declarations[i];\n\n\t\t\t\t\tif (declarator._shouldRemove) {\n\t\t\t\t\t\tmagicString.remove(c, declarator.end);\n\t\t\t\t\t} else {\n\t\t\t\t\t\tif (!keepDeclaration) {\n\t\t\t\t\t\t\tmagicString.remove(c, declarator.start);\n\t\t\t\t\t\t\tkeepDeclaration = true;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tc = declarator.end;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tif (!keepDeclaration) {\n\t\t\t\t\tmagicString.remove(node.start, node.end);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t});\n\n\tif (\n\t\t!sources.length &&\n\t\t!uses.module &&\n\t\t!uses.exports &&\n\t\t!uses.require &&\n\t\t(ignoreGlobal || !uses.global)\n\t) {\n\t\tif (Object.keys(namedExports).length) {\n\t\t\tthrow new Error(\n\t\t\t\t`Custom named exports were specified for ${id} but it does not appear to be a CommonJS module`\n\t\t\t);\n\t\t}\n\t\treturn null; // not a CommonJS module\n\t}\n\n\tconst includeHelpers = shouldWrap || uses.global || uses.require;\n\tconst importBlock =\n\t\t(includeHelpers ? [`import * as ${HELPERS_NAME} from '${HELPERS_ID}';`] : [])\n\t\t\t.concat(\n\t\t\t\tsources.map(source => {\n\t\t\t\t\t// import the actual module before the proxy, so that we know\n\t\t\t\t\t// what kind of proxy to build\n\t\t\t\t\treturn `import '${source}';`;\n\t\t\t\t}),\n\t\t\t\tsources.map(source => {\n\t\t\t\t\tconst { name, importsDefault } = required[source];\n\t\t\t\t\treturn `import ${importsDefault ? `${name} from ` : ``}'${getProxyId(source)}';`;\n\t\t\t\t})\n\t\t\t)\n\t\t\t.join('\\n') + '\\n\\n';\n\n\tconst namedExportDeclarations = [];\n\tlet wrapperStart = '';\n\tlet wrapperEnd = '';\n\n\tconst moduleName = deconflict(scope, globals, getName(id));\n\tif (!isEntry) {\n\t\tconst exportModuleExports = {\n\t\t\tstr: `export { ${moduleName} as __moduleExports };`,\n\t\t\tname: '__moduleExports'\n\t\t};\n\n\t\tnamedExportDeclarations.push(exportModuleExports);\n\t}\n\n\tconst name = getName(id);\n\n\tfunction addExport(x) {\n\t\tconst deconflicted = deconflict(scope, globals, name);\n\n\t\tconst declaration =\n\t\t\tdeconflicted === name\n\t\t\t\t? `export var ${x} = ${moduleName}.${x};`\n\t\t\t\t: `var ${deconflicted} = ${moduleName}.${x};\\nexport { ${deconflicted} as ${x} };`;\n\n\t\tnamedExportDeclarations.push({\n\t\t\tstr: declaration,\n\t\t\tname: x\n\t\t});\n\t}\n\n\tif (customNamedExports) customNamedExports.forEach(addExport);\n\n\tconst defaultExportPropertyAssignments = [];\n\tlet hasDefaultExport = false;\n\n\tif (shouldWrap) {\n\t\tconst args = `module${uses.exports ? ', exports' : ''}`;\n\n\t\twrapperStart = `var ${moduleName} = ${HELPERS_NAME}.createCommonjsModule(function (${args}) {\\n`;\n\t\twrapperEnd = `\\n});`;\n\t} else {\n\t\tconst names = [];\n\n\t\tast.body.forEach(node => {\n\t\t\tif (node.type === 'ExpressionStatement' && node.expression.type === 'AssignmentExpression') {\n\t\t\t\tconst left = node.expression.left;\n\t\t\t\tconst flattened = flatten(left);\n\n\t\t\t\tif (!flattened) return;\n\n\t\t\t\tconst match = exportsPattern.exec(flattened.keypath);\n\t\t\t\tif (!match) return;\n\n\t\t\t\tif (flattened.keypath === 'module.exports') {\n\t\t\t\t\thasDefaultExport = true;\n\t\t\t\t\tmagicString.overwrite(left.start, left.end, `var ${moduleName}`);\n\t\t\t\t} else {\n\t\t\t\t\tconst name = match[1];\n\t\t\t\t\tconst deconflicted = deconflict(scope, globals, name);\n\n\t\t\t\t\tnames.push({ name, deconflicted });\n\n\t\t\t\t\tmagicString.overwrite(node.start, left.end, `var ${deconflicted}`);\n\n\t\t\t\t\tconst declaration =\n\t\t\t\t\t\tname === deconflicted\n\t\t\t\t\t\t\t? `export { ${name} };`\n\t\t\t\t\t\t\t: `export { ${deconflicted} as ${name} };`;\n\n\t\t\t\t\tif (name !== 'default') {\n\t\t\t\t\t\tnamedExportDeclarations.push({\n\t\t\t\t\t\t\tstr: declaration,\n\t\t\t\t\t\t\tname\n\t\t\t\t\t\t});\n\t\t\t\t\t\tdelete namedExports[name];\n\t\t\t\t\t}\n\n\t\t\t\t\tdefaultExportPropertyAssignments.push(`${moduleName}.${name} = ${deconflicted};`);\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\n\t\tif (!hasDefaultExport) {\n\t\t\twrapperEnd = `\\n\\nvar ${moduleName} = {\\n${names\n\t\t\t\t.map(({ name, deconflicted }) => `\\t${name}: ${deconflicted}`)\n\t\t\t\t.join(',\\n')}\\n};`;\n\t\t}\n\t}\n\tObject.keys(namedExports)\n\t\t.filter(key => !blacklist[key])\n\t\t.forEach(addExport);\n\n\tconst defaultExport = /__esModule/.test(code)\n\t\t? `export default ${HELPERS_NAME}.unwrapExports(${moduleName});`\n\t\t: `export default ${moduleName};`;\n\n\tconst named = namedExportDeclarations\n\t\t.filter(x => x.name !== 'default' || !hasDefaultExport)\n\t\t.map(x => x.str);\n\n\tconst exportBlock =\n\t\t'\\n\\n' +\n\t\t[defaultExport]\n\t\t\t.concat(named)\n\t\t\t.concat(hasDefaultExport ? defaultExportPropertyAssignments : [])\n\t\t\t.join('\\n');\n\n\tmagicString\n\t\t.trim()\n\t\t.prepend(importBlock + wrapperStart)\n\t\t.trim()\n\t\t.append(wrapperEnd + exportBlock);\n\n\tcode = magicString.toString();\n\tconst map = sourceMap ? magicString.generateMap() : null;\n\n\treturn { code, map };\n}\n","import { realpathSync, existsSync } from 'fs';\nimport { extname, resolve, normalize } from 'path';\nimport { sync as nodeResolveSync, isCore } from 'resolve';\nimport { createFilter } from 'rollup-pluginutils';\nimport { peerDependencies } from '../package.json';\nimport {\n\tEXTERNAL_SUFFIX,\n\tgetIdFromExternalProxyId,\n\tgetIdFromProxyId,\n\tHELPERS,\n\tHELPERS_ID,\n\tPROXY_SUFFIX\n} from './helpers';\nimport { getIsCjsPromise, setIsCjsPromise } from './is-cjs';\nimport { getResolveId } from './resolve-id';\nimport { checkEsModule, hasCjsKeywords, transformCommonjs } from './transform.js';\nimport { getName } from './utils.js';\n\nexport default function commonjs(options = {}) {\n\tconst extensions = options.extensions || ['.js'];\n\tconst filter = createFilter(options.include, options.exclude);\n\tconst ignoreGlobal = options.ignoreGlobal;\n\n\tconst customNamedExports = {};\n\tif (options.namedExports) {\n\t\tObject.keys(options.namedExports).forEach(id => {\n\t\t\tlet resolveId = id;\n\t\t\tlet resolvedId;\n\n\t\t\tif (isCore(id)) {\n\t\t\t\t// resolve will not find npm modules with the same name as\n\t\t\t\t// core modules without a trailing slash. Since core modules\n\t\t\t\t// must be external, we can assume any core modules defined\n\t\t\t\t// here are npm modules by that name.\n\t\t\t\tresolveId += '/';\n\t\t\t}\n\n\t\t\ttry {\n\t\t\t\tresolvedId = nodeResolveSync(resolveId, { basedir: process.cwd() });\n\t\t\t} catch (err) {\n\t\t\t\tresolvedId = resolve(id);\n\t\t\t}\n\n\t\t\t// Note: customNamedExport's keys must be normalized file paths.\n\t\t\t// resolve and nodeResolveSync both return normalized file paths\n\t\t\t// so no additional normalization is necessary.\n\t\t\tcustomNamedExports[resolvedId] = options.namedExports[id];\n\n\t\t\tif (existsSync(resolvedId)) {\n\t\t\t\tconst realpath = realpathSync(resolvedId);\n\t\t\t\tif (realpath !== resolvedId) {\n\t\t\t\t\tcustomNamedExports[realpath] = options.namedExports[id];\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t}\n\n\tconst esModulesWithoutDefaultExport = new Set();\n\tconst esModulesWithDefaultExport = new Set();\n\tconst allowDynamicRequire = !!options.ignore; // TODO maybe this should be configurable?\n\n\tconst ignoreRequire =\n\t\ttypeof options.ignore === 'function'\n\t\t\t? options.ignore\n\t\t\t: Array.isArray(options.ignore)\n\t\t\t\t? id => options.ignore.includes(id)\n\t\t\t\t: () => false;\n\n\tconst resolveId = getResolveId(extensions);\n\n\tconst sourceMap = options.sourceMap !== false;\n\n\tfunction transformAndCheckExports(code, id) {\n\t\t{\n\t\t\tconst { isEsModule, hasDefaultExport, ast } = checkEsModule(this.parse, code, id);\n\t\t\tif (isEsModule) {\n\t\t\t\t(hasDefaultExport ? esModulesWithDefaultExport : esModulesWithoutDefaultExport).add(id);\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\t// it is not an ES module but it does not have CJS-specific elements.\n\t\t\tif (!hasCjsKeywords(code, ignoreGlobal)) {\n\t\t\t\tesModulesWithoutDefaultExport.add(id);\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\tconst normalizedId = normalize(id);\n\n\t\t\tconst transformed = transformCommonjs(\n\t\t\t\tthis.parse,\n\t\t\t\tcode,\n\t\t\t\tid,\n\t\t\t\tthis.getModuleInfo(id).isEntry,\n\t\t\t\tignoreGlobal,\n\t\t\t\tignoreRequire,\n\t\t\t\tcustomNamedExports[normalizedId],\n\t\t\t\tsourceMap,\n\t\t\t\tallowDynamicRequire,\n\t\t\t\tast\n\t\t\t);\n\t\t\tif (!transformed) {\n\t\t\t\tesModulesWithoutDefaultExport.add(id);\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\treturn transformed;\n\t\t}\n\t}\n\n\treturn {\n\t\tname: 'commonjs',\n\n\t\tbuildStart() {\n\t\t\tconst [major, minor] = this.meta.rollupVersion.split('.').map(Number);\n\t\t\tconst minVersion = peerDependencies.rollup.slice(2);\n\t\t\tconst [minMajor, minMinor] = minVersion.split('.').map(Number);\n\t\t\tif (major < minMajor || (major === minMajor && minor < minMinor)) {\n\t\t\t\tthis.error(\n\t\t\t\t\t`Insufficient Rollup version: \"rollup-plugin-commonjs\" requires at least rollup@${minVersion} but found rollup@${this.meta.rollupVersion}.`\n\t\t\t\t);\n\t\t\t}\n\t\t},\n\n\t\tresolveId,\n\n\t\tload(id) {\n\t\t\tif (id === HELPERS_ID) return HELPERS;\n\n\t\t\t// generate proxy modules\n\t\t\tif (id.endsWith(EXTERNAL_SUFFIX)) {\n\t\t\t\tconst actualId = getIdFromExternalProxyId(id);\n\t\t\t\tconst name = getName(actualId);\n\n\t\t\t\treturn `import ${name} from ${JSON.stringify(actualId)}; export default ${name};`;\n\t\t\t}\n\n\t\t\tif (id.endsWith(PROXY_SUFFIX)) {\n\t\t\t\tconst actualId = getIdFromProxyId(id);\n\t\t\t\tconst name = getName(actualId);\n\n\t\t\t\treturn getIsCjsPromise(actualId).then(isCjs => {\n\t\t\t\t\tif (isCjs)\n\t\t\t\t\t\treturn `import { __moduleExports } from ${JSON.stringify(\n\t\t\t\t\t\t\tactualId\n\t\t\t\t\t\t)}; export default __moduleExports;`;\n\t\t\t\t\telse if (esModulesWithoutDefaultExport.has(actualId))\n\t\t\t\t\t\treturn `import * as ${name} from ${JSON.stringify(actualId)}; export default ${name};`;\n\t\t\t\t\telse if (esModulesWithDefaultExport.has(actualId)) {\n\t\t\t\t\t\treturn `export {default} from ${JSON.stringify(actualId)};`;\n\t\t\t\t\t} else\n\t\t\t\t\t\treturn `import * as ${name} from ${JSON.stringify(\n\t\t\t\t\t\t\tactualId\n\t\t\t\t\t\t)}; import {getCjsExportFromNamespace} from \"${HELPERS_ID}\"; export default getCjsExportFromNamespace(${name})`;\n\t\t\t\t});\n\t\t\t}\n\t\t},\n\n\t\ttransform(code, id) {\n\t\t\tif (!filter(id) || extensions.indexOf(extname(id)) === -1) {\n\t\t\t\tsetIsCjsPromise(id, null);\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\tlet transformed;\n\t\t\ttry {\n\t\t\t\ttransformed = transformAndCheckExports.call(this, code, id);\n\t\t\t} catch (err) {\n\t\t\t\ttransformed = null;\n\t\t\t\tthis.error(err, err.loc);\n\t\t\t}\n\n\t\t\tsetIsCjsPromise(id, Boolean(transformed));\n\t\t\treturn transformed;\n\t\t}\n\t};\n}\n"],"names":["PROXY_SUFFIX","getProxyId","id","getIdFromProxyId","proxyId","slice","length","EXTERNAL_SUFFIX","getExternalProxyId","getIdFromExternalProxyId","HELPERS_ID","HELPERS","isCjsPromises","Map","getIsCjsPromise","isCjsPromise","get","promise","Promise","resolve","undefined","set","setIsCjsPromise","resolution","getCandidatesForExtension","resolved","extension","sep","getCandidates","extensions","reduce","paths","concat","getResolveId","resolveExtensions","importee","importer","dirname","candidates","i","stats","statSync","isFile","err","resolveId","isProxyModule","endsWith","startsWith","skipSelf","then","external","flatten","node","parts","type","computed","unshift","property","name","object","keypath","join","isTruthy","value","expression","operator","operators","isFalsy","not","equals","a","b","strict","x","left","right","argument","getName","makeLegalIdentifier","basename","extname","segments","split","reserved","blacklist","__esModule","forEach","word","exportsPattern","firstpassGlobal","firstpassNoGlobal","importExportDeclaration","functionType","deconflict","scope","globals","identifier","deconflicted","contains","has","declarations","tryParse","parse","code","allowReturnOutsideFunction","message","hasCjsKeywords","ignoreGlobal","firstpass","test","checkEsModule","ast","isEsModule","body","hasDefaultExport","specifiers","specifier","exported","transformCommonjs","isEntry","ignoreRequire","customNamedExports","sourceMap","allowDynamicRequire","astCache","magicString","MagicString","required","sources","uid","attachScopes","uses","module","exports","global","require","lexicalDepth","programDepth","Set","HELPERS_NAME","namedExports","shouldWrap","isRequireStatement","callee","arguments","hasDynamicArguments","expressions","isStaticRequireStatement","getRequireStringArg","quasis","cooked","getRequired","sourceId","existing","push","source","importsDefault","assignedTo","walk","enter","extractAssignedNames","add","parent","addSourcemapLocation","start","end","consequent","skip","alternate","_skip","overwrite","storeName","flattened","isReference","match","exec","properties","prop","key","init","_shouldRemove","remove","leave","keepDeclaration","c","declarator","Object","keys","Error","includeHelpers","importBlock","map","namedExportDeclarations","wrapperStart","wrapperEnd","moduleName","exportModuleExports","str","addExport","declaration","defaultExportPropertyAssignments","args","names","filter","defaultExport","named","exportBlock","trim","prepend","append","toString","generateMap","commonjs","options","createFilter","include","exclude","resolvedId","isCore","nodeResolveSync","basedir","process","cwd","existsSync","realpath","realpathSync","esModulesWithoutDefaultExport","esModulesWithDefaultExport","ignore","Array","isArray","includes","transformAndCheckExports","normalizedId","normalize","transformed","getModuleInfo","buildStart","meta","rollupVersion","Number","major","minor","minVersion","peerDependencies","rollup","minMajor","minMinor","error","load","actualId","JSON","stringify","isCjs","transform","indexOf","call","loc","Boolean"],"mappings":"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"}
@@ -1,5 +1,5 @@
1
1
  import { statSync, existsSync, realpathSync } from 'fs';
2
- import { resolve, dirname, sep, basename, extname } from 'path';
2
+ import { resolve, dirname, sep, basename, extname, normalize } from 'path';
3
3
  import { isCore, sync } from 'resolve';
4
4
  import { makeLegalIdentifier, attachScopes, extractAssignedNames, createFilter } from 'rollup-pluginutils';
5
5
  import { walk } from 'estree-walker';
@@ -728,7 +728,10 @@ function commonjs(options = {}) {
728
728
  });
729
729
  } catch (err) {
730
730
  resolvedId = resolve(id);
731
- }
731
+ } // Note: customNamedExport's keys must be normalized file paths.
732
+ // resolve and nodeResolveSync both return normalized file paths
733
+ // so no additional normalization is necessary.
734
+
732
735
 
733
736
  customNamedExports[resolvedId] = options.namedExports[id];
734
737
 
@@ -768,7 +771,8 @@ function commonjs(options = {}) {
768
771
  return null;
769
772
  }
770
773
 
771
- const transformed = transformCommonjs(this.parse, code, id, this.getModuleInfo(id).isEntry, ignoreGlobal, ignoreRequire, customNamedExports[id], sourceMap, allowDynamicRequire, ast);
774
+ const normalizedId = normalize(id);
775
+ const transformed = transformCommonjs(this.parse, code, id, this.getModuleInfo(id).isEntry, ignoreGlobal, ignoreRequire, customNamedExports[normalizedId], sourceMap, allowDynamicRequire, ast);
772
776
 
773
777
  if (!transformed) {
774
778
  esModulesWithoutDefaultExport.add(id);
@@ -1 +1 @@
1
- {"version":3,"file":"rollup-plugin-commonjs.es.js","sources":["../src/helpers.js","../src/is-cjs.js","../src/resolve-id.js","../src/ast-utils.js","../src/utils.js","../src/transform.js","../src/index.js"],"sourcesContent":["export const PROXY_SUFFIX = '?commonjs-proxy';\nexport const getProxyId = id => `\\0${id}${PROXY_SUFFIX}`;\nexport const getIdFromProxyId = proxyId => proxyId.slice(1, -PROXY_SUFFIX.length);\n\nexport const EXTERNAL_SUFFIX = '?commonjs-external';\nexport const getExternalProxyId = id => `\\0${id}${EXTERNAL_SUFFIX}`;\nexport const getIdFromExternalProxyId = proxyId => proxyId.slice(1, -EXTERNAL_SUFFIX.length);\n\nexport const HELPERS_ID = '\\0commonjsHelpers.js';\n\n// `x['default']` is used instead of `x.default` for backward compatibility with ES3 browsers.\n// Minifiers like uglify will usually transpile it back if compatibility with ES3 is not enabled.\nexport const HELPERS = `\nexport var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};\n\nexport function commonjsRequire () {\n\tthrow new Error('Dynamic requires are not currently supported by rollup-plugin-commonjs');\n}\n\nexport function unwrapExports (x) {\n\treturn x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x;\n}\n\nexport function createCommonjsModule(fn, module) {\n\treturn module = { exports: {} }, fn(module, module.exports), module.exports;\n}\n\nexport function getCjsExportFromNamespace (n) {\n\treturn n && n['default'] || n;\n}`;\n","const isCjsPromises = new Map();\n\nexport function getIsCjsPromise(id) {\n\tlet isCjsPromise = isCjsPromises.get(id);\n\tif (isCjsPromise) return isCjsPromise.promise;\n\n\tconst promise = new Promise(resolve => {\n\t\tisCjsPromise = {\n\t\t\tresolve,\n\t\t\tpromise: undefined\n\t\t};\n\t\tisCjsPromises.set(id, isCjsPromise);\n\t});\n\tisCjsPromise.promise = promise;\n\n\treturn promise;\n}\n\nexport function setIsCjsPromise(id, resolution) {\n\tconst isCjsPromise = isCjsPromises.get(id);\n\tif (isCjsPromise) {\n\t\tif (isCjsPromise.resolve) {\n\t\t\tisCjsPromise.resolve(resolution);\n\t\t\tisCjsPromise.resolve = undefined;\n\t\t}\n\t} else {\n\t\tisCjsPromises.set(id, { promise: Promise.resolve(resolution), resolve: undefined });\n\t}\n}\n","import { statSync } from 'fs';\nimport { dirname, resolve, sep } from 'path';\nimport {\n\tgetExternalProxyId,\n\tgetIdFromProxyId,\n\tgetProxyId,\n\tHELPERS_ID,\n\tPROXY_SUFFIX\n} from './helpers';\n\nfunction getCandidatesForExtension(resolved, extension) {\n\treturn [resolved + extension, resolved + `${sep}index${extension}`];\n}\n\nfunction getCandidates(resolved, extensions) {\n\treturn extensions.reduce(\n\t\t(paths, extension) => paths.concat(getCandidatesForExtension(resolved, extension)),\n\t\t[resolved]\n\t);\n}\n\nexport function getResolveId(extensions) {\n\tfunction resolveExtensions(importee, importer) {\n\t\tif (importee[0] !== '.' || !importer) return; // not our problem\n\n\t\tconst resolved = resolve(dirname(importer), importee);\n\t\tconst candidates = getCandidates(resolved, extensions);\n\n\t\tfor (let i = 0; i < candidates.length; i += 1) {\n\t\t\ttry {\n\t\t\t\tconst stats = statSync(candidates[i]);\n\t\t\t\tif (stats.isFile()) return { id: candidates[i] };\n\t\t\t} catch (err) {\n\t\t\t\t/* noop */\n\t\t\t}\n\t\t}\n\t}\n\n\tfunction resolveId(importee, importer) {\n\t\tconst isProxyModule = importee.endsWith(PROXY_SUFFIX);\n\t\tif (isProxyModule) {\n\t\t\timportee = getIdFromProxyId(importee);\n\t\t} else if (importee.startsWith('\\0')) {\n\t\t\tif (importee === HELPERS_ID) {\n\t\t\t\treturn importee;\n\t\t\t}\n\t\t\treturn null;\n\t\t}\n\n\t\tif (importer && importer.endsWith(PROXY_SUFFIX)) {\n\t\t\timporter = getIdFromProxyId(importer);\n\t\t}\n\n\t\treturn this.resolve(importee, importer, { skipSelf: true }).then(resolved => {\n\t\t\tif (!resolved) {\n\t\t\t\tresolved = resolveExtensions(importee, importer);\n\t\t\t}\n\t\t\tif (isProxyModule) {\n\t\t\t\tif (!resolved) {\n\t\t\t\t\treturn { id: getExternalProxyId(importee), external: false };\n\t\t\t\t}\n\t\t\t\tresolved.id = (resolved.external ? getExternalProxyId : getProxyId)(resolved.id);\n\t\t\t\tresolved.external = false;\n\t\t\t\treturn resolved;\n\t\t\t}\n\t\t\treturn resolved;\n\t\t});\n\t}\n\n\treturn resolveId;\n}\n","export { default as isReference } from 'is-reference';\n\nexport function flatten(node) {\n\tconst parts = [];\n\n\twhile (node.type === 'MemberExpression') {\n\t\tif (node.computed) return null;\n\n\t\tparts.unshift(node.property.name);\n\t\tnode = node.object;\n\t}\n\n\tif (node.type !== 'Identifier') return null;\n\n\tconst name = node.name;\n\tparts.unshift(name);\n\n\treturn { name, keypath: parts.join('.') };\n}\n\nexport function isTruthy(node) {\n\tif (node.type === 'Literal') return !!node.value;\n\tif (node.type === 'ParenthesizedExpression') return isTruthy(node.expression);\n\tif (node.operator in operators) return operators[node.operator](node);\n}\n\nexport function isFalsy(node) {\n\treturn not(isTruthy(node));\n}\n\nfunction not(value) {\n\treturn value === undefined ? value : !value;\n}\n\nfunction equals(a, b, strict) {\n\tif (a.type !== b.type) return undefined;\n\tif (a.type === 'Literal') return strict ? a.value === b.value : a.value == b.value;\n}\n\nconst operators = {\n\t'==': x => {\n\t\treturn equals(x.left, x.right, false);\n\t},\n\n\t'!=': x => not(operators['=='](x)),\n\n\t'===': x => {\n\t\treturn equals(x.left, x.right, true);\n\t},\n\n\t'!==': x => not(operators['==='](x)),\n\n\t'!': x => isFalsy(x.argument),\n\n\t'&&': x => isTruthy(x.left) && isTruthy(x.right),\n\n\t'||': x => isTruthy(x.left) || isTruthy(x.right)\n};\n","import { basename, dirname, extname, sep } from 'path';\nimport { makeLegalIdentifier } from 'rollup-pluginutils';\n\nexport function getName(id) {\n\tconst name = makeLegalIdentifier(basename(id, extname(id)));\n\tif (name !== 'index') {\n\t\treturn name;\n\t} else {\n\t\tconst segments = dirname(id).split(sep);\n\t\treturn makeLegalIdentifier(segments[segments.length - 1]);\n\t}\n}\n\n// Return the first non-falsy result from an array of\n// maybe-sync, maybe-promise-returning functions\nexport function first(candidates) {\n\treturn function(...args) {\n\t\treturn candidates.reduce((promise, candidate) => {\n\t\t\treturn promise.then(result =>\n\t\t\t\tresult != null ? result : Promise.resolve(candidate.call(this, ...args))\n\t\t\t);\n\t\t}, Promise.resolve());\n\t};\n}\n","import { walk } from 'estree-walker';\nimport MagicString from 'magic-string';\nimport { attachScopes, extractAssignedNames, makeLegalIdentifier } from 'rollup-pluginutils';\nimport { flatten, isFalsy, isReference, isTruthy } from './ast-utils.js';\nimport { getProxyId, HELPERS_ID } from './helpers';\nimport { getName } from './utils.js';\n\nconst reserved = 'process location abstract arguments boolean break byte case catch char class const continue debugger default delete do double else enum eval export extends false final finally float for from function goto if implements import in instanceof int interface let long native new null package private protected public return short static super switch synchronized this throw throws transient true try typeof var void volatile while with yield'.split(\n\t' '\n);\nconst blacklist = { __esModule: true };\nreserved.forEach(word => (blacklist[word] = true));\n\nconst exportsPattern = /^(?:module\\.)?exports(?:\\.([a-zA-Z_$][a-zA-Z_$0-9]*))?$/;\n\nconst firstpassGlobal = /\\b(?:require|module|exports|global)\\b/;\nconst firstpassNoGlobal = /\\b(?:require|module|exports)\\b/;\nconst importExportDeclaration = /^(?:Import|Export(?:Named|Default))Declaration/;\nconst functionType = /^(?:FunctionDeclaration|FunctionExpression|ArrowFunctionExpression)$/;\n\nfunction deconflict(scope, globals, identifier) {\n\tlet i = 1;\n\tlet deconflicted = identifier;\n\n\twhile (scope.contains(deconflicted) || globals.has(deconflicted) || deconflicted in blacklist)\n\t\tdeconflicted = `${identifier}_${i++}`;\n\tscope.declarations[deconflicted] = true;\n\n\treturn deconflicted;\n}\n\nfunction tryParse(parse, code, id) {\n\ttry {\n\t\treturn parse(code, { allowReturnOutsideFunction: true });\n\t} catch (err) {\n\t\terr.message += ` in ${id}`;\n\t\tthrow err;\n\t}\n}\n\nexport function hasCjsKeywords(code, ignoreGlobal) {\n\tconst firstpass = ignoreGlobal ? firstpassNoGlobal : firstpassGlobal;\n\treturn firstpass.test(code);\n}\n\nexport function checkEsModule(parse, code, id) {\n\tconst ast = tryParse(parse, code, id);\n\n\tlet isEsModule = false;\n\tfor (const node of ast.body) {\n\t\tif (node.type === 'ExportDefaultDeclaration')\n\t\t\treturn { isEsModule: true, hasDefaultExport: true, ast };\n\t\tif (node.type === 'ExportNamedDeclaration') {\n\t\t\tisEsModule = true;\n\t\t\tfor (const specifier of node.specifiers) {\n\t\t\t\tif (specifier.exported.name === 'default') {\n\t\t\t\t\treturn { isEsModule: true, hasDefaultExport: true, ast };\n\t\t\t\t}\n\t\t\t}\n\t\t} else if (importExportDeclaration.test(node.type)) isEsModule = true;\n\t}\n\n\treturn { isEsModule, hasDefaultExport: false, ast };\n}\n\nexport function transformCommonjs(\n\tparse,\n\tcode,\n\tid,\n\tisEntry,\n\tignoreGlobal,\n\tignoreRequire,\n\tcustomNamedExports,\n\tsourceMap,\n\tallowDynamicRequire,\n\tastCache\n) {\n\tconst ast = astCache || tryParse(parse, code, id);\n\n\tconst magicString = new MagicString(code);\n\n\tconst required = {};\n\t// Because objects have no guaranteed ordering, yet we need it,\n\t// we need to keep track of the order in a array\n\tconst sources = [];\n\n\tlet uid = 0;\n\n\tlet scope = attachScopes(ast, 'scope');\n\tconst uses = { module: false, exports: false, global: false, require: false };\n\n\tlet lexicalDepth = 0;\n\tlet programDepth = 0;\n\n\tconst globals = new Set();\n\n\tconst HELPERS_NAME = deconflict(scope, globals, 'commonjsHelpers'); // TODO technically wrong since globals isn't populated yet, but ¯\\_(ツ)_/¯\n\n\tconst namedExports = {};\n\n\t// TODO handle transpiled modules\n\tlet shouldWrap = /__esModule/.test(code);\n\n\tfunction isRequireStatement(node) {\n\t\tif (!node) return;\n\t\tif (node.type !== 'CallExpression') return;\n\t\tif (node.callee.name !== 'require' || scope.contains('require')) return;\n\t\tif (node.arguments.length === 0) return; // Weird case of require() without arguments\n\t\treturn true;\n\t}\n\n\tfunction hasDynamicArguments(node) {\n\t\treturn (\n\t\t\tnode.arguments.length > 1 ||\n\t\t\t(node.arguments[0].type !== 'Literal' &&\n\t\t\t\t(node.arguments[0].type !== 'TemplateLiteral' || node.arguments[0].expressions.length > 0))\n\t\t);\n\t}\n\n\tfunction isStaticRequireStatement(node) {\n\t\tif (!isRequireStatement(node)) return;\n\t\tif (hasDynamicArguments(node)) return;\n\t\tif (ignoreRequire(node.arguments[0].value)) return;\n\t\treturn true;\n\t}\n\n\tfunction getRequireStringArg(node) {\n\t\treturn node.arguments[0].type === 'Literal'\n\t\t\t? node.arguments[0].value\n\t\t\t: node.arguments[0].quasis[0].value.cooked;\n\t}\n\n\tfunction getRequired(node, name) {\n\t\tconst sourceId = getRequireStringArg(node);\n\t\tconst existing = required[sourceId];\n\t\tif (existing === undefined) {\n\t\t\tif (!name) {\n\t\t\t\tdo name = `require$$${uid++}`;\n\t\t\t\twhile (scope.contains(name));\n\t\t\t}\n\n\t\t\tsources.push(sourceId);\n\t\t\trequired[sourceId] = { source: sourceId, name, importsDefault: false };\n\t\t}\n\n\t\treturn required[sourceId];\n\t}\n\n\t// do a first pass, see which names are assigned to. This is necessary to prevent\n\t// illegally replacing `var foo = require('foo')` with `import foo from 'foo'`,\n\t// where `foo` is later reassigned. (This happens in the wild. CommonJS, sigh)\n\tconst assignedTo = new Set();\n\twalk(ast, {\n\t\tenter(node) {\n\t\t\tif (node.type !== 'AssignmentExpression') return;\n\t\t\tif (node.left.type === 'MemberExpression') return;\n\n\t\t\textractAssignedNames(node.left).forEach(name => {\n\t\t\t\tassignedTo.add(name);\n\t\t\t});\n\t\t}\n\t});\n\n\twalk(ast, {\n\t\tenter(node, parent) {\n\t\t\tif (sourceMap) {\n\t\t\t\tmagicString.addSourcemapLocation(node.start);\n\t\t\t\tmagicString.addSourcemapLocation(node.end);\n\t\t\t}\n\n\t\t\t// skip dead branches\n\t\t\tif (parent && (parent.type === 'IfStatement' || parent.type === 'ConditionalExpression')) {\n\t\t\t\tif (node === parent.consequent && isFalsy(parent.test)) return this.skip();\n\t\t\t\tif (node === parent.alternate && isTruthy(parent.test)) return this.skip();\n\t\t\t}\n\n\t\t\tif (node._skip) return this.skip();\n\n\t\t\tprogramDepth += 1;\n\n\t\t\tif (node.scope) scope = node.scope;\n\t\t\tif (functionType.test(node.type)) lexicalDepth += 1;\n\n\t\t\t// if toplevel return, we need to wrap it\n\t\t\tif (node.type === 'ReturnStatement' && lexicalDepth === 0) {\n\t\t\t\tshouldWrap = true;\n\t\t\t}\n\n\t\t\t// rewrite `this` as `commonjsHelpers.commonjsGlobal`\n\t\t\tif (node.type === 'ThisExpression' && lexicalDepth === 0) {\n\t\t\t\tuses.global = true;\n\t\t\t\tif (!ignoreGlobal)\n\t\t\t\t\tmagicString.overwrite(node.start, node.end, `${HELPERS_NAME}.commonjsGlobal`, {\n\t\t\t\t\t\tstoreName: true\n\t\t\t\t\t});\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// rewrite `typeof module`, `typeof module.exports` and `typeof exports` (https://github.com/rollup/rollup-plugin-commonjs/issues/151)\n\t\t\tif (node.type === 'UnaryExpression' && node.operator === 'typeof') {\n\t\t\t\tconst flattened = flatten(node.argument);\n\t\t\t\tif (!flattened) return;\n\n\t\t\t\tif (scope.contains(flattened.name)) return;\n\n\t\t\t\tif (\n\t\t\t\t\tflattened.keypath === 'module.exports' ||\n\t\t\t\t\tflattened.keypath === 'module' ||\n\t\t\t\t\tflattened.keypath === 'exports'\n\t\t\t\t) {\n\t\t\t\t\tmagicString.overwrite(node.start, node.end, `'object'`, { storeName: false });\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// rewrite `require` (if not already handled) `global` and `define`, and handle free references to\n\t\t\t// `module` and `exports` as these mean we need to wrap the module in commonjsHelpers.createCommonjsModule\n\t\t\tif (node.type === 'Identifier') {\n\t\t\t\tif (isReference(node, parent) && !scope.contains(node.name)) {\n\t\t\t\t\tif (node.name in uses) {\n\t\t\t\t\t\tif (node.name === 'require') {\n\t\t\t\t\t\t\tif (allowDynamicRequire) return;\n\t\t\t\t\t\t\tmagicString.overwrite(node.start, node.end, `${HELPERS_NAME}.commonjsRequire`, {\n\t\t\t\t\t\t\t\tstoreName: true\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tuses[node.name] = true;\n\t\t\t\t\t\tif (node.name === 'global' && !ignoreGlobal) {\n\t\t\t\t\t\t\tmagicString.overwrite(node.start, node.end, `${HELPERS_NAME}.commonjsGlobal`, {\n\t\t\t\t\t\t\t\tstoreName: true\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// if module or exports are used outside the context of an assignment\n\t\t\t\t\t\t// expression, we need to wrap the module\n\t\t\t\t\t\tif (node.name === 'module' || node.name === 'exports') {\n\t\t\t\t\t\t\tshouldWrap = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tif (node.name === 'define') {\n\t\t\t\t\t\tmagicString.overwrite(node.start, node.end, 'undefined', { storeName: true });\n\t\t\t\t\t}\n\n\t\t\t\t\tglobals.add(node.name);\n\t\t\t\t}\n\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Is this an assignment to exports or module.exports?\n\t\t\tif (node.type === 'AssignmentExpression') {\n\t\t\t\tif (node.left.type !== 'MemberExpression') return;\n\n\t\t\t\tconst flattened = flatten(node.left);\n\t\t\t\tif (!flattened) return;\n\n\t\t\t\tif (scope.contains(flattened.name)) return;\n\n\t\t\t\tconst match = exportsPattern.exec(flattened.keypath);\n\t\t\t\tif (!match || flattened.keypath === 'exports') return;\n\n\t\t\t\tuses[flattened.name] = true;\n\n\t\t\t\t// we're dealing with `module.exports = ...` or `[module.]exports.foo = ...` –\n\t\t\t\t// if this isn't top-level, we'll need to wrap the module\n\t\t\t\tif (programDepth > 3) shouldWrap = true;\n\n\t\t\t\tnode.left._skip = true;\n\n\t\t\t\tif (flattened.keypath === 'module.exports' && node.right.type === 'ObjectExpression') {\n\t\t\t\t\treturn node.right.properties.forEach(prop => {\n\t\t\t\t\t\tif (prop.computed || prop.key.type !== 'Identifier') return;\n\t\t\t\t\t\tconst name = prop.key.name;\n\t\t\t\t\t\tif (name === makeLegalIdentifier(name)) namedExports[name] = true;\n\t\t\t\t\t});\n\t\t\t\t}\n\n\t\t\t\tif (match[1]) namedExports[match[1]] = true;\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// if this is `var x = require('x')`, we can do `import x from 'x'`\n\t\t\tif (\n\t\t\t\tnode.type === 'VariableDeclarator' &&\n\t\t\t\tnode.id.type === 'Identifier' &&\n\t\t\t\tisStaticRequireStatement(node.init)\n\t\t\t) {\n\t\t\t\t// for now, only do this for top-level requires. maybe fix this in future\n\t\t\t\tif (scope.parent) return;\n\n\t\t\t\t// edge case — CJS allows you to assign to imports. ES doesn't\n\t\t\t\tif (assignedTo.has(node.id.name)) return;\n\n\t\t\t\tconst required = getRequired(node.init, node.id.name);\n\t\t\t\trequired.importsDefault = true;\n\n\t\t\t\tif (required.name === node.id.name) {\n\t\t\t\t\tnode._shouldRemove = true;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif (!isStaticRequireStatement(node)) return;\n\n\t\t\tconst required = getRequired(node);\n\n\t\t\tif (parent.type === 'ExpressionStatement') {\n\t\t\t\t// is a bare import, e.g. `require('foo');`\n\t\t\t\tmagicString.remove(parent.start, parent.end);\n\t\t\t} else {\n\t\t\t\trequired.importsDefault = true;\n\t\t\t\tmagicString.overwrite(node.start, node.end, required.name);\n\t\t\t}\n\n\t\t\tnode.callee._skip = true;\n\t\t},\n\n\t\tleave(node) {\n\t\t\tprogramDepth -= 1;\n\t\t\tif (node.scope) scope = scope.parent;\n\t\t\tif (functionType.test(node.type)) lexicalDepth -= 1;\n\n\t\t\tif (node.type === 'VariableDeclaration') {\n\t\t\t\tlet keepDeclaration = false;\n\t\t\t\tlet c = node.declarations[0].start;\n\n\t\t\t\tfor (let i = 0; i < node.declarations.length; i += 1) {\n\t\t\t\t\tconst declarator = node.declarations[i];\n\n\t\t\t\t\tif (declarator._shouldRemove) {\n\t\t\t\t\t\tmagicString.remove(c, declarator.end);\n\t\t\t\t\t} else {\n\t\t\t\t\t\tif (!keepDeclaration) {\n\t\t\t\t\t\t\tmagicString.remove(c, declarator.start);\n\t\t\t\t\t\t\tkeepDeclaration = true;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tc = declarator.end;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tif (!keepDeclaration) {\n\t\t\t\t\tmagicString.remove(node.start, node.end);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t});\n\n\tif (\n\t\t!sources.length &&\n\t\t!uses.module &&\n\t\t!uses.exports &&\n\t\t!uses.require &&\n\t\t(ignoreGlobal || !uses.global)\n\t) {\n\t\tif (Object.keys(namedExports).length) {\n\t\t\tthrow new Error(\n\t\t\t\t`Custom named exports were specified for ${id} but it does not appear to be a CommonJS module`\n\t\t\t);\n\t\t}\n\t\treturn null; // not a CommonJS module\n\t}\n\n\tconst includeHelpers = shouldWrap || uses.global || uses.require;\n\tconst importBlock =\n\t\t(includeHelpers ? [`import * as ${HELPERS_NAME} from '${HELPERS_ID}';`] : [])\n\t\t\t.concat(\n\t\t\t\tsources.map(source => {\n\t\t\t\t\t// import the actual module before the proxy, so that we know\n\t\t\t\t\t// what kind of proxy to build\n\t\t\t\t\treturn `import '${source}';`;\n\t\t\t\t}),\n\t\t\t\tsources.map(source => {\n\t\t\t\t\tconst { name, importsDefault } = required[source];\n\t\t\t\t\treturn `import ${importsDefault ? `${name} from ` : ``}'${getProxyId(source)}';`;\n\t\t\t\t})\n\t\t\t)\n\t\t\t.join('\\n') + '\\n\\n';\n\n\tconst namedExportDeclarations = [];\n\tlet wrapperStart = '';\n\tlet wrapperEnd = '';\n\n\tconst moduleName = deconflict(scope, globals, getName(id));\n\tif (!isEntry) {\n\t\tconst exportModuleExports = {\n\t\t\tstr: `export { ${moduleName} as __moduleExports };`,\n\t\t\tname: '__moduleExports'\n\t\t};\n\n\t\tnamedExportDeclarations.push(exportModuleExports);\n\t}\n\n\tconst name = getName(id);\n\n\tfunction addExport(x) {\n\t\tconst deconflicted = deconflict(scope, globals, name);\n\n\t\tconst declaration =\n\t\t\tdeconflicted === name\n\t\t\t\t? `export var ${x} = ${moduleName}.${x};`\n\t\t\t\t: `var ${deconflicted} = ${moduleName}.${x};\\nexport { ${deconflicted} as ${x} };`;\n\n\t\tnamedExportDeclarations.push({\n\t\t\tstr: declaration,\n\t\t\tname: x\n\t\t});\n\t}\n\n\tif (customNamedExports) customNamedExports.forEach(addExport);\n\n\tconst defaultExportPropertyAssignments = [];\n\tlet hasDefaultExport = false;\n\n\tif (shouldWrap) {\n\t\tconst args = `module${uses.exports ? ', exports' : ''}`;\n\n\t\twrapperStart = `var ${moduleName} = ${HELPERS_NAME}.createCommonjsModule(function (${args}) {\\n`;\n\t\twrapperEnd = `\\n});`;\n\t} else {\n\t\tconst names = [];\n\n\t\tast.body.forEach(node => {\n\t\t\tif (node.type === 'ExpressionStatement' && node.expression.type === 'AssignmentExpression') {\n\t\t\t\tconst left = node.expression.left;\n\t\t\t\tconst flattened = flatten(left);\n\n\t\t\t\tif (!flattened) return;\n\n\t\t\t\tconst match = exportsPattern.exec(flattened.keypath);\n\t\t\t\tif (!match) return;\n\n\t\t\t\tif (flattened.keypath === 'module.exports') {\n\t\t\t\t\thasDefaultExport = true;\n\t\t\t\t\tmagicString.overwrite(left.start, left.end, `var ${moduleName}`);\n\t\t\t\t} else {\n\t\t\t\t\tconst name = match[1];\n\t\t\t\t\tconst deconflicted = deconflict(scope, globals, name);\n\n\t\t\t\t\tnames.push({ name, deconflicted });\n\n\t\t\t\t\tmagicString.overwrite(node.start, left.end, `var ${deconflicted}`);\n\n\t\t\t\t\tconst declaration =\n\t\t\t\t\t\tname === deconflicted\n\t\t\t\t\t\t\t? `export { ${name} };`\n\t\t\t\t\t\t\t: `export { ${deconflicted} as ${name} };`;\n\n\t\t\t\t\tif (name !== 'default') {\n\t\t\t\t\t\tnamedExportDeclarations.push({\n\t\t\t\t\t\t\tstr: declaration,\n\t\t\t\t\t\t\tname\n\t\t\t\t\t\t});\n\t\t\t\t\t\tdelete namedExports[name];\n\t\t\t\t\t}\n\n\t\t\t\t\tdefaultExportPropertyAssignments.push(`${moduleName}.${name} = ${deconflicted};`);\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\n\t\tif (!hasDefaultExport) {\n\t\t\twrapperEnd = `\\n\\nvar ${moduleName} = {\\n${names\n\t\t\t\t.map(({ name, deconflicted }) => `\\t${name}: ${deconflicted}`)\n\t\t\t\t.join(',\\n')}\\n};`;\n\t\t}\n\t}\n\tObject.keys(namedExports)\n\t\t.filter(key => !blacklist[key])\n\t\t.forEach(addExport);\n\n\tconst defaultExport = /__esModule/.test(code)\n\t\t? `export default ${HELPERS_NAME}.unwrapExports(${moduleName});`\n\t\t: `export default ${moduleName};`;\n\n\tconst named = namedExportDeclarations\n\t\t.filter(x => x.name !== 'default' || !hasDefaultExport)\n\t\t.map(x => x.str);\n\n\tconst exportBlock =\n\t\t'\\n\\n' +\n\t\t[defaultExport]\n\t\t\t.concat(named)\n\t\t\t.concat(hasDefaultExport ? defaultExportPropertyAssignments : [])\n\t\t\t.join('\\n');\n\n\tmagicString\n\t\t.trim()\n\t\t.prepend(importBlock + wrapperStart)\n\t\t.trim()\n\t\t.append(wrapperEnd + exportBlock);\n\n\tcode = magicString.toString();\n\tconst map = sourceMap ? magicString.generateMap() : null;\n\n\treturn { code, map };\n}\n","import { realpathSync, existsSync } from 'fs';\nimport { extname, resolve } from 'path';\nimport { sync as nodeResolveSync, isCore } from 'resolve';\nimport { createFilter } from 'rollup-pluginutils';\nimport { peerDependencies } from '../package.json';\nimport {\n\tEXTERNAL_SUFFIX,\n\tgetIdFromExternalProxyId,\n\tgetIdFromProxyId,\n\tHELPERS,\n\tHELPERS_ID,\n\tPROXY_SUFFIX\n} from './helpers';\nimport { getIsCjsPromise, setIsCjsPromise } from './is-cjs';\nimport { getResolveId } from './resolve-id';\nimport { checkEsModule, hasCjsKeywords, transformCommonjs } from './transform.js';\nimport { getName } from './utils.js';\n\nexport default function commonjs(options = {}) {\n\tconst extensions = options.extensions || ['.js'];\n\tconst filter = createFilter(options.include, options.exclude);\n\tconst ignoreGlobal = options.ignoreGlobal;\n\n\tconst customNamedExports = {};\n\tif (options.namedExports) {\n\t\tObject.keys(options.namedExports).forEach(id => {\n\t\t\tlet resolveId = id;\n\t\t\tlet resolvedId;\n\n\t\t\tif (isCore(id)) {\n\t\t\t\t// resolve will not find npm modules with the same name as\n\t\t\t\t// core modules without a trailing slash. Since core modules\n\t\t\t\t// must be external, we can assume any core modules defined\n\t\t\t\t// here are npm modules by that name.\n\t\t\t\tresolveId += '/';\n\t\t\t}\n\n\t\t\ttry {\n\t\t\t\tresolvedId = nodeResolveSync(resolveId, { basedir: process.cwd() });\n\t\t\t} catch (err) {\n\t\t\t\tresolvedId = resolve(id);\n\t\t\t}\n\t\t\tcustomNamedExports[resolvedId] = options.namedExports[id];\n\n\t\t\tif (existsSync(resolvedId)) {\n\t\t\t\tconst realpath = realpathSync(resolvedId);\n\t\t\t\tif (realpath !== resolvedId) {\n\t\t\t\t\tcustomNamedExports[realpath] = options.namedExports[id];\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t}\n\n\tconst esModulesWithoutDefaultExport = new Set();\n\tconst esModulesWithDefaultExport = new Set();\n\tconst allowDynamicRequire = !!options.ignore; // TODO maybe this should be configurable?\n\n\tconst ignoreRequire =\n\t\ttypeof options.ignore === 'function'\n\t\t\t? options.ignore\n\t\t\t: Array.isArray(options.ignore)\n\t\t\t\t? id => options.ignore.includes(id)\n\t\t\t\t: () => false;\n\n\tconst resolveId = getResolveId(extensions);\n\n\tconst sourceMap = options.sourceMap !== false;\n\n\tfunction transformAndCheckExports(code, id) {\n\t\t{\n\t\t\tconst { isEsModule, hasDefaultExport, ast } = checkEsModule(this.parse, code, id);\n\t\t\tif (isEsModule) {\n\t\t\t\t(hasDefaultExport ? esModulesWithDefaultExport : esModulesWithoutDefaultExport).add(id);\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\t// it is not an ES module but it does not have CJS-specific elements.\n\t\t\tif (!hasCjsKeywords(code, ignoreGlobal)) {\n\t\t\t\tesModulesWithoutDefaultExport.add(id);\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\tconst transformed = transformCommonjs(\n\t\t\t\tthis.parse,\n\t\t\t\tcode,\n\t\t\t\tid,\n\t\t\t\tthis.getModuleInfo(id).isEntry,\n\t\t\t\tignoreGlobal,\n\t\t\t\tignoreRequire,\n\t\t\t\tcustomNamedExports[id],\n\t\t\t\tsourceMap,\n\t\t\t\tallowDynamicRequire,\n\t\t\t\tast\n\t\t\t);\n\t\t\tif (!transformed) {\n\t\t\t\tesModulesWithoutDefaultExport.add(id);\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\treturn transformed;\n\t\t}\n\t}\n\n\treturn {\n\t\tname: 'commonjs',\n\n\t\tbuildStart() {\n\t\t\tconst [major, minor] = this.meta.rollupVersion.split('.').map(Number);\n\t\t\tconst minVersion = peerDependencies.rollup.slice(2);\n\t\t\tconst [minMajor, minMinor] = minVersion.split('.').map(Number);\n\t\t\tif (major < minMajor || (major === minMajor && minor < minMinor)) {\n\t\t\t\tthis.error(\n\t\t\t\t\t`Insufficient Rollup version: \"rollup-plugin-commonjs\" requires at least rollup@${minVersion} but found rollup@${this.meta.rollupVersion}.`\n\t\t\t\t);\n\t\t\t}\n\t\t},\n\n\t\tresolveId,\n\n\t\tload(id) {\n\t\t\tif (id === HELPERS_ID) return HELPERS;\n\n\t\t\t// generate proxy modules\n\t\t\tif (id.endsWith(EXTERNAL_SUFFIX)) {\n\t\t\t\tconst actualId = getIdFromExternalProxyId(id);\n\t\t\t\tconst name = getName(actualId);\n\n\t\t\t\treturn `import ${name} from ${JSON.stringify(actualId)}; export default ${name};`;\n\t\t\t}\n\n\t\t\tif (id.endsWith(PROXY_SUFFIX)) {\n\t\t\t\tconst actualId = getIdFromProxyId(id);\n\t\t\t\tconst name = getName(actualId);\n\n\t\t\t\treturn getIsCjsPromise(actualId).then(isCjs => {\n\t\t\t\t\tif (isCjs)\n\t\t\t\t\t\treturn `import { __moduleExports } from ${JSON.stringify(\n\t\t\t\t\t\t\tactualId\n\t\t\t\t\t\t)}; export default __moduleExports;`;\n\t\t\t\t\telse if (esModulesWithoutDefaultExport.has(actualId))\n\t\t\t\t\t\treturn `import * as ${name} from ${JSON.stringify(actualId)}; export default ${name};`;\n\t\t\t\t\telse if (esModulesWithDefaultExport.has(actualId)) {\n\t\t\t\t\t\treturn `export {default} from ${JSON.stringify(actualId)};`;\n\t\t\t\t\t} else\n\t\t\t\t\t\treturn `import * as ${name} from ${JSON.stringify(\n\t\t\t\t\t\t\tactualId\n\t\t\t\t\t\t)}; import {getCjsExportFromNamespace} from \"${HELPERS_ID}\"; export default getCjsExportFromNamespace(${name})`;\n\t\t\t\t});\n\t\t\t}\n\t\t},\n\n\t\ttransform(code, id) {\n\t\t\tif (!filter(id) || extensions.indexOf(extname(id)) === -1) {\n\t\t\t\tsetIsCjsPromise(id, null);\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\tlet transformed;\n\t\t\ttry {\n\t\t\t\ttransformed = transformAndCheckExports.call(this, code, id);\n\t\t\t} catch (err) {\n\t\t\t\ttransformed = null;\n\t\t\t\tthis.error(err, err.loc);\n\t\t\t}\n\n\t\t\tsetIsCjsPromise(id, Boolean(transformed));\n\t\t\treturn transformed;\n\t\t}\n\t};\n}\n"],"names":["PROXY_SUFFIX","getProxyId","id","getIdFromProxyId","proxyId","slice","length","EXTERNAL_SUFFIX","getExternalProxyId","getIdFromExternalProxyId","HELPERS_ID","HELPERS","isCjsPromises","Map","getIsCjsPromise","isCjsPromise","get","promise","Promise","resolve","undefined","set","setIsCjsPromise","resolution","getCandidatesForExtension","resolved","extension","sep","getCandidates","extensions","reduce","paths","concat","getResolveId","resolveExtensions","importee","importer","dirname","candidates","i","stats","statSync","isFile","err","resolveId","isProxyModule","endsWith","startsWith","skipSelf","then","external","flatten","node","parts","type","computed","unshift","property","name","object","keypath","join","isTruthy","value","expression","operator","operators","isFalsy","not","equals","a","b","strict","x","left","right","argument","getName","makeLegalIdentifier","basename","extname","segments","split","reserved","blacklist","__esModule","forEach","word","exportsPattern","firstpassGlobal","firstpassNoGlobal","importExportDeclaration","functionType","deconflict","scope","globals","identifier","deconflicted","contains","has","declarations","tryParse","parse","code","allowReturnOutsideFunction","message","hasCjsKeywords","ignoreGlobal","firstpass","test","checkEsModule","ast","isEsModule","body","hasDefaultExport","specifiers","specifier","exported","transformCommonjs","isEntry","ignoreRequire","customNamedExports","sourceMap","allowDynamicRequire","astCache","magicString","MagicString","required","sources","uid","attachScopes","uses","module","exports","global","require","lexicalDepth","programDepth","Set","HELPERS_NAME","namedExports","shouldWrap","isRequireStatement","callee","arguments","hasDynamicArguments","expressions","isStaticRequireStatement","getRequireStringArg","quasis","cooked","getRequired","sourceId","existing","push","source","importsDefault","assignedTo","walk","enter","extractAssignedNames","add","parent","addSourcemapLocation","start","end","consequent","skip","alternate","_skip","overwrite","storeName","flattened","isReference","match","exec","properties","prop","key","init","_shouldRemove","remove","leave","keepDeclaration","c","declarator","Object","keys","Error","includeHelpers","importBlock","map","namedExportDeclarations","wrapperStart","wrapperEnd","moduleName","exportModuleExports","str","addExport","declaration","defaultExportPropertyAssignments","args","names","filter","defaultExport","named","exportBlock","trim","prepend","append","toString","generateMap","commonjs","options","createFilter","include","exclude","resolvedId","isCore","nodeResolveSync","basedir","process","cwd","existsSync","realpath","realpathSync","esModulesWithoutDefaultExport","esModulesWithDefaultExport","ignore","Array","isArray","includes","transformAndCheckExports","transformed","getModuleInfo","buildStart","meta","rollupVersion","Number","major","minor","minVersion","peerDependencies","rollup","minMajor","minMinor","error","load","actualId","JSON","stringify","isCjs","transform","indexOf","call","loc","Boolean"],"mappings":"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"}
1
+ {"version":3,"file":"rollup-plugin-commonjs.es.js","sources":["../src/helpers.js","../src/is-cjs.js","../src/resolve-id.js","../src/ast-utils.js","../src/utils.js","../src/transform.js","../src/index.js"],"sourcesContent":["export const PROXY_SUFFIX = '?commonjs-proxy';\nexport const getProxyId = id => `\\0${id}${PROXY_SUFFIX}`;\nexport const getIdFromProxyId = proxyId => proxyId.slice(1, -PROXY_SUFFIX.length);\n\nexport const EXTERNAL_SUFFIX = '?commonjs-external';\nexport const getExternalProxyId = id => `\\0${id}${EXTERNAL_SUFFIX}`;\nexport const getIdFromExternalProxyId = proxyId => proxyId.slice(1, -EXTERNAL_SUFFIX.length);\n\nexport const HELPERS_ID = '\\0commonjsHelpers.js';\n\n// `x['default']` is used instead of `x.default` for backward compatibility with ES3 browsers.\n// Minifiers like uglify will usually transpile it back if compatibility with ES3 is not enabled.\nexport const HELPERS = `\nexport var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};\n\nexport function commonjsRequire () {\n\tthrow new Error('Dynamic requires are not currently supported by rollup-plugin-commonjs');\n}\n\nexport function unwrapExports (x) {\n\treturn x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x;\n}\n\nexport function createCommonjsModule(fn, module) {\n\treturn module = { exports: {} }, fn(module, module.exports), module.exports;\n}\n\nexport function getCjsExportFromNamespace (n) {\n\treturn n && n['default'] || n;\n}`;\n","const isCjsPromises = new Map();\n\nexport function getIsCjsPromise(id) {\n\tlet isCjsPromise = isCjsPromises.get(id);\n\tif (isCjsPromise) return isCjsPromise.promise;\n\n\tconst promise = new Promise(resolve => {\n\t\tisCjsPromise = {\n\t\t\tresolve,\n\t\t\tpromise: undefined\n\t\t};\n\t\tisCjsPromises.set(id, isCjsPromise);\n\t});\n\tisCjsPromise.promise = promise;\n\n\treturn promise;\n}\n\nexport function setIsCjsPromise(id, resolution) {\n\tconst isCjsPromise = isCjsPromises.get(id);\n\tif (isCjsPromise) {\n\t\tif (isCjsPromise.resolve) {\n\t\t\tisCjsPromise.resolve(resolution);\n\t\t\tisCjsPromise.resolve = undefined;\n\t\t}\n\t} else {\n\t\tisCjsPromises.set(id, { promise: Promise.resolve(resolution), resolve: undefined });\n\t}\n}\n","import { statSync } from 'fs';\nimport { dirname, resolve, sep } from 'path';\nimport {\n\tgetExternalProxyId,\n\tgetIdFromProxyId,\n\tgetProxyId,\n\tHELPERS_ID,\n\tPROXY_SUFFIX\n} from './helpers';\n\nfunction getCandidatesForExtension(resolved, extension) {\n\treturn [resolved + extension, resolved + `${sep}index${extension}`];\n}\n\nfunction getCandidates(resolved, extensions) {\n\treturn extensions.reduce(\n\t\t(paths, extension) => paths.concat(getCandidatesForExtension(resolved, extension)),\n\t\t[resolved]\n\t);\n}\n\nexport function getResolveId(extensions) {\n\tfunction resolveExtensions(importee, importer) {\n\t\tif (importee[0] !== '.' || !importer) return; // not our problem\n\n\t\tconst resolved = resolve(dirname(importer), importee);\n\t\tconst candidates = getCandidates(resolved, extensions);\n\n\t\tfor (let i = 0; i < candidates.length; i += 1) {\n\t\t\ttry {\n\t\t\t\tconst stats = statSync(candidates[i]);\n\t\t\t\tif (stats.isFile()) return { id: candidates[i] };\n\t\t\t} catch (err) {\n\t\t\t\t/* noop */\n\t\t\t}\n\t\t}\n\t}\n\n\tfunction resolveId(importee, importer) {\n\t\tconst isProxyModule = importee.endsWith(PROXY_SUFFIX);\n\t\tif (isProxyModule) {\n\t\t\timportee = getIdFromProxyId(importee);\n\t\t} else if (importee.startsWith('\\0')) {\n\t\t\tif (importee === HELPERS_ID) {\n\t\t\t\treturn importee;\n\t\t\t}\n\t\t\treturn null;\n\t\t}\n\n\t\tif (importer && importer.endsWith(PROXY_SUFFIX)) {\n\t\t\timporter = getIdFromProxyId(importer);\n\t\t}\n\n\t\treturn this.resolve(importee, importer, { skipSelf: true }).then(resolved => {\n\t\t\tif (!resolved) {\n\t\t\t\tresolved = resolveExtensions(importee, importer);\n\t\t\t}\n\t\t\tif (isProxyModule) {\n\t\t\t\tif (!resolved) {\n\t\t\t\t\treturn { id: getExternalProxyId(importee), external: false };\n\t\t\t\t}\n\t\t\t\tresolved.id = (resolved.external ? getExternalProxyId : getProxyId)(resolved.id);\n\t\t\t\tresolved.external = false;\n\t\t\t\treturn resolved;\n\t\t\t}\n\t\t\treturn resolved;\n\t\t});\n\t}\n\n\treturn resolveId;\n}\n","export { default as isReference } from 'is-reference';\n\nexport function flatten(node) {\n\tconst parts = [];\n\n\twhile (node.type === 'MemberExpression') {\n\t\tif (node.computed) return null;\n\n\t\tparts.unshift(node.property.name);\n\t\tnode = node.object;\n\t}\n\n\tif (node.type !== 'Identifier') return null;\n\n\tconst name = node.name;\n\tparts.unshift(name);\n\n\treturn { name, keypath: parts.join('.') };\n}\n\nexport function isTruthy(node) {\n\tif (node.type === 'Literal') return !!node.value;\n\tif (node.type === 'ParenthesizedExpression') return isTruthy(node.expression);\n\tif (node.operator in operators) return operators[node.operator](node);\n}\n\nexport function isFalsy(node) {\n\treturn not(isTruthy(node));\n}\n\nfunction not(value) {\n\treturn value === undefined ? value : !value;\n}\n\nfunction equals(a, b, strict) {\n\tif (a.type !== b.type) return undefined;\n\tif (a.type === 'Literal') return strict ? a.value === b.value : a.value == b.value;\n}\n\nconst operators = {\n\t'==': x => {\n\t\treturn equals(x.left, x.right, false);\n\t},\n\n\t'!=': x => not(operators['=='](x)),\n\n\t'===': x => {\n\t\treturn equals(x.left, x.right, true);\n\t},\n\n\t'!==': x => not(operators['==='](x)),\n\n\t'!': x => isFalsy(x.argument),\n\n\t'&&': x => isTruthy(x.left) && isTruthy(x.right),\n\n\t'||': x => isTruthy(x.left) || isTruthy(x.right)\n};\n","import { basename, dirname, extname, sep } from 'path';\nimport { makeLegalIdentifier } from 'rollup-pluginutils';\n\nexport function getName(id) {\n\tconst name = makeLegalIdentifier(basename(id, extname(id)));\n\tif (name !== 'index') {\n\t\treturn name;\n\t} else {\n\t\tconst segments = dirname(id).split(sep);\n\t\treturn makeLegalIdentifier(segments[segments.length - 1]);\n\t}\n}\n\n// Return the first non-falsy result from an array of\n// maybe-sync, maybe-promise-returning functions\nexport function first(candidates) {\n\treturn function(...args) {\n\t\treturn candidates.reduce((promise, candidate) => {\n\t\t\treturn promise.then(result =>\n\t\t\t\tresult != null ? result : Promise.resolve(candidate.call(this, ...args))\n\t\t\t);\n\t\t}, Promise.resolve());\n\t};\n}\n","import { walk } from 'estree-walker';\nimport MagicString from 'magic-string';\nimport { attachScopes, extractAssignedNames, makeLegalIdentifier } from 'rollup-pluginutils';\nimport { flatten, isFalsy, isReference, isTruthy } from './ast-utils.js';\nimport { getProxyId, HELPERS_ID } from './helpers';\nimport { getName } from './utils.js';\n\nconst reserved = 'process location abstract arguments boolean break byte case catch char class const continue debugger default delete do double else enum eval export extends false final finally float for from function goto if implements import in instanceof int interface let long native new null package private protected public return short static super switch synchronized this throw throws transient true try typeof var void volatile while with yield'.split(\n\t' '\n);\nconst blacklist = { __esModule: true };\nreserved.forEach(word => (blacklist[word] = true));\n\nconst exportsPattern = /^(?:module\\.)?exports(?:\\.([a-zA-Z_$][a-zA-Z_$0-9]*))?$/;\n\nconst firstpassGlobal = /\\b(?:require|module|exports|global)\\b/;\nconst firstpassNoGlobal = /\\b(?:require|module|exports)\\b/;\nconst importExportDeclaration = /^(?:Import|Export(?:Named|Default))Declaration/;\nconst functionType = /^(?:FunctionDeclaration|FunctionExpression|ArrowFunctionExpression)$/;\n\nfunction deconflict(scope, globals, identifier) {\n\tlet i = 1;\n\tlet deconflicted = identifier;\n\n\twhile (scope.contains(deconflicted) || globals.has(deconflicted) || deconflicted in blacklist)\n\t\tdeconflicted = `${identifier}_${i++}`;\n\tscope.declarations[deconflicted] = true;\n\n\treturn deconflicted;\n}\n\nfunction tryParse(parse, code, id) {\n\ttry {\n\t\treturn parse(code, { allowReturnOutsideFunction: true });\n\t} catch (err) {\n\t\terr.message += ` in ${id}`;\n\t\tthrow err;\n\t}\n}\n\nexport function hasCjsKeywords(code, ignoreGlobal) {\n\tconst firstpass = ignoreGlobal ? firstpassNoGlobal : firstpassGlobal;\n\treturn firstpass.test(code);\n}\n\nexport function checkEsModule(parse, code, id) {\n\tconst ast = tryParse(parse, code, id);\n\n\tlet isEsModule = false;\n\tfor (const node of ast.body) {\n\t\tif (node.type === 'ExportDefaultDeclaration')\n\t\t\treturn { isEsModule: true, hasDefaultExport: true, ast };\n\t\tif (node.type === 'ExportNamedDeclaration') {\n\t\t\tisEsModule = true;\n\t\t\tfor (const specifier of node.specifiers) {\n\t\t\t\tif (specifier.exported.name === 'default') {\n\t\t\t\t\treturn { isEsModule: true, hasDefaultExport: true, ast };\n\t\t\t\t}\n\t\t\t}\n\t\t} else if (importExportDeclaration.test(node.type)) isEsModule = true;\n\t}\n\n\treturn { isEsModule, hasDefaultExport: false, ast };\n}\n\nexport function transformCommonjs(\n\tparse,\n\tcode,\n\tid,\n\tisEntry,\n\tignoreGlobal,\n\tignoreRequire,\n\tcustomNamedExports,\n\tsourceMap,\n\tallowDynamicRequire,\n\tastCache\n) {\n\tconst ast = astCache || tryParse(parse, code, id);\n\n\tconst magicString = new MagicString(code);\n\n\tconst required = {};\n\t// Because objects have no guaranteed ordering, yet we need it,\n\t// we need to keep track of the order in a array\n\tconst sources = [];\n\n\tlet uid = 0;\n\n\tlet scope = attachScopes(ast, 'scope');\n\tconst uses = { module: false, exports: false, global: false, require: false };\n\n\tlet lexicalDepth = 0;\n\tlet programDepth = 0;\n\n\tconst globals = new Set();\n\n\tconst HELPERS_NAME = deconflict(scope, globals, 'commonjsHelpers'); // TODO technically wrong since globals isn't populated yet, but ¯\\_(ツ)_/¯\n\n\tconst namedExports = {};\n\n\t// TODO handle transpiled modules\n\tlet shouldWrap = /__esModule/.test(code);\n\n\tfunction isRequireStatement(node) {\n\t\tif (!node) return;\n\t\tif (node.type !== 'CallExpression') return;\n\t\tif (node.callee.name !== 'require' || scope.contains('require')) return;\n\t\tif (node.arguments.length === 0) return; // Weird case of require() without arguments\n\t\treturn true;\n\t}\n\n\tfunction hasDynamicArguments(node) {\n\t\treturn (\n\t\t\tnode.arguments.length > 1 ||\n\t\t\t(node.arguments[0].type !== 'Literal' &&\n\t\t\t\t(node.arguments[0].type !== 'TemplateLiteral' || node.arguments[0].expressions.length > 0))\n\t\t);\n\t}\n\n\tfunction isStaticRequireStatement(node) {\n\t\tif (!isRequireStatement(node)) return;\n\t\tif (hasDynamicArguments(node)) return;\n\t\tif (ignoreRequire(node.arguments[0].value)) return;\n\t\treturn true;\n\t}\n\n\tfunction getRequireStringArg(node) {\n\t\treturn node.arguments[0].type === 'Literal'\n\t\t\t? node.arguments[0].value\n\t\t\t: node.arguments[0].quasis[0].value.cooked;\n\t}\n\n\tfunction getRequired(node, name) {\n\t\tconst sourceId = getRequireStringArg(node);\n\t\tconst existing = required[sourceId];\n\t\tif (existing === undefined) {\n\t\t\tif (!name) {\n\t\t\t\tdo name = `require$$${uid++}`;\n\t\t\t\twhile (scope.contains(name));\n\t\t\t}\n\n\t\t\tsources.push(sourceId);\n\t\t\trequired[sourceId] = { source: sourceId, name, importsDefault: false };\n\t\t}\n\n\t\treturn required[sourceId];\n\t}\n\n\t// do a first pass, see which names are assigned to. This is necessary to prevent\n\t// illegally replacing `var foo = require('foo')` with `import foo from 'foo'`,\n\t// where `foo` is later reassigned. (This happens in the wild. CommonJS, sigh)\n\tconst assignedTo = new Set();\n\twalk(ast, {\n\t\tenter(node) {\n\t\t\tif (node.type !== 'AssignmentExpression') return;\n\t\t\tif (node.left.type === 'MemberExpression') return;\n\n\t\t\textractAssignedNames(node.left).forEach(name => {\n\t\t\t\tassignedTo.add(name);\n\t\t\t});\n\t\t}\n\t});\n\n\twalk(ast, {\n\t\tenter(node, parent) {\n\t\t\tif (sourceMap) {\n\t\t\t\tmagicString.addSourcemapLocation(node.start);\n\t\t\t\tmagicString.addSourcemapLocation(node.end);\n\t\t\t}\n\n\t\t\t// skip dead branches\n\t\t\tif (parent && (parent.type === 'IfStatement' || parent.type === 'ConditionalExpression')) {\n\t\t\t\tif (node === parent.consequent && isFalsy(parent.test)) return this.skip();\n\t\t\t\tif (node === parent.alternate && isTruthy(parent.test)) return this.skip();\n\t\t\t}\n\n\t\t\tif (node._skip) return this.skip();\n\n\t\t\tprogramDepth += 1;\n\n\t\t\tif (node.scope) scope = node.scope;\n\t\t\tif (functionType.test(node.type)) lexicalDepth += 1;\n\n\t\t\t// if toplevel return, we need to wrap it\n\t\t\tif (node.type === 'ReturnStatement' && lexicalDepth === 0) {\n\t\t\t\tshouldWrap = true;\n\t\t\t}\n\n\t\t\t// rewrite `this` as `commonjsHelpers.commonjsGlobal`\n\t\t\tif (node.type === 'ThisExpression' && lexicalDepth === 0) {\n\t\t\t\tuses.global = true;\n\t\t\t\tif (!ignoreGlobal)\n\t\t\t\t\tmagicString.overwrite(node.start, node.end, `${HELPERS_NAME}.commonjsGlobal`, {\n\t\t\t\t\t\tstoreName: true\n\t\t\t\t\t});\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// rewrite `typeof module`, `typeof module.exports` and `typeof exports` (https://github.com/rollup/rollup-plugin-commonjs/issues/151)\n\t\t\tif (node.type === 'UnaryExpression' && node.operator === 'typeof') {\n\t\t\t\tconst flattened = flatten(node.argument);\n\t\t\t\tif (!flattened) return;\n\n\t\t\t\tif (scope.contains(flattened.name)) return;\n\n\t\t\t\tif (\n\t\t\t\t\tflattened.keypath === 'module.exports' ||\n\t\t\t\t\tflattened.keypath === 'module' ||\n\t\t\t\t\tflattened.keypath === 'exports'\n\t\t\t\t) {\n\t\t\t\t\tmagicString.overwrite(node.start, node.end, `'object'`, { storeName: false });\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// rewrite `require` (if not already handled) `global` and `define`, and handle free references to\n\t\t\t// `module` and `exports` as these mean we need to wrap the module in commonjsHelpers.createCommonjsModule\n\t\t\tif (node.type === 'Identifier') {\n\t\t\t\tif (isReference(node, parent) && !scope.contains(node.name)) {\n\t\t\t\t\tif (node.name in uses) {\n\t\t\t\t\t\tif (node.name === 'require') {\n\t\t\t\t\t\t\tif (allowDynamicRequire) return;\n\t\t\t\t\t\t\tmagicString.overwrite(node.start, node.end, `${HELPERS_NAME}.commonjsRequire`, {\n\t\t\t\t\t\t\t\tstoreName: true\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tuses[node.name] = true;\n\t\t\t\t\t\tif (node.name === 'global' && !ignoreGlobal) {\n\t\t\t\t\t\t\tmagicString.overwrite(node.start, node.end, `${HELPERS_NAME}.commonjsGlobal`, {\n\t\t\t\t\t\t\t\tstoreName: true\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// if module or exports are used outside the context of an assignment\n\t\t\t\t\t\t// expression, we need to wrap the module\n\t\t\t\t\t\tif (node.name === 'module' || node.name === 'exports') {\n\t\t\t\t\t\t\tshouldWrap = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tif (node.name === 'define') {\n\t\t\t\t\t\tmagicString.overwrite(node.start, node.end, 'undefined', { storeName: true });\n\t\t\t\t\t}\n\n\t\t\t\t\tglobals.add(node.name);\n\t\t\t\t}\n\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Is this an assignment to exports or module.exports?\n\t\t\tif (node.type === 'AssignmentExpression') {\n\t\t\t\tif (node.left.type !== 'MemberExpression') return;\n\n\t\t\t\tconst flattened = flatten(node.left);\n\t\t\t\tif (!flattened) return;\n\n\t\t\t\tif (scope.contains(flattened.name)) return;\n\n\t\t\t\tconst match = exportsPattern.exec(flattened.keypath);\n\t\t\t\tif (!match || flattened.keypath === 'exports') return;\n\n\t\t\t\tuses[flattened.name] = true;\n\n\t\t\t\t// we're dealing with `module.exports = ...` or `[module.]exports.foo = ...` –\n\t\t\t\t// if this isn't top-level, we'll need to wrap the module\n\t\t\t\tif (programDepth > 3) shouldWrap = true;\n\n\t\t\t\tnode.left._skip = true;\n\n\t\t\t\tif (flattened.keypath === 'module.exports' && node.right.type === 'ObjectExpression') {\n\t\t\t\t\treturn node.right.properties.forEach(prop => {\n\t\t\t\t\t\tif (prop.computed || prop.key.type !== 'Identifier') return;\n\t\t\t\t\t\tconst name = prop.key.name;\n\t\t\t\t\t\tif (name === makeLegalIdentifier(name)) namedExports[name] = true;\n\t\t\t\t\t});\n\t\t\t\t}\n\n\t\t\t\tif (match[1]) namedExports[match[1]] = true;\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// if this is `var x = require('x')`, we can do `import x from 'x'`\n\t\t\tif (\n\t\t\t\tnode.type === 'VariableDeclarator' &&\n\t\t\t\tnode.id.type === 'Identifier' &&\n\t\t\t\tisStaticRequireStatement(node.init)\n\t\t\t) {\n\t\t\t\t// for now, only do this for top-level requires. maybe fix this in future\n\t\t\t\tif (scope.parent) return;\n\n\t\t\t\t// edge case — CJS allows you to assign to imports. ES doesn't\n\t\t\t\tif (assignedTo.has(node.id.name)) return;\n\n\t\t\t\tconst required = getRequired(node.init, node.id.name);\n\t\t\t\trequired.importsDefault = true;\n\n\t\t\t\tif (required.name === node.id.name) {\n\t\t\t\t\tnode._shouldRemove = true;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif (!isStaticRequireStatement(node)) return;\n\n\t\t\tconst required = getRequired(node);\n\n\t\t\tif (parent.type === 'ExpressionStatement') {\n\t\t\t\t// is a bare import, e.g. `require('foo');`\n\t\t\t\tmagicString.remove(parent.start, parent.end);\n\t\t\t} else {\n\t\t\t\trequired.importsDefault = true;\n\t\t\t\tmagicString.overwrite(node.start, node.end, required.name);\n\t\t\t}\n\n\t\t\tnode.callee._skip = true;\n\t\t},\n\n\t\tleave(node) {\n\t\t\tprogramDepth -= 1;\n\t\t\tif (node.scope) scope = scope.parent;\n\t\t\tif (functionType.test(node.type)) lexicalDepth -= 1;\n\n\t\t\tif (node.type === 'VariableDeclaration') {\n\t\t\t\tlet keepDeclaration = false;\n\t\t\t\tlet c = node.declarations[0].start;\n\n\t\t\t\tfor (let i = 0; i < node.declarations.length; i += 1) {\n\t\t\t\t\tconst declarator = node.declarations[i];\n\n\t\t\t\t\tif (declarator._shouldRemove) {\n\t\t\t\t\t\tmagicString.remove(c, declarator.end);\n\t\t\t\t\t} else {\n\t\t\t\t\t\tif (!keepDeclaration) {\n\t\t\t\t\t\t\tmagicString.remove(c, declarator.start);\n\t\t\t\t\t\t\tkeepDeclaration = true;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tc = declarator.end;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tif (!keepDeclaration) {\n\t\t\t\t\tmagicString.remove(node.start, node.end);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t});\n\n\tif (\n\t\t!sources.length &&\n\t\t!uses.module &&\n\t\t!uses.exports &&\n\t\t!uses.require &&\n\t\t(ignoreGlobal || !uses.global)\n\t) {\n\t\tif (Object.keys(namedExports).length) {\n\t\t\tthrow new Error(\n\t\t\t\t`Custom named exports were specified for ${id} but it does not appear to be a CommonJS module`\n\t\t\t);\n\t\t}\n\t\treturn null; // not a CommonJS module\n\t}\n\n\tconst includeHelpers = shouldWrap || uses.global || uses.require;\n\tconst importBlock =\n\t\t(includeHelpers ? [`import * as ${HELPERS_NAME} from '${HELPERS_ID}';`] : [])\n\t\t\t.concat(\n\t\t\t\tsources.map(source => {\n\t\t\t\t\t// import the actual module before the proxy, so that we know\n\t\t\t\t\t// what kind of proxy to build\n\t\t\t\t\treturn `import '${source}';`;\n\t\t\t\t}),\n\t\t\t\tsources.map(source => {\n\t\t\t\t\tconst { name, importsDefault } = required[source];\n\t\t\t\t\treturn `import ${importsDefault ? `${name} from ` : ``}'${getProxyId(source)}';`;\n\t\t\t\t})\n\t\t\t)\n\t\t\t.join('\\n') + '\\n\\n';\n\n\tconst namedExportDeclarations = [];\n\tlet wrapperStart = '';\n\tlet wrapperEnd = '';\n\n\tconst moduleName = deconflict(scope, globals, getName(id));\n\tif (!isEntry) {\n\t\tconst exportModuleExports = {\n\t\t\tstr: `export { ${moduleName} as __moduleExports };`,\n\t\t\tname: '__moduleExports'\n\t\t};\n\n\t\tnamedExportDeclarations.push(exportModuleExports);\n\t}\n\n\tconst name = getName(id);\n\n\tfunction addExport(x) {\n\t\tconst deconflicted = deconflict(scope, globals, name);\n\n\t\tconst declaration =\n\t\t\tdeconflicted === name\n\t\t\t\t? `export var ${x} = ${moduleName}.${x};`\n\t\t\t\t: `var ${deconflicted} = ${moduleName}.${x};\\nexport { ${deconflicted} as ${x} };`;\n\n\t\tnamedExportDeclarations.push({\n\t\t\tstr: declaration,\n\t\t\tname: x\n\t\t});\n\t}\n\n\tif (customNamedExports) customNamedExports.forEach(addExport);\n\n\tconst defaultExportPropertyAssignments = [];\n\tlet hasDefaultExport = false;\n\n\tif (shouldWrap) {\n\t\tconst args = `module${uses.exports ? ', exports' : ''}`;\n\n\t\twrapperStart = `var ${moduleName} = ${HELPERS_NAME}.createCommonjsModule(function (${args}) {\\n`;\n\t\twrapperEnd = `\\n});`;\n\t} else {\n\t\tconst names = [];\n\n\t\tast.body.forEach(node => {\n\t\t\tif (node.type === 'ExpressionStatement' && node.expression.type === 'AssignmentExpression') {\n\t\t\t\tconst left = node.expression.left;\n\t\t\t\tconst flattened = flatten(left);\n\n\t\t\t\tif (!flattened) return;\n\n\t\t\t\tconst match = exportsPattern.exec(flattened.keypath);\n\t\t\t\tif (!match) return;\n\n\t\t\t\tif (flattened.keypath === 'module.exports') {\n\t\t\t\t\thasDefaultExport = true;\n\t\t\t\t\tmagicString.overwrite(left.start, left.end, `var ${moduleName}`);\n\t\t\t\t} else {\n\t\t\t\t\tconst name = match[1];\n\t\t\t\t\tconst deconflicted = deconflict(scope, globals, name);\n\n\t\t\t\t\tnames.push({ name, deconflicted });\n\n\t\t\t\t\tmagicString.overwrite(node.start, left.end, `var ${deconflicted}`);\n\n\t\t\t\t\tconst declaration =\n\t\t\t\t\t\tname === deconflicted\n\t\t\t\t\t\t\t? `export { ${name} };`\n\t\t\t\t\t\t\t: `export { ${deconflicted} as ${name} };`;\n\n\t\t\t\t\tif (name !== 'default') {\n\t\t\t\t\t\tnamedExportDeclarations.push({\n\t\t\t\t\t\t\tstr: declaration,\n\t\t\t\t\t\t\tname\n\t\t\t\t\t\t});\n\t\t\t\t\t\tdelete namedExports[name];\n\t\t\t\t\t}\n\n\t\t\t\t\tdefaultExportPropertyAssignments.push(`${moduleName}.${name} = ${deconflicted};`);\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\n\t\tif (!hasDefaultExport) {\n\t\t\twrapperEnd = `\\n\\nvar ${moduleName} = {\\n${names\n\t\t\t\t.map(({ name, deconflicted }) => `\\t${name}: ${deconflicted}`)\n\t\t\t\t.join(',\\n')}\\n};`;\n\t\t}\n\t}\n\tObject.keys(namedExports)\n\t\t.filter(key => !blacklist[key])\n\t\t.forEach(addExport);\n\n\tconst defaultExport = /__esModule/.test(code)\n\t\t? `export default ${HELPERS_NAME}.unwrapExports(${moduleName});`\n\t\t: `export default ${moduleName};`;\n\n\tconst named = namedExportDeclarations\n\t\t.filter(x => x.name !== 'default' || !hasDefaultExport)\n\t\t.map(x => x.str);\n\n\tconst exportBlock =\n\t\t'\\n\\n' +\n\t\t[defaultExport]\n\t\t\t.concat(named)\n\t\t\t.concat(hasDefaultExport ? defaultExportPropertyAssignments : [])\n\t\t\t.join('\\n');\n\n\tmagicString\n\t\t.trim()\n\t\t.prepend(importBlock + wrapperStart)\n\t\t.trim()\n\t\t.append(wrapperEnd + exportBlock);\n\n\tcode = magicString.toString();\n\tconst map = sourceMap ? magicString.generateMap() : null;\n\n\treturn { code, map };\n}\n","import { realpathSync, existsSync } from 'fs';\nimport { extname, resolve, normalize } from 'path';\nimport { sync as nodeResolveSync, isCore } from 'resolve';\nimport { createFilter } from 'rollup-pluginutils';\nimport { peerDependencies } from '../package.json';\nimport {\n\tEXTERNAL_SUFFIX,\n\tgetIdFromExternalProxyId,\n\tgetIdFromProxyId,\n\tHELPERS,\n\tHELPERS_ID,\n\tPROXY_SUFFIX\n} from './helpers';\nimport { getIsCjsPromise, setIsCjsPromise } from './is-cjs';\nimport { getResolveId } from './resolve-id';\nimport { checkEsModule, hasCjsKeywords, transformCommonjs } from './transform.js';\nimport { getName } from './utils.js';\n\nexport default function commonjs(options = {}) {\n\tconst extensions = options.extensions || ['.js'];\n\tconst filter = createFilter(options.include, options.exclude);\n\tconst ignoreGlobal = options.ignoreGlobal;\n\n\tconst customNamedExports = {};\n\tif (options.namedExports) {\n\t\tObject.keys(options.namedExports).forEach(id => {\n\t\t\tlet resolveId = id;\n\t\t\tlet resolvedId;\n\n\t\t\tif (isCore(id)) {\n\t\t\t\t// resolve will not find npm modules with the same name as\n\t\t\t\t// core modules without a trailing slash. Since core modules\n\t\t\t\t// must be external, we can assume any core modules defined\n\t\t\t\t// here are npm modules by that name.\n\t\t\t\tresolveId += '/';\n\t\t\t}\n\n\t\t\ttry {\n\t\t\t\tresolvedId = nodeResolveSync(resolveId, { basedir: process.cwd() });\n\t\t\t} catch (err) {\n\t\t\t\tresolvedId = resolve(id);\n\t\t\t}\n\n\t\t\t// Note: customNamedExport's keys must be normalized file paths.\n\t\t\t// resolve and nodeResolveSync both return normalized file paths\n\t\t\t// so no additional normalization is necessary.\n\t\t\tcustomNamedExports[resolvedId] = options.namedExports[id];\n\n\t\t\tif (existsSync(resolvedId)) {\n\t\t\t\tconst realpath = realpathSync(resolvedId);\n\t\t\t\tif (realpath !== resolvedId) {\n\t\t\t\t\tcustomNamedExports[realpath] = options.namedExports[id];\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t}\n\n\tconst esModulesWithoutDefaultExport = new Set();\n\tconst esModulesWithDefaultExport = new Set();\n\tconst allowDynamicRequire = !!options.ignore; // TODO maybe this should be configurable?\n\n\tconst ignoreRequire =\n\t\ttypeof options.ignore === 'function'\n\t\t\t? options.ignore\n\t\t\t: Array.isArray(options.ignore)\n\t\t\t\t? id => options.ignore.includes(id)\n\t\t\t\t: () => false;\n\n\tconst resolveId = getResolveId(extensions);\n\n\tconst sourceMap = options.sourceMap !== false;\n\n\tfunction transformAndCheckExports(code, id) {\n\t\t{\n\t\t\tconst { isEsModule, hasDefaultExport, ast } = checkEsModule(this.parse, code, id);\n\t\t\tif (isEsModule) {\n\t\t\t\t(hasDefaultExport ? esModulesWithDefaultExport : esModulesWithoutDefaultExport).add(id);\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\t// it is not an ES module but it does not have CJS-specific elements.\n\t\t\tif (!hasCjsKeywords(code, ignoreGlobal)) {\n\t\t\t\tesModulesWithoutDefaultExport.add(id);\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\tconst normalizedId = normalize(id);\n\n\t\t\tconst transformed = transformCommonjs(\n\t\t\t\tthis.parse,\n\t\t\t\tcode,\n\t\t\t\tid,\n\t\t\t\tthis.getModuleInfo(id).isEntry,\n\t\t\t\tignoreGlobal,\n\t\t\t\tignoreRequire,\n\t\t\t\tcustomNamedExports[normalizedId],\n\t\t\t\tsourceMap,\n\t\t\t\tallowDynamicRequire,\n\t\t\t\tast\n\t\t\t);\n\t\t\tif (!transformed) {\n\t\t\t\tesModulesWithoutDefaultExport.add(id);\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\treturn transformed;\n\t\t}\n\t}\n\n\treturn {\n\t\tname: 'commonjs',\n\n\t\tbuildStart() {\n\t\t\tconst [major, minor] = this.meta.rollupVersion.split('.').map(Number);\n\t\t\tconst minVersion = peerDependencies.rollup.slice(2);\n\t\t\tconst [minMajor, minMinor] = minVersion.split('.').map(Number);\n\t\t\tif (major < minMajor || (major === minMajor && minor < minMinor)) {\n\t\t\t\tthis.error(\n\t\t\t\t\t`Insufficient Rollup version: \"rollup-plugin-commonjs\" requires at least rollup@${minVersion} but found rollup@${this.meta.rollupVersion}.`\n\t\t\t\t);\n\t\t\t}\n\t\t},\n\n\t\tresolveId,\n\n\t\tload(id) {\n\t\t\tif (id === HELPERS_ID) return HELPERS;\n\n\t\t\t// generate proxy modules\n\t\t\tif (id.endsWith(EXTERNAL_SUFFIX)) {\n\t\t\t\tconst actualId = getIdFromExternalProxyId(id);\n\t\t\t\tconst name = getName(actualId);\n\n\t\t\t\treturn `import ${name} from ${JSON.stringify(actualId)}; export default ${name};`;\n\t\t\t}\n\n\t\t\tif (id.endsWith(PROXY_SUFFIX)) {\n\t\t\t\tconst actualId = getIdFromProxyId(id);\n\t\t\t\tconst name = getName(actualId);\n\n\t\t\t\treturn getIsCjsPromise(actualId).then(isCjs => {\n\t\t\t\t\tif (isCjs)\n\t\t\t\t\t\treturn `import { __moduleExports } from ${JSON.stringify(\n\t\t\t\t\t\t\tactualId\n\t\t\t\t\t\t)}; export default __moduleExports;`;\n\t\t\t\t\telse if (esModulesWithoutDefaultExport.has(actualId))\n\t\t\t\t\t\treturn `import * as ${name} from ${JSON.stringify(actualId)}; export default ${name};`;\n\t\t\t\t\telse if (esModulesWithDefaultExport.has(actualId)) {\n\t\t\t\t\t\treturn `export {default} from ${JSON.stringify(actualId)};`;\n\t\t\t\t\t} else\n\t\t\t\t\t\treturn `import * as ${name} from ${JSON.stringify(\n\t\t\t\t\t\t\tactualId\n\t\t\t\t\t\t)}; import {getCjsExportFromNamespace} from \"${HELPERS_ID}\"; export default getCjsExportFromNamespace(${name})`;\n\t\t\t\t});\n\t\t\t}\n\t\t},\n\n\t\ttransform(code, id) {\n\t\t\tif (!filter(id) || extensions.indexOf(extname(id)) === -1) {\n\t\t\t\tsetIsCjsPromise(id, null);\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\tlet transformed;\n\t\t\ttry {\n\t\t\t\ttransformed = transformAndCheckExports.call(this, code, id);\n\t\t\t} catch (err) {\n\t\t\t\ttransformed = null;\n\t\t\t\tthis.error(err, err.loc);\n\t\t\t}\n\n\t\t\tsetIsCjsPromise(id, Boolean(transformed));\n\t\t\treturn transformed;\n\t\t}\n\t};\n}\n"],"names":["PROXY_SUFFIX","getProxyId","id","getIdFromProxyId","proxyId","slice","length","EXTERNAL_SUFFIX","getExternalProxyId","getIdFromExternalProxyId","HELPERS_ID","HELPERS","isCjsPromises","Map","getIsCjsPromise","isCjsPromise","get","promise","Promise","resolve","undefined","set","setIsCjsPromise","resolution","getCandidatesForExtension","resolved","extension","sep","getCandidates","extensions","reduce","paths","concat","getResolveId","resolveExtensions","importee","importer","dirname","candidates","i","stats","statSync","isFile","err","resolveId","isProxyModule","endsWith","startsWith","skipSelf","then","external","flatten","node","parts","type","computed","unshift","property","name","object","keypath","join","isTruthy","value","expression","operator","operators","isFalsy","not","equals","a","b","strict","x","left","right","argument","getName","makeLegalIdentifier","basename","extname","segments","split","reserved","blacklist","__esModule","forEach","word","exportsPattern","firstpassGlobal","firstpassNoGlobal","importExportDeclaration","functionType","deconflict","scope","globals","identifier","deconflicted","contains","has","declarations","tryParse","parse","code","allowReturnOutsideFunction","message","hasCjsKeywords","ignoreGlobal","firstpass","test","checkEsModule","ast","isEsModule","body","hasDefaultExport","specifiers","specifier","exported","transformCommonjs","isEntry","ignoreRequire","customNamedExports","sourceMap","allowDynamicRequire","astCache","magicString","MagicString","required","sources","uid","attachScopes","uses","module","exports","global","require","lexicalDepth","programDepth","Set","HELPERS_NAME","namedExports","shouldWrap","isRequireStatement","callee","arguments","hasDynamicArguments","expressions","isStaticRequireStatement","getRequireStringArg","quasis","cooked","getRequired","sourceId","existing","push","source","importsDefault","assignedTo","walk","enter","extractAssignedNames","add","parent","addSourcemapLocation","start","end","consequent","skip","alternate","_skip","overwrite","storeName","flattened","isReference","match","exec","properties","prop","key","init","_shouldRemove","remove","leave","keepDeclaration","c","declarator","Object","keys","Error","includeHelpers","importBlock","map","namedExportDeclarations","wrapperStart","wrapperEnd","moduleName","exportModuleExports","str","addExport","declaration","defaultExportPropertyAssignments","args","names","filter","defaultExport","named","exportBlock","trim","prepend","append","toString","generateMap","commonjs","options","createFilter","include","exclude","resolvedId","isCore","nodeResolveSync","basedir","process","cwd","existsSync","realpath","realpathSync","esModulesWithoutDefaultExport","esModulesWithDefaultExport","ignore","Array","isArray","includes","transformAndCheckExports","normalizedId","normalize","transformed","getModuleInfo","buildStart","meta","rollupVersion","Number","major","minor","minVersion","peerDependencies","rollup","minMajor","minMinor","error","load","actualId","JSON","stringify","isCjs","transform","indexOf","call","loc","Boolean"],"mappings":"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"}
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "rollup-plugin-commonjs",
3
- "_id": "rollup-plugin-commonjs@10.0.2",
3
+ "_id": "rollup-plugin-commonjs@10.1.0",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-DxeR4QXTgTOFseYls1V7vgKbrSJmPYNdEMOs0OvH+7+89C3GiIonU9gFrE0u39Vv1KWm3wepq8KAvKugtoM2Zw==",
5
+ "_integrity": "sha512-jlXbjZSQg8EIeAAvepNwhJj++qJWNJw1Cl0YnOqKtP5Djx+fFGkp3WRh+W0ASCaFG5w1jhmzDxgu3SJuVxPF4Q==",
6
6
  "_location": "/rollup-plugin-commonjs",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -19,8 +19,8 @@
19
19
  "#USER",
20
20
  "/"
21
21
  ],
22
- "_resolved": "https://registry.npmjs.org/rollup-plugin-commonjs/-/rollup-plugin-commonjs-10.0.2.tgz",
23
- "_shasum": "61328f3a29945e2c35f2b2e824c18944fd88a54d",
22
+ "_resolved": "https://registry.npmjs.org/rollup-plugin-commonjs/-/rollup-plugin-commonjs-10.1.0.tgz",
23
+ "_shasum": "417af3b54503878e084d127adf4d1caf8beb86fb",
24
24
  "_spec": "rollup-plugin-commonjs",
25
25
  "_where": "/Users/malomalo/Code/condenser/lib/condenser/processors",
26
26
  "author": {
@@ -37,7 +37,7 @@
37
37
  "resolve": "^1.11.0",
38
38
  "rollup-pluginutils": "^2.8.1"
39
39
  },
40
- "deprecated": false,
40
+ "deprecated": "This package has been deprecated and is no longer maintained. Please use @rollup/plugin-commonjs.",
41
41
  "description": "Convert CommonJS modules to ES2015",
42
42
  "devDependencies": {
43
43
  "@babel/core": "^7.4.5",
@@ -90,5 +90,5 @@
90
90
  "test": "npm run test:only",
91
91
  "test:only": "mocha && tsc"
92
92
  },
93
- "version": "10.0.2"
93
+ "version": "10.1.0"
94
94
  }
@@ -1,5 +1,5 @@
1
1
  import { realpathSync, existsSync } from 'fs';
2
- import { extname, resolve } from 'path';
2
+ import { extname, resolve, normalize } from 'path';
3
3
  import { sync as nodeResolveSync, isCore } from 'resolve';
4
4
  import { createFilter } from 'rollup-pluginutils';
5
5
  import { peerDependencies } from '../package.json';
@@ -40,6 +40,10 @@ export default function commonjs(options = {}) {
40
40
  } catch (err) {
41
41
  resolvedId = resolve(id);
42
42
  }
43
+
44
+ // Note: customNamedExport's keys must be normalized file paths.
45
+ // resolve and nodeResolveSync both return normalized file paths
46
+ // so no additional normalization is necessary.
43
47
  customNamedExports[resolvedId] = options.namedExports[id];
44
48
 
45
49
  if (existsSync(resolvedId)) {
@@ -80,6 +84,8 @@ export default function commonjs(options = {}) {
80
84
  return null;
81
85
  }
82
86
 
87
+ const normalizedId = normalize(id);
88
+
83
89
  const transformed = transformCommonjs(
84
90
  this.parse,
85
91
  code,
@@ -87,7 +93,7 @@ export default function commonjs(options = {}) {
87
93
  this.getModuleInfo(id).isEntry,
88
94
  ignoreGlobal,
89
95
  ignoreRequire,
90
- customNamedExports[id],
96
+ customNamedExports[normalizedId],
91
97
  sourceMap,
92
98
  allowDynamicRequire,
93
99
  ast
@@ -1,5 +1,9 @@
1
1
  # rollup-pluginutils changelog
2
2
 
3
+ ## 2.8.2
4
+ *2019-09-13*
5
+ * Handle optional catch parameter in attachScopes ([#70](https://github.com/rollup/rollup-pluginutils/pulls/70))
6
+
3
7
  ## 2.8.1
4
8
  *2019-06-04*
5
9
  * Support serialization of many edge cases ([#64](https://github.com/rollup/rollup-pluginutils/issues/64))
@@ -124,7 +124,7 @@ const attachScopes = function attachScopes(ast, propertyName = 'scope') {
124
124
  if (node.type === 'CatchClause') {
125
125
  newScope = new Scope({
126
126
  parent: scope,
127
- params: [node.param],
127
+ params: node.param ? [node.param] : [],
128
128
  block: true
129
129
  });
130
130
  }
@@ -117,7 +117,7 @@ const attachScopes = function attachScopes(ast, propertyName = 'scope') {
117
117
  if (node.type === 'CatchClause') {
118
118
  newScope = new Scope({
119
119
  parent: scope,
120
- params: [node.param],
120
+ params: node.param ? [node.param] : [],
121
121
  block: true
122
122
  });
123
123
  }
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "rollup-pluginutils@^2.8.1",
3
- "_id": "rollup-pluginutils@2.8.1",
3
+ "_id": "rollup-pluginutils@2.8.2",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-J5oAoysWar6GuZo0s+3bZ6sVZAC0pfqKz68De7ZgDi5z63jOVZn1uJL/+z1jeKHNbGII8kAyHF5q8LnxSX5lQg==",
5
+ "_integrity": "sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==",
6
6
  "_location": "/rollup-pluginutils",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -19,8 +19,8 @@
19
19
  "/rollup-plugin-commonjs",
20
20
  "/rollup-plugin-node-resolve"
21
21
  ],
22
- "_resolved": "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-2.8.1.tgz",
23
- "_shasum": "8fa6dd0697344938ef26c2c09d2488ce9e33ce97",
22
+ "_resolved": "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz",
23
+ "_shasum": "72f2af0748b592364dbd3389e600e5a9444a351e",
24
24
  "_spec": "rollup-pluginutils@^2.8.1",
25
25
  "_where": "/Users/malomalo/Code/condenser/lib/condenser/processors/node_modules/rollup-plugin-commonjs",
26
26
  "author": {
@@ -41,9 +41,9 @@
41
41
  "@types/jest": "^24.0.13",
42
42
  "@types/micromatch": "^3.1.0",
43
43
  "@types/node": "^12.0.4",
44
- "husky": "^2.3.0",
44
+ "husky": "^3.0.5",
45
45
  "jest": "^24.8.0",
46
- "lint-staged": "^8.1.7",
46
+ "lint-staged": "^9.2.5",
47
47
  "micromatch": "^4.0.2",
48
48
  "prettier": "^1.17.1",
49
49
  "rollup": "^1.13.1",
@@ -85,5 +85,5 @@
85
85
  "test": "jest"
86
86
  },
87
87
  "typings": "dist/pluginutils.d.ts",
88
- "version": "2.8.1"
88
+ "version": "2.8.2"
89
89
  }
@@ -100,7 +100,7 @@ const attachScopes: AttachScopes = function attachScopes(ast, propertyName = 'sc
100
100
  if (node.type === 'CatchClause') {
101
101
  newScope = new Scope({
102
102
  parent: scope,
103
- params: [node.param],
103
+ params: node.param ? [node.param] : [],
104
104
  block: true
105
105
  });
106
106
  }
@@ -1,5 +1,411 @@
1
1
  # rollup changelog
2
2
 
3
+ ## 1.28.0
4
+ *2020-01-04*
5
+
6
+ ### Features
7
+ * Allow piping in stdin via the command line interface (#3312, #3290)
8
+ * Allow plugins to mark modules as having syntheticNamedExports for e.g. better CJS interoperability (#3295)
9
+ * Ignore variable reassignments in dead code when tree-shaking to remove more unneeded code (#3212)
10
+
11
+ ### Bug Fixes
12
+ * Properly respect tree-shaken code when generating sourcemaps (#3318)
13
+
14
+ ### Pull Requests
15
+ * [#3212](https://github.com/rollup/rollup/pull/3212): Handle assignments in dead code (@tjenkinson)
16
+ * [#3290](https://github.com/rollup/rollup/pull/3290): Implement stdin input with optional "-" as the file name (@kzc)
17
+ * [#3295](https://github.com/rollup/rollup/pull/3295): Add syntheticNamedExports (@manucorporat)
18
+ * [#3300](https://github.com/rollup/rollup/pull/3300): Add note about setting `types` in tsconfig file (@tjenkinson)
19
+ * [#3303](https://github.com/rollup/rollup/pull/3303): Use ! to assert not-null in TypeScript (@NotWoods)
20
+ * [#3312](https://github.com/rollup/rollup/pull/3312): Implement stdin input (@lukastaegert)
21
+ * [#3318](https://github.com/rollup/rollup/pull/3318): Update magic-string and other dependencies (@lukastaegert)
22
+
23
+ ## 1.27.14
24
+ *2019-12-22*
25
+
26
+ ### Bug Fixes
27
+ * Update references to official rollup plugins in error messages (#3297, #3298)
28
+
29
+ ### Pull Requests
30
+ * [#3286](https://github.com/rollup/rollup/pull/3286): Update link to JavaScript API documentation (@romankaravia)
31
+ * [#3294](https://github.com/rollup/rollup/pull/3294): Update deprecated references to the node-resolve plugin in the documentation (@Vlad-Shcherbina)
32
+ * [#3297](https://github.com/rollup/rollup/pull/3297): Update references to rollup-plugin-json (@cprecioso)
33
+ * [#3298](https://github.com/rollup/rollup/pull/3298): Update references to official rollup plugins (@cprecioso)
34
+
35
+ ## 1.27.13
36
+ *2019-12-14*
37
+
38
+ ### Bug Fixes
39
+ * Do not truncate environment variable values at the first colon when using the `--environment` option (#3283)
40
+
41
+ ### Pull Requests
42
+ * [#3283](https://github.com/rollup/rollup/pull/3283): Allow environment variables to contain colons (@tlaverdure)
43
+
44
+ ## 1.27.12
45
+ *2019-12-13*
46
+
47
+ ### Bug Fixes
48
+ * Prevent invalid AMD or SystemJS code when accessing `import.meta` (#3282)
49
+
50
+ ### Pull Requests
51
+ * [#3282](https://github.com/rollup/rollup/pull/3282): Always make "module" available for SystemJS and AMD formats if `import.meta` is accessed directly (@lukastaegert)
52
+
53
+ ## 1.27.11
54
+ *2019-12-12*
55
+
56
+ ### Bug Fixes
57
+ * Resolve a crash due to an infinite loop (#3280)
58
+
59
+ ### Pull Requests
60
+ * [#3280](https://github.com/rollup/rollup/pull/3280): Prevent infinite deoptimizations (@lukastaegert)
61
+
62
+ ## 1.27.10
63
+ *2019-12-11*
64
+
65
+ ### Bug Fixes
66
+ * Keep track of function return values in more situations (#3278)
67
+
68
+ ### Pull Requests
69
+ * [#3278](https://github.com/rollup/rollup/pull/3278): Avoid some unnecessary value tracking deoptimizations (@lukastaegert)
70
+
71
+ ## 1.27.9
72
+ *2019-12-07*
73
+
74
+ ### Bug Fixes
75
+ * Fix an issue where reexports could be missing when preserving modules (#3273)
76
+ * Allow turning of color output via NO_COLOR or FORCE_COLOR=0 environment variables (#3272)
77
+
78
+ ### Pull Requests
79
+ * [#3272](https://github.com/rollup/rollup/pull/3272): Support either NO_COLOR or FORCE_COLOR=0 to turn off color (@kikonen)
80
+ * [#3273](https://github.com/rollup/rollup/pull/3273): Make sure that indirectly reexported modules also become chunk dependencies when preserving modules(@lukastaegert)
81
+
82
+ ## 1.27.8
83
+ *2019-12-02*
84
+
85
+ ### Bug Fixes
86
+ * Deoptimize objects when a method is called on them to make sure modifications via "this" are observed (#3266)
87
+
88
+ ### Pull Requests
89
+ * [#3266](https://github.com/rollup/rollup/pull/3266): Workaround for various object literal mutation bugs (@kzc)
90
+
91
+ ## 1.27.7
92
+ *2019-12-01*
93
+
94
+ ### Bug Fixes
95
+ * Fix a scenario where a reassignments to computed properties were not tracked (#3267)
96
+
97
+ ### Pull Requests
98
+ * [#3267](https://github.com/rollup/rollup/pull/3267): Fix incomplete computed property deoptimization (@lukastaegert)
99
+
100
+ ## 1.27.6
101
+ *2019-11-30*
102
+
103
+ ### Bug Fixes
104
+ * Use "auto" export mode by default for all modules when preserving modules (#3265)
105
+ * Observe "output.exports" when preserving modules and warn for mixed exports if necessary (#3265)
106
+
107
+ ### Pull Requests
108
+ * [#3265](https://github.com/rollup/rollup/pull/3265): Use export mode "auto" by default when preserving modules (@lukastaegert)
109
+
110
+ ## 1.27.5
111
+ *2019-11-25*
112
+
113
+ ### Bug Fixes
114
+ * Make sure namespaces for inlined dynamic imports are treated as variable accesses when deconflicting (#3256)
115
+
116
+ ### Pull Requests
117
+ * [#3256](https://github.com/rollup/rollup/pull/3256): Avoid name conflicts when inlining dynamic imports nested in functions (@lukastaegert)
118
+ * [#3257](https://github.com/rollup/rollup/pull/3257): Update dependencies (@lukastaegert)
119
+
120
+ ## 1.27.4
121
+ *2019-11-22*
122
+
123
+ ### Bug Fixes
124
+ * Aggregate circular dependency warnings in the CLI (#3249)
125
+ * Do not defer non-aggregated handlers in the CLI (#3249)
126
+
127
+ ### Pull Requests
128
+ * [#3249](https://github.com/rollup/rollup/pull/3249): Fix broken Windows CLI tests (@lukastaegert)
129
+ * [#3251](https://github.com/rollup/rollup/pull/3251): Add installation as a separate header (@ashrith-kulai)
130
+
131
+ ## 1.27.3
132
+ *2019-11-20*
133
+
134
+ ### Bug Fixes
135
+ * Provide better warning when empty chunks are created in a code-splitting scenario (#3244)
136
+
137
+ ### Pull Requests
138
+ * [#3244](https://github.com/rollup/rollup/pull/3244): Clearer empty chunk warning (@tjenkinson)
139
+
140
+ ## 1.27.2
141
+ *2019-11-18*
142
+
143
+ ### Bug Fixes
144
+ * Fix an issue where live bindings were not working correctly when using `+=` in SystemJS (#3242)
145
+
146
+ ### Pull Requests
147
+ * [#3242](https://github.com/rollup/rollup/pull/3242): Export updated assignments when using shorthand update assignment expressions in SystemJS (@lukastaegert)
148
+
149
+ ## 1.27.1
150
+ *2019-11-18*
151
+
152
+ ### Bug Fixes
153
+ * Fix an issue where code after a switch-statement with removed cases was erroneously not included (#3241)
154
+
155
+ ### Pull Requests
156
+ * [#3237](https://github.com/rollup/rollup/pull/3237): make `acornOptions` optional in `parse()` in docs (@tjenkinson)
157
+ * [#3240](https://github.com/rollup/rollup/pull/3240): Update dependencies and fix vulnerability (@lukastaegert)
158
+ * [#3241](https://github.com/rollup/rollup/pull/3241): Do not truncate after switch-statement with removed case (@lukastaegert)
159
+
160
+ ## 1.27.0
161
+ *2019-11-12*
162
+
163
+ ### Features
164
+ * Add support for output-specific plugins (#3218)
165
+ * Reenable parallel output processing when using the CLI (#3218)
166
+ * Warn if files are emitted that would overwrite previously emitted files (#3218)
167
+
168
+ ### Bug Fixes
169
+ * Do not overwrite files emitted in other builds if outputs are generated in parallel (#3218)
170
+
171
+ ### Pull Requests
172
+ * [#3218](https://github.com/rollup/rollup/pull/3218): Per output plugins (@lukastaegert)
173
+
174
+ ## 1.26.5
175
+ *2019-11-11*
176
+
177
+ ### Bug Fixes
178
+ * Fix a regression where it was no longer to pass a certain option format to generate (#3223)
179
+
180
+ ### Pull Requests
181
+ * [#3223](https://github.com/rollup/rollup/pull/3223): Allow passing input options to output (@lukastaegert)
182
+
183
+ ## 1.26.4
184
+ *2019-11-09*
185
+
186
+ ### Bug Fixes
187
+ * Keep watching known files after a plugin error during the initial build (#3219)
188
+
189
+ ### Pull Requests
190
+ * [#3216](https://github.com/rollup/rollup/pull/3216): Fix small typo (@kaisermann)
191
+ * [#3217](https://github.com/rollup/rollup/pull/3217): Update dependencies and fix security vulnerability (@lukastaegert)
192
+ * [#3219](https://github.com/rollup/rollup/pull/3219): Also recover from plugin errors during the initial build (@lukastaegert)
193
+
194
+ ## 1.26.3
195
+ *2019-11-02*
196
+
197
+ ### Bug Fixes
198
+ * Work around an incompatibility with rollup-plugin-dts (#3211)
199
+
200
+ ### Pull Requests
201
+ * [#3211](https://github.com/rollup/rollup/pull/3211): Do no fail if the source attribute is `undefined` in an unused named export (@lukastaegert)
202
+
203
+ ## 1.26.2
204
+ *2019-10-31*
205
+
206
+ ### Bug Fixes
207
+ * Do not create invalid code when using `treeshake: false` and star re-exports (#3209)
208
+
209
+ ### Pull Requests
210
+ * [#3209](https://github.com/rollup/rollup/pull/3209): Also remove export-all declarations when not tree-shaking (@lukastaegert)
211
+
212
+ ## 1.26.1
213
+ *2019-10-31*
214
+
215
+ ### Bug Fixes
216
+ * Prevent an issue where outputs would overwrite files emitted by other outputs (#3201)
217
+ * Do not throw an error if the config file does not have a .js extension (#3204)
218
+
219
+ ### Pull Requests
220
+ * [#3201](https://github.com/rollup/rollup/pull/3201): Make the CLI run generate/output in serial (@marijnh)
221
+ * [#3204](https://github.com/rollup/rollup/pull/3204): support all config file extensions (.js,.mjs,...) (@arlac77)
222
+
223
+ ## 1.26.0
224
+ *2019-10-27*
225
+
226
+ ### Features
227
+ * Only warn when no output is provided for an IIFE bundle but still produce valid code (#3181)
228
+ * Support reexporting namespaces as a binding (#3193)
229
+ * Switch from hash.js to crypto for hashing in the Node build for better performance and support for very large assets (#3194)
230
+
231
+ ### Bug Fixes
232
+ * Correctly handle chunks reexporting the same namespace as two different bindings (#3193)
233
+
234
+ ### Pull Requests
235
+ * [#3181](https://github.com/rollup/rollup/pull/3181): Remove the need to provide an output name for IIFE bundles (@bterrier)
236
+ * [#3193](https://github.com/rollup/rollup/pull/3193): Add support for "export * as name from …" (@lukastaegert)
237
+ * [#3194](https://github.com/rollup/rollup/pull/3194): Add support for large assets (> 100 MB) (@SebastianNiemann)
238
+
239
+ ## 1.25.2
240
+ *2019-10-23*
241
+
242
+ ### Bug Fixes
243
+ * Improve performance of bundled UMD code by adding additional parentheses to enforce eager parsing (#3183)
244
+ * Improve types to tolerate passing a Rollup config with multiple outputs to `rollup.rollup` (#3184)
245
+
246
+ ### Pull Requests
247
+ * [#3183](https://github.com/rollup/rollup/pull/3183): Add parentheses to factory function of UMD bundles (@ajihyf)
248
+ * [#3184](https://github.com/rollup/rollup/pull/3184): RollupOptions accept output as array (@imcotton)
249
+
250
+ ## 1.25.1
251
+ *2019-10-20*
252
+
253
+ ### Bug Fixes
254
+ * Handle a situation where code was not included after a switch statement (#3178)
255
+ * Handle a situation where code was not included after a do-while loop (#3180)
256
+ * Do not fail if different outputs emit the same file (#3175)
257
+ * Give access to the original acorn error for parse errors (#3176)
258
+
259
+ ### Pull Requests
260
+ * [#3175](https://github.com/rollup/rollup/pull/3175): Disable errors for duplicate emitted file names (@marijnh)
261
+ * [#3176](https://github.com/rollup/rollup/pull/3176): Add original parser error to rollup error; Update tests (@gribnoysup)
262
+ * [#3178](https://github.com/rollup/rollup/pull/3178): Fix switch case not being included correctly (@lukastaegert)
263
+ * [#3179](https://github.com/rollup/rollup/pull/3179): Update dependencies (@lukastaegert)
264
+ * [#3180](https://github.com/rollup/rollup/pull/3180): Handle conditional breaks in do-while loops with unconditional return (@lukastaegert)
265
+
266
+ ## 1.25.0
267
+ *2019-10-18*
268
+
269
+ ### Features
270
+ * Remove try-catch if there is no side-effect in the try-block (#3166)
271
+ * Omit side-effect-free trailing cases in switch-statements (#3166)
272
+ * Remove unused labels (#3170)
273
+
274
+ ### Bug Fixes
275
+ * Do not remove code after labeled statements that contain a throw or return if the label is used (#3170)
276
+ * Prevent invalid code when expressions are simplified that do not follow a white-space character (#3173)
277
+ * Do not remove continue statements inside switch statements (#3166)
278
+ * Prevent trailing empty lines when tree-shaking inside switch statements (#3166)
279
+
280
+ ### Pull Requests
281
+ * [#3166](https://github.com/rollup/rollup/pull/3166): Better try statement tree shaking (@lukastaegert)
282
+ * [#3170](https://github.com/rollup/rollup/pull/3170): Handle optional control flow in labeled statements, remove unused labels (@lukastaegert)
283
+ * [#3173](https://github.com/rollup/rollup/pull/3173): Add missing spaces in certain statements and expressions to avoid invalid code (@lukastaegert)
284
+
285
+ ## 1.24.0
286
+ *2019-10-15*
287
+
288
+ ### Features
289
+ * Respect `break`, `continue`, `return` and `throw` when tree-shaking to detect dead code (#3153)
290
+ * Do treat treat hoisted function declarations as "unknown" when checking for call side-effects (#3153)
291
+
292
+ ### Bug Fixes
293
+ * Make sure that unknown `import.meta` properties produce valid code in SystemJS (#3152)
294
+ * Make sure `treeshake.annotations: false` is respected for class instantiation (#3153)
295
+ * Check property access side-effects for class instantiation (#3153)
296
+ * Do not suppress break statements inside labeled statements (#3153)
297
+
298
+ ### Pull Requests
299
+ * [#3152](https://github.com/rollup/rollup/pull/3152): Allow import.meta.* for systemjs format (@dmail)
300
+ * [#3153](https://github.com/rollup/rollup/pull/3153): Get rid of immutable.js and implement tree-shaking for broken control flow (@lukastaegert)
301
+
302
+ ## 1.23.1
303
+ *2019-10-05*
304
+
305
+ ### Bug Fixes
306
+ * Fix a regression where the node types had a specific minimal version (#3143)
307
+
308
+ ### Pull Requests
309
+ * [#3143](https://github.com/rollup/rollup/pull/3143): Ensure that types packages have star version ranges (@lukastaegert)
310
+
311
+ ## 1.23.0
312
+ *2019-10-03*
313
+
314
+ ### Features
315
+ * Add placeholders for extensions when preserving modules (#3116)
316
+
317
+ ### Pull Requests
318
+ * [#3116](https://github.com/rollup/rollup/pull/3116): Include extensions in preserveModules output filenames for scriptified assets (@Andarist)
319
+ * [#3142](https://github.com/rollup/rollup/pull/3142): Fix typo (@tu4mo)
320
+
321
+ ## 1.22.0
322
+ *2019-09-29*
323
+
324
+ ### Features
325
+ * Add a new "hidden" sourcemap type that generates the map files but omits the sourcemap comment (#3120)
326
+ * Generate more efficient code when using `namespaceToStringTag: true` (#3135)
327
+ * Make sure namespace objects do not have a prototype (#3136)
328
+
329
+ ### Bug Fixes
330
+ * Do not ignore side-effectful iterators by always preserving for..of loops for now (#3132)
331
+ * Make sure `--context` is observed as a CLI option (#3134)
332
+ * Do not require specific versions for @types dependencies (#3131)
333
+
334
+ ### Pull Requests
335
+ * [#3120](https://github.com/rollup/rollup/pull/3120): Generate sourcemaps but omit the comment (@rohitmohan96)
336
+ * [#3131](https://github.com/rollup/rollup/pull/3131): Use asterisk for @types/* dependencies (@frenzzy)
337
+ * [#3132](https://github.com/rollup/rollup/pull/3132): Preserve empty for...of loops (@imatlopez)
338
+ * [#3133](https://github.com/rollup/rollup/pull/3133): Update dependencies (@lukastaegert)
339
+ * [#3134](https://github.com/rollup/rollup/pull/3134): Wire up --context CLI flag (@tchetwin)
340
+ * [#3135](https://github.com/rollup/rollup/pull/3135): Remove Symbol polyfill in module namespaces (@mkubilayk)
341
+ * [#3136](https://github.com/rollup/rollup/pull/3136): Set null prototype on namespace objects (@rpamely)
342
+
343
+ ## 1.21.4
344
+ *2019-09-16*
345
+
346
+ ### Bug Fixes
347
+ * Recognize common browser globals (#3117)
348
+ * Do not treat "typeof <global>" as a side-effect (#3117)
349
+
350
+ ### Pull Requests
351
+ * [#3117](https://github.com/rollup/rollup/pull/3117): Add browser globals to known globals and prevent "typeof" side-effects (@lukastaegert)
352
+
353
+ ## 1.21.3
354
+ *2019-09-14*
355
+
356
+ ### Bug Fixes
357
+ * Fix a regression where modifying a watched file did not trigger a rebuild (#3112)
358
+
359
+ ### Pull Requests
360
+ * [#3112](https://github.com/rollup/rollup/pull/3112): Fix .addWatchFile() dependencies failing to invalidate in watch mode (@tivac)
361
+
362
+ ## 1.21.2
363
+ *2019-09-09*
364
+
365
+ ### Bug Fixes
366
+ * Fix wrong deprecation message to direct to `this.emitFile` instead of `this.emitAsset`
367
+
368
+ ## 1.21.1
369
+ *2019-09-09*
370
+
371
+ ### Bug Fixes
372
+ * Allow legacy plugins to still add assets directly to the bundle object (#3105)
373
+
374
+ ### Pull Requests
375
+ * [#3105](https://github.com/rollup/rollup/pull/3105): Allow legacy plugins to still add assets directly to the bundle object (@lukastaegert)
376
+
377
+ ## 1.21.0
378
+ *2019-09-08*
379
+
380
+ ### Features
381
+ * Respect `output.entryFileNames` when preserving modules (#3088)
382
+ * Make accessing unknown globals a side-effect unless this is deactivated via `treeshake.unknownGlobalSideEffects` (#3068)
383
+ * Respect global objects when checking for pure global functions (#3068)
384
+ * Introduce a `type` to more easily distinguish chunks and assets in the output bundle (#3080)
385
+
386
+ ### Bug Fixes
387
+ * Recover in watch mode when the initial build fails (#3081)
388
+ * Make sure `output.strict` is respected for SystemJS output (#3101)
389
+
390
+ ### Pull Requests
391
+ * [#3068](https://github.com/rollup/rollup/pull/3068): Make accessing unknown globals a side-effect (@lukastaegert)
392
+ * [#3080](https://github.com/rollup/rollup/pull/3080): OutputBundle Tagged union with 'type = chunk|asset' (@askbeka)
393
+ * [#3081](https://github.com/rollup/rollup/pull/3081): Watch files onbuild, even if build fails (@mhkeller)
394
+ * [#3088](https://github.com/rollup/rollup/pull/3088): Add support for entryFileNames pattern used in combination with preserveModules option (@Andarist)
395
+ * [#3101](https://github.com/rollup/rollup/pull/3101): Remove 'use strict'; from systemjs when strict=false (@askbeka)
396
+
397
+ ## 1.20.3
398
+ *2019-08-28*
399
+
400
+ ### Bug Fixes
401
+ * Make sure file hashes change when a change of the naming pattern leads to a file name change of a dependency (#3083)
402
+ * Fix several issues where reexporting an external "default" export could lead to invalid or incorrect code (#3084)
403
+
404
+ ### Pull Requests
405
+ * [#3078](https://github.com/rollup/rollup/pull/3078): Add github actions workflow config for windows (@shellscape)
406
+ * [#3083](https://github.com/rollup/rollup/pull/3083): Properly reflect dependency file names in hash (@lukastaegert)
407
+ * [#3084](https://github.com/rollup/rollup/pull/3084): Fix "default" reexport issues in non ESM/System formats (@lukastaegert)
408
+
3
409
  ## 1.20.2
4
410
  *2019-08-25*
5
411