create-microact-app 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (264) hide show
  1. package/package.json +1 -1
  2. package/templates/vanilla/package.json +1 -1
  3. package/templates/vanilla/src/components/App.js +22 -35
  4. package/templates/vanilla/src/components/Card.js +5 -12
  5. package/templates/vanilla/src/components/Hero.js +6 -8
  6. package/templates/vanilla/src/components/InteractiveDemo.js +34 -32
  7. package/templates/vanilla/src/main.js +2 -6
  8. package/templates/web3/contracts/.gitmodules +3 -0
  9. package/templates/web3/contracts/foundry.lock +8 -0
  10. package/templates/web3/contracts/lib/forge-std/.gitattributes +1 -0
  11. package/templates/web3/contracts/lib/forge-std/.github/CODEOWNERS +1 -0
  12. package/templates/web3/contracts/lib/forge-std/.github/dependabot.yml +6 -0
  13. package/templates/web3/contracts/lib/forge-std/.github/workflows/ci.yml +125 -0
  14. package/templates/web3/contracts/lib/forge-std/.github/workflows/sync.yml +36 -0
  15. package/templates/web3/contracts/lib/forge-std/CONTRIBUTING.md +193 -0
  16. package/templates/web3/contracts/lib/forge-std/LICENSE-APACHE +203 -0
  17. package/templates/web3/contracts/lib/forge-std/LICENSE-MIT +25 -0
  18. package/templates/web3/contracts/lib/forge-std/README.md +268 -0
  19. package/templates/web3/contracts/lib/forge-std/RELEASE_CHECKLIST.md +12 -0
  20. package/templates/web3/contracts/lib/forge-std/foundry.toml +18 -0
  21. package/templates/web3/contracts/lib/forge-std/package.json +16 -0
  22. package/templates/web3/contracts/lib/forge-std/scripts/vm.py +636 -0
  23. package/templates/web3/contracts/lib/forge-std/src/Base.sol +48 -0
  24. package/templates/web3/contracts/lib/forge-std/src/Config.sol +60 -0
  25. package/templates/web3/contracts/lib/forge-std/src/LibVariable.sol +477 -0
  26. package/templates/web3/contracts/lib/forge-std/src/Script.sol +28 -0
  27. package/templates/web3/contracts/lib/forge-std/src/StdAssertions.sol +779 -0
  28. package/templates/web3/contracts/lib/forge-std/src/StdChains.sol +295 -0
  29. package/templates/web3/contracts/lib/forge-std/src/StdCheats.sol +825 -0
  30. package/templates/web3/contracts/lib/forge-std/src/StdConfig.sol +632 -0
  31. package/templates/web3/contracts/lib/forge-std/src/StdConstants.sol +30 -0
  32. package/templates/web3/contracts/lib/forge-std/src/StdError.sol +15 -0
  33. package/templates/web3/contracts/lib/forge-std/src/StdInvariant.sol +120 -0
  34. package/templates/web3/contracts/lib/forge-std/src/StdJson.sol +275 -0
  35. package/templates/web3/contracts/lib/forge-std/src/StdMath.sol +47 -0
  36. package/templates/web3/contracts/lib/forge-std/src/StdStorage.sol +475 -0
  37. package/templates/web3/contracts/lib/forge-std/src/StdStyle.sol +333 -0
  38. package/templates/web3/contracts/lib/forge-std/src/StdToml.sol +275 -0
  39. package/templates/web3/contracts/lib/forge-std/src/StdUtils.sol +200 -0
  40. package/templates/web3/contracts/lib/forge-std/src/Test.sol +32 -0
  41. package/templates/web3/contracts/lib/forge-std/src/Vm.sol +2500 -0
  42. package/templates/web3/contracts/lib/forge-std/src/console.sol +1551 -0
  43. package/templates/web3/contracts/lib/forge-std/src/console2.sol +4 -0
  44. package/templates/web3/contracts/lib/forge-std/src/interfaces/IERC1155.sol +105 -0
  45. package/templates/web3/contracts/lib/forge-std/src/interfaces/IERC165.sol +12 -0
  46. package/templates/web3/contracts/lib/forge-std/src/interfaces/IERC20.sol +43 -0
  47. package/templates/web3/contracts/lib/forge-std/src/interfaces/IERC4626.sol +190 -0
  48. package/templates/web3/contracts/lib/forge-std/src/interfaces/IERC6909.sol +72 -0
  49. package/templates/web3/contracts/lib/forge-std/src/interfaces/IERC721.sol +164 -0
  50. package/templates/web3/contracts/lib/forge-std/src/interfaces/IERC7540.sol +144 -0
  51. package/templates/web3/contracts/lib/forge-std/src/interfaces/IERC7575.sol +241 -0
  52. package/templates/web3/contracts/lib/forge-std/src/interfaces/IMulticall3.sol +68 -0
  53. package/templates/web3/contracts/lib/forge-std/src/safeconsole.sol +13248 -0
  54. package/templates/web3/contracts/lib/forge-std/test/CommonBase.t.sol +44 -0
  55. package/templates/web3/contracts/lib/forge-std/test/Config.t.sol +381 -0
  56. package/templates/web3/contracts/lib/forge-std/test/LibVariable.t.sol +452 -0
  57. package/templates/web3/contracts/lib/forge-std/test/StdAssertions.t.sol +141 -0
  58. package/templates/web3/contracts/lib/forge-std/test/StdChains.t.sol +227 -0
  59. package/templates/web3/contracts/lib/forge-std/test/StdCheats.t.sol +638 -0
  60. package/templates/web3/contracts/lib/forge-std/test/StdConstants.t.sol +38 -0
  61. package/templates/web3/contracts/lib/forge-std/test/StdError.t.sol +119 -0
  62. package/templates/web3/contracts/lib/forge-std/test/StdJson.t.sol +49 -0
  63. package/templates/web3/contracts/lib/forge-std/test/StdMath.t.sol +202 -0
  64. package/templates/web3/contracts/lib/forge-std/test/StdStorage.t.sol +485 -0
  65. package/templates/web3/contracts/lib/forge-std/test/StdStyle.t.sol +110 -0
  66. package/templates/web3/contracts/lib/forge-std/test/StdToml.t.sol +49 -0
  67. package/templates/web3/contracts/lib/forge-std/test/StdUtils.t.sol +342 -0
  68. package/templates/web3/contracts/lib/forge-std/test/Vm.t.sol +18 -0
  69. package/templates/web3/contracts/lib/forge-std/test/compilation/CompilationScript.sol +8 -0
  70. package/templates/web3/contracts/lib/forge-std/test/compilation/CompilationScriptBase.sol +8 -0
  71. package/templates/web3/contracts/lib/forge-std/test/compilation/CompilationTest.sol +8 -0
  72. package/templates/web3/contracts/lib/forge-std/test/compilation/CompilationTestBase.sol +8 -0
  73. package/templates/web3/contracts/lib/forge-std/test/fixtures/broadcast.log.json +187 -0
  74. package/templates/web3/contracts/lib/forge-std/test/fixtures/config.toml +81 -0
  75. package/templates/web3/contracts/lib/forge-std/test/fixtures/test.json +8 -0
  76. package/templates/web3/contracts/lib/forge-std/test/fixtures/test.toml +6 -0
  77. package/templates/web3/package.json +1 -1
  78. package/templates/web3/src/components/App.js +23 -36
  79. package/templates/web3/src/components/CounterCard.js +45 -45
  80. package/templates/web3/src/main.js +5 -7
  81. package/templates/vanilla/node_modules/.package-lock.json +0 -207
  82. package/templates/vanilla/node_modules/@esbuild/darwin-x64/README.md +0 -3
  83. package/templates/vanilla/node_modules/@esbuild/darwin-x64/bin/esbuild +0 -0
  84. package/templates/vanilla/node_modules/@esbuild/darwin-x64/package.json +0 -17
  85. package/templates/vanilla/node_modules/@monygroupcorp/microact/README.md +0 -154
  86. package/templates/vanilla/node_modules/@monygroupcorp/microact/dist/microact.cjs.js +0 -1749
  87. package/templates/vanilla/node_modules/@monygroupcorp/microact/dist/microact.cjs.js.map +0 -1
  88. package/templates/vanilla/node_modules/@monygroupcorp/microact/dist/microact.esm.js +0 -1743
  89. package/templates/vanilla/node_modules/@monygroupcorp/microact/dist/microact.esm.js.map +0 -1
  90. package/templates/vanilla/node_modules/@monygroupcorp/microact/dist/microact.umd.js +0 -2
  91. package/templates/vanilla/node_modules/@monygroupcorp/microact/dist/microact.umd.js.map +0 -1
  92. package/templates/vanilla/node_modules/@monygroupcorp/microact/example/index.html +0 -13
  93. package/templates/vanilla/node_modules/@monygroupcorp/microact/example/index.js +0 -63
  94. package/templates/vanilla/node_modules/@monygroupcorp/microact/package.json +0 -38
  95. package/templates/vanilla/node_modules/@monygroupcorp/microact/rollup.config.cjs +0 -30
  96. package/templates/vanilla/node_modules/@monygroupcorp/microact/src/Component.js +0 -831
  97. package/templates/vanilla/node_modules/@monygroupcorp/microact/src/DOMUpdater.js +0 -320
  98. package/templates/vanilla/node_modules/@monygroupcorp/microact/src/EventBus.js +0 -123
  99. package/templates/vanilla/node_modules/@monygroupcorp/microact/src/Router.js +0 -253
  100. package/templates/vanilla/node_modules/@monygroupcorp/microact/src/UpdateScheduler.js +0 -218
  101. package/templates/vanilla/node_modules/@monygroupcorp/microact/src/index.js +0 -6
  102. package/templates/vanilla/node_modules/esbuild/LICENSE.md +0 -21
  103. package/templates/vanilla/node_modules/esbuild/README.md +0 -3
  104. package/templates/vanilla/node_modules/esbuild/bin/esbuild +0 -0
  105. package/templates/vanilla/node_modules/esbuild/install.js +0 -287
  106. package/templates/vanilla/node_modules/esbuild/lib/main.d.ts +0 -660
  107. package/templates/vanilla/node_modules/esbuild/lib/main.js +0 -2393
  108. package/templates/vanilla/node_modules/esbuild/package.json +0 -42
  109. package/templates/vanilla/node_modules/nanoid/LICENSE +0 -20
  110. package/templates/vanilla/node_modules/nanoid/README.md +0 -39
  111. package/templates/vanilla/node_modules/nanoid/async/index.browser.cjs +0 -69
  112. package/templates/vanilla/node_modules/nanoid/async/index.browser.js +0 -34
  113. package/templates/vanilla/node_modules/nanoid/async/index.cjs +0 -71
  114. package/templates/vanilla/node_modules/nanoid/async/index.d.ts +0 -56
  115. package/templates/vanilla/node_modules/nanoid/async/index.js +0 -35
  116. package/templates/vanilla/node_modules/nanoid/async/index.native.js +0 -26
  117. package/templates/vanilla/node_modules/nanoid/async/package.json +0 -12
  118. package/templates/vanilla/node_modules/nanoid/bin/nanoid.cjs +0 -55
  119. package/templates/vanilla/node_modules/nanoid/index.browser.cjs +0 -72
  120. package/templates/vanilla/node_modules/nanoid/index.browser.js +0 -34
  121. package/templates/vanilla/node_modules/nanoid/index.cjs +0 -85
  122. package/templates/vanilla/node_modules/nanoid/index.d.cts +0 -91
  123. package/templates/vanilla/node_modules/nanoid/index.d.ts +0 -91
  124. package/templates/vanilla/node_modules/nanoid/index.js +0 -45
  125. package/templates/vanilla/node_modules/nanoid/nanoid.js +0 -1
  126. package/templates/vanilla/node_modules/nanoid/non-secure/index.cjs +0 -34
  127. package/templates/vanilla/node_modules/nanoid/non-secure/index.d.ts +0 -33
  128. package/templates/vanilla/node_modules/nanoid/non-secure/index.js +0 -21
  129. package/templates/vanilla/node_modules/nanoid/non-secure/package.json +0 -6
  130. package/templates/vanilla/node_modules/nanoid/package.json +0 -89
  131. package/templates/vanilla/node_modules/nanoid/url-alphabet/index.cjs +0 -7
  132. package/templates/vanilla/node_modules/nanoid/url-alphabet/index.js +0 -3
  133. package/templates/vanilla/node_modules/nanoid/url-alphabet/package.json +0 -6
  134. package/templates/vanilla/node_modules/picocolors/LICENSE +0 -15
  135. package/templates/vanilla/node_modules/picocolors/README.md +0 -21
  136. package/templates/vanilla/node_modules/picocolors/package.json +0 -25
  137. package/templates/vanilla/node_modules/picocolors/picocolors.browser.js +0 -4
  138. package/templates/vanilla/node_modules/picocolors/picocolors.d.ts +0 -5
  139. package/templates/vanilla/node_modules/picocolors/picocolors.js +0 -75
  140. package/templates/vanilla/node_modules/picocolors/types.d.ts +0 -51
  141. package/templates/vanilla/node_modules/postcss/LICENSE +0 -20
  142. package/templates/vanilla/node_modules/postcss/README.md +0 -29
  143. package/templates/vanilla/node_modules/postcss/lib/at-rule.d.ts +0 -140
  144. package/templates/vanilla/node_modules/postcss/lib/at-rule.js +0 -25
  145. package/templates/vanilla/node_modules/postcss/lib/comment.d.ts +0 -68
  146. package/templates/vanilla/node_modules/postcss/lib/comment.js +0 -13
  147. package/templates/vanilla/node_modules/postcss/lib/container.d.ts +0 -483
  148. package/templates/vanilla/node_modules/postcss/lib/container.js +0 -447
  149. package/templates/vanilla/node_modules/postcss/lib/css-syntax-error.d.ts +0 -248
  150. package/templates/vanilla/node_modules/postcss/lib/css-syntax-error.js +0 -133
  151. package/templates/vanilla/node_modules/postcss/lib/declaration.d.ts +0 -151
  152. package/templates/vanilla/node_modules/postcss/lib/declaration.js +0 -24
  153. package/templates/vanilla/node_modules/postcss/lib/document.d.ts +0 -69
  154. package/templates/vanilla/node_modules/postcss/lib/document.js +0 -33
  155. package/templates/vanilla/node_modules/postcss/lib/fromJSON.d.ts +0 -9
  156. package/templates/vanilla/node_modules/postcss/lib/fromJSON.js +0 -54
  157. package/templates/vanilla/node_modules/postcss/lib/input.d.ts +0 -227
  158. package/templates/vanilla/node_modules/postcss/lib/input.js +0 -265
  159. package/templates/vanilla/node_modules/postcss/lib/lazy-result.d.ts +0 -190
  160. package/templates/vanilla/node_modules/postcss/lib/lazy-result.js +0 -550
  161. package/templates/vanilla/node_modules/postcss/lib/list.d.ts +0 -60
  162. package/templates/vanilla/node_modules/postcss/lib/list.js +0 -58
  163. package/templates/vanilla/node_modules/postcss/lib/map-generator.js +0 -368
  164. package/templates/vanilla/node_modules/postcss/lib/no-work-result.d.ts +0 -46
  165. package/templates/vanilla/node_modules/postcss/lib/no-work-result.js +0 -138
  166. package/templates/vanilla/node_modules/postcss/lib/node.d.ts +0 -556
  167. package/templates/vanilla/node_modules/postcss/lib/node.js +0 -449
  168. package/templates/vanilla/node_modules/postcss/lib/parse.d.ts +0 -9
  169. package/templates/vanilla/node_modules/postcss/lib/parse.js +0 -42
  170. package/templates/vanilla/node_modules/postcss/lib/parser.js +0 -611
  171. package/templates/vanilla/node_modules/postcss/lib/postcss.d.mts +0 -69
  172. package/templates/vanilla/node_modules/postcss/lib/postcss.d.ts +0 -458
  173. package/templates/vanilla/node_modules/postcss/lib/postcss.js +0 -101
  174. package/templates/vanilla/node_modules/postcss/lib/postcss.mjs +0 -30
  175. package/templates/vanilla/node_modules/postcss/lib/previous-map.d.ts +0 -81
  176. package/templates/vanilla/node_modules/postcss/lib/previous-map.js +0 -144
  177. package/templates/vanilla/node_modules/postcss/lib/processor.d.ts +0 -115
  178. package/templates/vanilla/node_modules/postcss/lib/processor.js +0 -67
  179. package/templates/vanilla/node_modules/postcss/lib/result.d.ts +0 -205
  180. package/templates/vanilla/node_modules/postcss/lib/result.js +0 -42
  181. package/templates/vanilla/node_modules/postcss/lib/root.d.ts +0 -87
  182. package/templates/vanilla/node_modules/postcss/lib/root.js +0 -61
  183. package/templates/vanilla/node_modules/postcss/lib/rule.d.ts +0 -126
  184. package/templates/vanilla/node_modules/postcss/lib/rule.js +0 -27
  185. package/templates/vanilla/node_modules/postcss/lib/stringifier.d.ts +0 -46
  186. package/templates/vanilla/node_modules/postcss/lib/stringifier.js +0 -353
  187. package/templates/vanilla/node_modules/postcss/lib/stringify.d.ts +0 -9
  188. package/templates/vanilla/node_modules/postcss/lib/stringify.js +0 -11
  189. package/templates/vanilla/node_modules/postcss/lib/symbols.js +0 -5
  190. package/templates/vanilla/node_modules/postcss/lib/terminal-highlight.js +0 -70
  191. package/templates/vanilla/node_modules/postcss/lib/tokenize.js +0 -266
  192. package/templates/vanilla/node_modules/postcss/lib/warn-once.js +0 -13
  193. package/templates/vanilla/node_modules/postcss/lib/warning.d.ts +0 -147
  194. package/templates/vanilla/node_modules/postcss/lib/warning.js +0 -37
  195. package/templates/vanilla/node_modules/postcss/package.json +0 -88
  196. package/templates/vanilla/node_modules/rollup/LICENSE.md +0 -695
  197. package/templates/vanilla/node_modules/rollup/README.md +0 -125
  198. package/templates/vanilla/node_modules/rollup/dist/bin/rollup +0 -1715
  199. package/templates/vanilla/node_modules/rollup/dist/es/getLogFilter.js +0 -64
  200. package/templates/vanilla/node_modules/rollup/dist/es/package.json +0 -1
  201. package/templates/vanilla/node_modules/rollup/dist/es/rollup.js +0 -17
  202. package/templates/vanilla/node_modules/rollup/dist/es/shared/node-entry.js +0 -27273
  203. package/templates/vanilla/node_modules/rollup/dist/es/shared/watch.js +0 -4857
  204. package/templates/vanilla/node_modules/rollup/dist/getLogFilter.d.ts +0 -5
  205. package/templates/vanilla/node_modules/rollup/dist/getLogFilter.js +0 -69
  206. package/templates/vanilla/node_modules/rollup/dist/loadConfigFile.d.ts +0 -20
  207. package/templates/vanilla/node_modules/rollup/dist/loadConfigFile.js +0 -29
  208. package/templates/vanilla/node_modules/rollup/dist/rollup.d.ts +0 -1012
  209. package/templates/vanilla/node_modules/rollup/dist/rollup.js +0 -31
  210. package/templates/vanilla/node_modules/rollup/dist/shared/fsevents-importer.js +0 -37
  211. package/templates/vanilla/node_modules/rollup/dist/shared/index.js +0 -4571
  212. package/templates/vanilla/node_modules/rollup/dist/shared/loadConfigFile.js +0 -546
  213. package/templates/vanilla/node_modules/rollup/dist/shared/rollup.js +0 -27351
  214. package/templates/vanilla/node_modules/rollup/dist/shared/watch-cli.js +0 -561
  215. package/templates/vanilla/node_modules/rollup/dist/shared/watch-proxy.js +0 -87
  216. package/templates/vanilla/node_modules/rollup/dist/shared/watch.js +0 -316
  217. package/templates/vanilla/node_modules/rollup/package.json +0 -181
  218. package/templates/vanilla/node_modules/source-map-js/LICENSE +0 -28
  219. package/templates/vanilla/node_modules/source-map-js/README.md +0 -765
  220. package/templates/vanilla/node_modules/source-map-js/lib/array-set.js +0 -121
  221. package/templates/vanilla/node_modules/source-map-js/lib/base64-vlq.js +0 -140
  222. package/templates/vanilla/node_modules/source-map-js/lib/base64.js +0 -67
  223. package/templates/vanilla/node_modules/source-map-js/lib/binary-search.js +0 -111
  224. package/templates/vanilla/node_modules/source-map-js/lib/mapping-list.js +0 -79
  225. package/templates/vanilla/node_modules/source-map-js/lib/quick-sort.js +0 -132
  226. package/templates/vanilla/node_modules/source-map-js/lib/source-map-consumer.d.ts +0 -1
  227. package/templates/vanilla/node_modules/source-map-js/lib/source-map-consumer.js +0 -1188
  228. package/templates/vanilla/node_modules/source-map-js/lib/source-map-generator.d.ts +0 -1
  229. package/templates/vanilla/node_modules/source-map-js/lib/source-map-generator.js +0 -444
  230. package/templates/vanilla/node_modules/source-map-js/lib/source-node.d.ts +0 -1
  231. package/templates/vanilla/node_modules/source-map-js/lib/source-node.js +0 -413
  232. package/templates/vanilla/node_modules/source-map-js/lib/util.js +0 -594
  233. package/templates/vanilla/node_modules/source-map-js/package.json +0 -71
  234. package/templates/vanilla/node_modules/source-map-js/source-map.d.ts +0 -104
  235. package/templates/vanilla/node_modules/source-map-js/source-map.js +0 -8
  236. package/templates/vanilla/node_modules/vite/LICENSE.md +0 -3396
  237. package/templates/vanilla/node_modules/vite/README.md +0 -20
  238. package/templates/vanilla/node_modules/vite/bin/openChrome.applescript +0 -95
  239. package/templates/vanilla/node_modules/vite/bin/vite.js +0 -61
  240. package/templates/vanilla/node_modules/vite/client.d.ts +0 -281
  241. package/templates/vanilla/node_modules/vite/dist/client/client.mjs +0 -725
  242. package/templates/vanilla/node_modules/vite/dist/client/client.mjs.map +0 -1
  243. package/templates/vanilla/node_modules/vite/dist/client/env.mjs +0 -30
  244. package/templates/vanilla/node_modules/vite/dist/client/env.mjs.map +0 -1
  245. package/templates/vanilla/node_modules/vite/dist/node/chunks/dep-7ec6f216.js +0 -914
  246. package/templates/vanilla/node_modules/vite/dist/node/chunks/dep-827b23df.js +0 -66713
  247. package/templates/vanilla/node_modules/vite/dist/node/chunks/dep-c423598f.js +0 -561
  248. package/templates/vanilla/node_modules/vite/dist/node/chunks/dep-f0c7dae0.js +0 -7930
  249. package/templates/vanilla/node_modules/vite/dist/node/chunks/dep-f1e8587f.js +0 -7646
  250. package/templates/vanilla/node_modules/vite/dist/node/cli.js +0 -929
  251. package/templates/vanilla/node_modules/vite/dist/node/constants.js +0 -130
  252. package/templates/vanilla/node_modules/vite/dist/node/index.d.ts +0 -3548
  253. package/templates/vanilla/node_modules/vite/dist/node/index.js +0 -158
  254. package/templates/vanilla/node_modules/vite/dist/node-cjs/publicUtils.cjs +0 -4555
  255. package/templates/vanilla/node_modules/vite/index.cjs +0 -34
  256. package/templates/vanilla/node_modules/vite/package.json +0 -173
  257. package/templates/vanilla/node_modules/vite/types/customEvent.d.ts +0 -35
  258. package/templates/vanilla/node_modules/vite/types/hmrPayload.d.ts +0 -61
  259. package/templates/vanilla/node_modules/vite/types/hot.d.ts +0 -32
  260. package/templates/vanilla/node_modules/vite/types/importGlob.d.ts +0 -97
  261. package/templates/vanilla/node_modules/vite/types/importMeta.d.ts +0 -26
  262. package/templates/vanilla/node_modules/vite/types/metadata.d.ts +0 -10
  263. package/templates/vanilla/node_modules/vite/types/package.json +0 -4
  264. package/templates/vanilla/package-lock.json +0 -589
@@ -1,594 +0,0 @@
1
- /* -*- Mode: js; js-indent-level: 2; -*- */
2
- /*
3
- * Copyright 2011 Mozilla Foundation and contributors
4
- * Licensed under the New BSD license. See LICENSE or:
5
- * http://opensource.org/licenses/BSD-3-Clause
6
- */
7
-
8
- /**
9
- * This is a helper function for getting values from parameter/options
10
- * objects.
11
- *
12
- * @param args The object we are extracting values from
13
- * @param name The name of the property we are getting.
14
- * @param defaultValue An optional value to return if the property is missing
15
- * from the object. If this is not specified and the property is missing, an
16
- * error will be thrown.
17
- */
18
- function getArg(aArgs, aName, aDefaultValue) {
19
- if (aName in aArgs) {
20
- return aArgs[aName];
21
- } else if (arguments.length === 3) {
22
- return aDefaultValue;
23
- } else {
24
- throw new Error('"' + aName + '" is a required argument.');
25
- }
26
- }
27
- exports.getArg = getArg;
28
-
29
- var urlRegexp = /^(?:([\w+\-.]+):)?\/\/(?:(\w+:\w+)@)?([\w.-]*)(?::(\d+))?(.*)$/;
30
- var dataUrlRegexp = /^data:.+\,.+$/;
31
-
32
- function urlParse(aUrl) {
33
- var match = aUrl.match(urlRegexp);
34
- if (!match) {
35
- return null;
36
- }
37
- return {
38
- scheme: match[1],
39
- auth: match[2],
40
- host: match[3],
41
- port: match[4],
42
- path: match[5]
43
- };
44
- }
45
- exports.urlParse = urlParse;
46
-
47
- function urlGenerate(aParsedUrl) {
48
- var url = '';
49
- if (aParsedUrl.scheme) {
50
- url += aParsedUrl.scheme + ':';
51
- }
52
- url += '//';
53
- if (aParsedUrl.auth) {
54
- url += aParsedUrl.auth + '@';
55
- }
56
- if (aParsedUrl.host) {
57
- url += aParsedUrl.host;
58
- }
59
- if (aParsedUrl.port) {
60
- url += ":" + aParsedUrl.port
61
- }
62
- if (aParsedUrl.path) {
63
- url += aParsedUrl.path;
64
- }
65
- return url;
66
- }
67
- exports.urlGenerate = urlGenerate;
68
-
69
- var MAX_CACHED_INPUTS = 32;
70
-
71
- /**
72
- * Takes some function `f(input) -> result` and returns a memoized version of
73
- * `f`.
74
- *
75
- * We keep at most `MAX_CACHED_INPUTS` memoized results of `f` alive. The
76
- * memoization is a dumb-simple, linear least-recently-used cache.
77
- */
78
- function lruMemoize(f) {
79
- var cache = [];
80
-
81
- return function(input) {
82
- for (var i = 0; i < cache.length; i++) {
83
- if (cache[i].input === input) {
84
- var temp = cache[0];
85
- cache[0] = cache[i];
86
- cache[i] = temp;
87
- return cache[0].result;
88
- }
89
- }
90
-
91
- var result = f(input);
92
-
93
- cache.unshift({
94
- input,
95
- result,
96
- });
97
-
98
- if (cache.length > MAX_CACHED_INPUTS) {
99
- cache.pop();
100
- }
101
-
102
- return result;
103
- };
104
- }
105
-
106
- /**
107
- * Normalizes a path, or the path portion of a URL:
108
- *
109
- * - Replaces consecutive slashes with one slash.
110
- * - Removes unnecessary '.' parts.
111
- * - Removes unnecessary '<dir>/..' parts.
112
- *
113
- * Based on code in the Node.js 'path' core module.
114
- *
115
- * @param aPath The path or url to normalize.
116
- */
117
- var normalize = lruMemoize(function normalize(aPath) {
118
- var path = aPath;
119
- var url = urlParse(aPath);
120
- if (url) {
121
- if (!url.path) {
122
- return aPath;
123
- }
124
- path = url.path;
125
- }
126
- var isAbsolute = exports.isAbsolute(path);
127
- // Split the path into parts between `/` characters. This is much faster than
128
- // using `.split(/\/+/g)`.
129
- var parts = [];
130
- var start = 0;
131
- var i = 0;
132
- while (true) {
133
- start = i;
134
- i = path.indexOf("/", start);
135
- if (i === -1) {
136
- parts.push(path.slice(start));
137
- break;
138
- } else {
139
- parts.push(path.slice(start, i));
140
- while (i < path.length && path[i] === "/") {
141
- i++;
142
- }
143
- }
144
- }
145
-
146
- for (var part, up = 0, i = parts.length - 1; i >= 0; i--) {
147
- part = parts[i];
148
- if (part === '.') {
149
- parts.splice(i, 1);
150
- } else if (part === '..') {
151
- up++;
152
- } else if (up > 0) {
153
- if (part === '') {
154
- // The first part is blank if the path is absolute. Trying to go
155
- // above the root is a no-op. Therefore we can remove all '..' parts
156
- // directly after the root.
157
- parts.splice(i + 1, up);
158
- up = 0;
159
- } else {
160
- parts.splice(i, 2);
161
- up--;
162
- }
163
- }
164
- }
165
- path = parts.join('/');
166
-
167
- if (path === '') {
168
- path = isAbsolute ? '/' : '.';
169
- }
170
-
171
- if (url) {
172
- url.path = path;
173
- return urlGenerate(url);
174
- }
175
- return path;
176
- });
177
- exports.normalize = normalize;
178
-
179
- /**
180
- * Joins two paths/URLs.
181
- *
182
- * @param aRoot The root path or URL.
183
- * @param aPath The path or URL to be joined with the root.
184
- *
185
- * - If aPath is a URL or a data URI, aPath is returned, unless aPath is a
186
- * scheme-relative URL: Then the scheme of aRoot, if any, is prepended
187
- * first.
188
- * - Otherwise aPath is a path. If aRoot is a URL, then its path portion
189
- * is updated with the result and aRoot is returned. Otherwise the result
190
- * is returned.
191
- * - If aPath is absolute, the result is aPath.
192
- * - Otherwise the two paths are joined with a slash.
193
- * - Joining for example 'http://' and 'www.example.com' is also supported.
194
- */
195
- function join(aRoot, aPath) {
196
- if (aRoot === "") {
197
- aRoot = ".";
198
- }
199
- if (aPath === "") {
200
- aPath = ".";
201
- }
202
- var aPathUrl = urlParse(aPath);
203
- var aRootUrl = urlParse(aRoot);
204
- if (aRootUrl) {
205
- aRoot = aRootUrl.path || '/';
206
- }
207
-
208
- // `join(foo, '//www.example.org')`
209
- if (aPathUrl && !aPathUrl.scheme) {
210
- if (aRootUrl) {
211
- aPathUrl.scheme = aRootUrl.scheme;
212
- }
213
- return urlGenerate(aPathUrl);
214
- }
215
-
216
- if (aPathUrl || aPath.match(dataUrlRegexp)) {
217
- return aPath;
218
- }
219
-
220
- // `join('http://', 'www.example.com')`
221
- if (aRootUrl && !aRootUrl.host && !aRootUrl.path) {
222
- aRootUrl.host = aPath;
223
- return urlGenerate(aRootUrl);
224
- }
225
-
226
- var joined = aPath.charAt(0) === '/'
227
- ? aPath
228
- : normalize(aRoot.replace(/\/+$/, '') + '/' + aPath);
229
-
230
- if (aRootUrl) {
231
- aRootUrl.path = joined;
232
- return urlGenerate(aRootUrl);
233
- }
234
- return joined;
235
- }
236
- exports.join = join;
237
-
238
- exports.isAbsolute = function (aPath) {
239
- return aPath.charAt(0) === '/' || urlRegexp.test(aPath);
240
- };
241
-
242
- /**
243
- * Make a path relative to a URL or another path.
244
- *
245
- * @param aRoot The root path or URL.
246
- * @param aPath The path or URL to be made relative to aRoot.
247
- */
248
- function relative(aRoot, aPath) {
249
- if (aRoot === "") {
250
- aRoot = ".";
251
- }
252
-
253
- aRoot = aRoot.replace(/\/$/, '');
254
-
255
- // It is possible for the path to be above the root. In this case, simply
256
- // checking whether the root is a prefix of the path won't work. Instead, we
257
- // need to remove components from the root one by one, until either we find
258
- // a prefix that fits, or we run out of components to remove.
259
- var level = 0;
260
- while (aPath.indexOf(aRoot + '/') !== 0) {
261
- var index = aRoot.lastIndexOf("/");
262
- if (index < 0) {
263
- return aPath;
264
- }
265
-
266
- // If the only part of the root that is left is the scheme (i.e. http://,
267
- // file:///, etc.), one or more slashes (/), or simply nothing at all, we
268
- // have exhausted all components, so the path is not relative to the root.
269
- aRoot = aRoot.slice(0, index);
270
- if (aRoot.match(/^([^\/]+:\/)?\/*$/)) {
271
- return aPath;
272
- }
273
-
274
- ++level;
275
- }
276
-
277
- // Make sure we add a "../" for each component we removed from the root.
278
- return Array(level + 1).join("../") + aPath.substr(aRoot.length + 1);
279
- }
280
- exports.relative = relative;
281
-
282
- var supportsNullProto = (function () {
283
- var obj = Object.create(null);
284
- return !('__proto__' in obj);
285
- }());
286
-
287
- function identity (s) {
288
- return s;
289
- }
290
-
291
- /**
292
- * Because behavior goes wacky when you set `__proto__` on objects, we
293
- * have to prefix all the strings in our set with an arbitrary character.
294
- *
295
- * See https://github.com/mozilla/source-map/pull/31 and
296
- * https://github.com/mozilla/source-map/issues/30
297
- *
298
- * @param String aStr
299
- */
300
- function toSetString(aStr) {
301
- if (isProtoString(aStr)) {
302
- return '$' + aStr;
303
- }
304
-
305
- return aStr;
306
- }
307
- exports.toSetString = supportsNullProto ? identity : toSetString;
308
-
309
- function fromSetString(aStr) {
310
- if (isProtoString(aStr)) {
311
- return aStr.slice(1);
312
- }
313
-
314
- return aStr;
315
- }
316
- exports.fromSetString = supportsNullProto ? identity : fromSetString;
317
-
318
- function isProtoString(s) {
319
- if (!s) {
320
- return false;
321
- }
322
-
323
- var length = s.length;
324
-
325
- if (length < 9 /* "__proto__".length */) {
326
- return false;
327
- }
328
-
329
- if (s.charCodeAt(length - 1) !== 95 /* '_' */ ||
330
- s.charCodeAt(length - 2) !== 95 /* '_' */ ||
331
- s.charCodeAt(length - 3) !== 111 /* 'o' */ ||
332
- s.charCodeAt(length - 4) !== 116 /* 't' */ ||
333
- s.charCodeAt(length - 5) !== 111 /* 'o' */ ||
334
- s.charCodeAt(length - 6) !== 114 /* 'r' */ ||
335
- s.charCodeAt(length - 7) !== 112 /* 'p' */ ||
336
- s.charCodeAt(length - 8) !== 95 /* '_' */ ||
337
- s.charCodeAt(length - 9) !== 95 /* '_' */) {
338
- return false;
339
- }
340
-
341
- for (var i = length - 10; i >= 0; i--) {
342
- if (s.charCodeAt(i) !== 36 /* '$' */) {
343
- return false;
344
- }
345
- }
346
-
347
- return true;
348
- }
349
-
350
- /**
351
- * Comparator between two mappings where the original positions are compared.
352
- *
353
- * Optionally pass in `true` as `onlyCompareGenerated` to consider two
354
- * mappings with the same original source/line/column, but different generated
355
- * line and column the same. Useful when searching for a mapping with a
356
- * stubbed out mapping.
357
- */
358
- function compareByOriginalPositions(mappingA, mappingB, onlyCompareOriginal) {
359
- var cmp = strcmp(mappingA.source, mappingB.source);
360
- if (cmp !== 0) {
361
- return cmp;
362
- }
363
-
364
- cmp = mappingA.originalLine - mappingB.originalLine;
365
- if (cmp !== 0) {
366
- return cmp;
367
- }
368
-
369
- cmp = mappingA.originalColumn - mappingB.originalColumn;
370
- if (cmp !== 0 || onlyCompareOriginal) {
371
- return cmp;
372
- }
373
-
374
- cmp = mappingA.generatedColumn - mappingB.generatedColumn;
375
- if (cmp !== 0) {
376
- return cmp;
377
- }
378
-
379
- cmp = mappingA.generatedLine - mappingB.generatedLine;
380
- if (cmp !== 0) {
381
- return cmp;
382
- }
383
-
384
- return strcmp(mappingA.name, mappingB.name);
385
- }
386
- exports.compareByOriginalPositions = compareByOriginalPositions;
387
-
388
- function compareByOriginalPositionsNoSource(mappingA, mappingB, onlyCompareOriginal) {
389
- var cmp
390
-
391
- cmp = mappingA.originalLine - mappingB.originalLine;
392
- if (cmp !== 0) {
393
- return cmp;
394
- }
395
-
396
- cmp = mappingA.originalColumn - mappingB.originalColumn;
397
- if (cmp !== 0 || onlyCompareOriginal) {
398
- return cmp;
399
- }
400
-
401
- cmp = mappingA.generatedColumn - mappingB.generatedColumn;
402
- if (cmp !== 0) {
403
- return cmp;
404
- }
405
-
406
- cmp = mappingA.generatedLine - mappingB.generatedLine;
407
- if (cmp !== 0) {
408
- return cmp;
409
- }
410
-
411
- return strcmp(mappingA.name, mappingB.name);
412
- }
413
- exports.compareByOriginalPositionsNoSource = compareByOriginalPositionsNoSource;
414
-
415
- /**
416
- * Comparator between two mappings with deflated source and name indices where
417
- * the generated positions are compared.
418
- *
419
- * Optionally pass in `true` as `onlyCompareGenerated` to consider two
420
- * mappings with the same generated line and column, but different
421
- * source/name/original line and column the same. Useful when searching for a
422
- * mapping with a stubbed out mapping.
423
- */
424
- function compareByGeneratedPositionsDeflated(mappingA, mappingB, onlyCompareGenerated) {
425
- var cmp = mappingA.generatedLine - mappingB.generatedLine;
426
- if (cmp !== 0) {
427
- return cmp;
428
- }
429
-
430
- cmp = mappingA.generatedColumn - mappingB.generatedColumn;
431
- if (cmp !== 0 || onlyCompareGenerated) {
432
- return cmp;
433
- }
434
-
435
- cmp = strcmp(mappingA.source, mappingB.source);
436
- if (cmp !== 0) {
437
- return cmp;
438
- }
439
-
440
- cmp = mappingA.originalLine - mappingB.originalLine;
441
- if (cmp !== 0) {
442
- return cmp;
443
- }
444
-
445
- cmp = mappingA.originalColumn - mappingB.originalColumn;
446
- if (cmp !== 0) {
447
- return cmp;
448
- }
449
-
450
- return strcmp(mappingA.name, mappingB.name);
451
- }
452
- exports.compareByGeneratedPositionsDeflated = compareByGeneratedPositionsDeflated;
453
-
454
- function compareByGeneratedPositionsDeflatedNoLine(mappingA, mappingB, onlyCompareGenerated) {
455
- var cmp = mappingA.generatedColumn - mappingB.generatedColumn;
456
- if (cmp !== 0 || onlyCompareGenerated) {
457
- return cmp;
458
- }
459
-
460
- cmp = strcmp(mappingA.source, mappingB.source);
461
- if (cmp !== 0) {
462
- return cmp;
463
- }
464
-
465
- cmp = mappingA.originalLine - mappingB.originalLine;
466
- if (cmp !== 0) {
467
- return cmp;
468
- }
469
-
470
- cmp = mappingA.originalColumn - mappingB.originalColumn;
471
- if (cmp !== 0) {
472
- return cmp;
473
- }
474
-
475
- return strcmp(mappingA.name, mappingB.name);
476
- }
477
- exports.compareByGeneratedPositionsDeflatedNoLine = compareByGeneratedPositionsDeflatedNoLine;
478
-
479
- function strcmp(aStr1, aStr2) {
480
- if (aStr1 === aStr2) {
481
- return 0;
482
- }
483
-
484
- if (aStr1 === null) {
485
- return 1; // aStr2 !== null
486
- }
487
-
488
- if (aStr2 === null) {
489
- return -1; // aStr1 !== null
490
- }
491
-
492
- if (aStr1 > aStr2) {
493
- return 1;
494
- }
495
-
496
- return -1;
497
- }
498
-
499
- /**
500
- * Comparator between two mappings with inflated source and name strings where
501
- * the generated positions are compared.
502
- */
503
- function compareByGeneratedPositionsInflated(mappingA, mappingB) {
504
- var cmp = mappingA.generatedLine - mappingB.generatedLine;
505
- if (cmp !== 0) {
506
- return cmp;
507
- }
508
-
509
- cmp = mappingA.generatedColumn - mappingB.generatedColumn;
510
- if (cmp !== 0) {
511
- return cmp;
512
- }
513
-
514
- cmp = strcmp(mappingA.source, mappingB.source);
515
- if (cmp !== 0) {
516
- return cmp;
517
- }
518
-
519
- cmp = mappingA.originalLine - mappingB.originalLine;
520
- if (cmp !== 0) {
521
- return cmp;
522
- }
523
-
524
- cmp = mappingA.originalColumn - mappingB.originalColumn;
525
- if (cmp !== 0) {
526
- return cmp;
527
- }
528
-
529
- return strcmp(mappingA.name, mappingB.name);
530
- }
531
- exports.compareByGeneratedPositionsInflated = compareByGeneratedPositionsInflated;
532
-
533
- /**
534
- * Strip any JSON XSSI avoidance prefix from the string (as documented
535
- * in the source maps specification), and then parse the string as
536
- * JSON.
537
- */
538
- function parseSourceMapInput(str) {
539
- return JSON.parse(str.replace(/^\)]}'[^\n]*\n/, ''));
540
- }
541
- exports.parseSourceMapInput = parseSourceMapInput;
542
-
543
- /**
544
- * Compute the URL of a source given the the source root, the source's
545
- * URL, and the source map's URL.
546
- */
547
- function computeSourceURL(sourceRoot, sourceURL, sourceMapURL) {
548
- sourceURL = sourceURL || '';
549
-
550
- if (sourceRoot) {
551
- // This follows what Chrome does.
552
- if (sourceRoot[sourceRoot.length - 1] !== '/' && sourceURL[0] !== '/') {
553
- sourceRoot += '/';
554
- }
555
- // The spec says:
556
- // Line 4: An optional source root, useful for relocating source
557
- // files on a server or removing repeated values in the
558
- // “sources” entry. This value is prepended to the individual
559
- // entries in the “source” field.
560
- sourceURL = sourceRoot + sourceURL;
561
- }
562
-
563
- // Historically, SourceMapConsumer did not take the sourceMapURL as
564
- // a parameter. This mode is still somewhat supported, which is why
565
- // this code block is conditional. However, it's preferable to pass
566
- // the source map URL to SourceMapConsumer, so that this function
567
- // can implement the source URL resolution algorithm as outlined in
568
- // the spec. This block is basically the equivalent of:
569
- // new URL(sourceURL, sourceMapURL).toString()
570
- // ... except it avoids using URL, which wasn't available in the
571
- // older releases of node still supported by this library.
572
- //
573
- // The spec says:
574
- // If the sources are not absolute URLs after prepending of the
575
- // “sourceRoot”, the sources are resolved relative to the
576
- // SourceMap (like resolving script src in a html document).
577
- if (sourceMapURL) {
578
- var parsed = urlParse(sourceMapURL);
579
- if (!parsed) {
580
- throw new Error("sourceMapURL could not be parsed");
581
- }
582
- if (parsed.path) {
583
- // Strip the last path component, but keep the "/".
584
- var index = parsed.path.lastIndexOf('/');
585
- if (index >= 0) {
586
- parsed.path = parsed.path.substring(0, index + 1);
587
- }
588
- }
589
- sourceURL = join(urlGenerate(parsed), sourceURL);
590
- }
591
-
592
- return normalize(sourceURL);
593
- }
594
- exports.computeSourceURL = computeSourceURL;
@@ -1,71 +0,0 @@
1
- {
2
- "name": "source-map-js",
3
- "description": "Generates and consumes source maps",
4
- "version": "1.2.1",
5
- "homepage": "https://github.com/7rulnik/source-map-js",
6
- "author": "Valentin 7rulnik Semirulnik <v7rulnik@gmail.com>",
7
- "contributors": [
8
- "Nick Fitzgerald <nfitzgerald@mozilla.com>",
9
- "Tobias Koppers <tobias.koppers@googlemail.com>",
10
- "Duncan Beevers <duncan@dweebd.com>",
11
- "Stephen Crane <scrane@mozilla.com>",
12
- "Ryan Seddon <seddon.ryan@gmail.com>",
13
- "Miles Elam <miles.elam@deem.com>",
14
- "Mihai Bazon <mihai.bazon@gmail.com>",
15
- "Michael Ficarra <github.public.email@michael.ficarra.me>",
16
- "Todd Wolfson <todd@twolfson.com>",
17
- "Alexander Solovyov <alexander@solovyov.net>",
18
- "Felix Gnass <fgnass@gmail.com>",
19
- "Conrad Irwin <conrad.irwin@gmail.com>",
20
- "usrbincc <usrbincc@yahoo.com>",
21
- "David Glasser <glasser@davidglasser.net>",
22
- "Chase Douglas <chase@newrelic.com>",
23
- "Evan Wallace <evan.exe@gmail.com>",
24
- "Heather Arthur <fayearthur@gmail.com>",
25
- "Hugh Kennedy <hughskennedy@gmail.com>",
26
- "David Glasser <glasser@davidglasser.net>",
27
- "Simon Lydell <simon.lydell@gmail.com>",
28
- "Jmeas Smith <jellyes2@gmail.com>",
29
- "Michael Z Goddard <mzgoddard@gmail.com>",
30
- "azu <azu@users.noreply.github.com>",
31
- "John Gozde <john@gozde.ca>",
32
- "Adam Kirkton <akirkton@truefitinnovation.com>",
33
- "Chris Montgomery <christopher.montgomery@dowjones.com>",
34
- "J. Ryan Stinnett <jryans@gmail.com>",
35
- "Jack Herrington <jherrington@walmartlabs.com>",
36
- "Chris Truter <jeffpalentine@gmail.com>",
37
- "Daniel Espeset <daniel@danielespeset.com>",
38
- "Jamie Wong <jamie.lf.wong@gmail.com>",
39
- "Eddy Bruël <ejpbruel@mozilla.com>",
40
- "Hawken Rives <hawkrives@gmail.com>",
41
- "Gilad Peleg <giladp007@gmail.com>",
42
- "djchie <djchie.dev@gmail.com>",
43
- "Gary Ye <garysye@gmail.com>",
44
- "Nicolas Lalevée <nicolas.lalevee@hibnet.org>"
45
- ],
46
- "repository": "7rulnik/source-map-js",
47
- "main": "./source-map.js",
48
- "files": [
49
- "source-map.js",
50
- "source-map.d.ts",
51
- "lib/"
52
- ],
53
- "engines": {
54
- "node": ">=0.10.0"
55
- },
56
- "license": "BSD-3-Clause",
57
- "scripts": {
58
- "test": "npm run build && node test/run-tests.js",
59
- "build": "webpack --color",
60
- "toc": "doctoc --title '## Table of Contents' README.md && doctoc --title '## Table of Contents' CONTRIBUTING.md"
61
- },
62
- "devDependencies": {
63
- "clean-publish": "^3.1.0",
64
- "doctoc": "^0.15.0",
65
- "webpack": "^1.12.0"
66
- },
67
- "clean-publish": {
68
- "cleanDocs": true
69
- },
70
- "typings": "source-map.d.ts"
71
- }