jsf.js_next_gen 4.1.0-beta.2 → 4.1.0-beta.21

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 (413) hide show
  1. package/AI_CONTRIBUTIONS.md +71 -0
  2. package/README.md +254 -78
  3. package/api-extractor.faces.json +38 -0
  4. package/dist/docs/assets/hierarchy.js +1 -1
  5. package/dist/docs/assets/navigation.js +1 -1
  6. package/dist/docs/assets/search.js +1 -1
  7. package/dist/docs/functions/faces.ajax.addOnError.html +2 -2
  8. package/dist/docs/functions/faces.ajax.addOnEvent.html +2 -2
  9. package/dist/docs/functions/faces.ajax.request.html +2 -2
  10. package/dist/docs/functions/faces.ajax.response.html +2 -2
  11. package/dist/docs/functions/faces.getClientWindow.html +2 -2
  12. package/dist/docs/functions/faces.getProjectStage.html +2 -2
  13. package/dist/docs/functions/faces.getViewState.html +1 -1
  14. package/dist/docs/functions/faces.push.close.html +1 -1
  15. package/dist/docs/functions/faces.push.init.html +6 -6
  16. package/dist/docs/functions/faces.push.open.html +1 -1
  17. package/dist/docs/functions/faces.util.chain.html +2 -2
  18. package/dist/docs/functions/myfaces.ab.html +3 -3
  19. package/dist/docs/functions/myfaces.onDomReady.html +1 -1
  20. package/dist/docs/functions/myfaces.reserveNamespace.html +1 -1
  21. package/dist/docs/hierarchy.html +1 -1
  22. package/dist/docs/index.html +292 -71
  23. package/dist/docs/interfaces/faces.AjaxData.html +6 -0
  24. package/dist/docs/interfaces/faces.AjaxError.html +18 -0
  25. package/dist/docs/interfaces/faces.AjaxEvent.html +8 -0
  26. package/dist/docs/interfaces/faces.ajax.RequestContext.html +6 -0
  27. package/dist/docs/interfaces/faces.ajax.RequestOptions.html +10 -0
  28. package/dist/docs/modules/faces.ajax.html +1 -1
  29. package/dist/docs/modules/faces.html +1 -1
  30. package/dist/docs/modules/faces.push.html +1 -1
  31. package/dist/docs/modules/faces.util.html +1 -1
  32. package/dist/docs/modules/myfaces.html +1 -1
  33. package/dist/docs/modules.html +1 -1
  34. package/dist/docs/types/faces.AjaxErrorStatus.html +2 -0
  35. package/dist/docs/types/faces.AjaxEventStatus.html +2 -0
  36. package/dist/docs/types/faces.ProjectStage.html +2 -0
  37. package/dist/docs/types/faces.ajax.OnErrorCallback.html +2 -0
  38. package/dist/docs/types/faces.ajax.OnEventCallback.html +2 -0
  39. package/dist/docs/types/faces.push.OnCloseHandler.html +2 -0
  40. package/dist/docs/types/faces.push.OnErrorHandler.html +2 -0
  41. package/dist/docs/types/faces.push.OnMessageHandler.html +2 -0
  42. package/dist/docs/types/faces.push.OnOpenHandler.html +2 -0
  43. package/dist/docs/variables/faces.contextpath.html +1 -1
  44. package/dist/docs/variables/faces.implversion.html +1 -1
  45. package/dist/docs/variables/faces.separatorchar.html +1 -1
  46. package/dist/docs/variables/faces.specversion.html +1 -1
  47. package/dist/docs/variables/myfaces.oam.html +1 -1
  48. package/dist/window/faces-development.js +1801 -499
  49. package/dist/window/faces-development.js.map +1 -1
  50. package/{target/api/_api.js → dist/window/faces.d.ts} +124 -151
  51. package/dist/window/faces.js +1 -1
  52. package/dist/window/faces.js.LICENSE.txt +0 -17
  53. package/dist/window/faces.js.map +1 -1
  54. package/dist/window/jsf-development.js +1806 -513
  55. package/dist/window/jsf-development.js.map +1 -1
  56. package/{target/src/main/typescript/api/_api.js → dist/window/jsf.d.ts} +125 -153
  57. package/dist/window/jsf.js +1 -1
  58. package/dist/window/jsf.js.LICENSE.txt +0 -17
  59. package/dist/window/jsf.js.map +1 -1
  60. package/package.json +22 -18
  61. package/scripts/build-dts.mjs +239 -0
  62. package/src/main/typescript/@types/definitions/index.d.ts +22 -122
  63. package/{target/test/frameworkBase/_ext/monadish/fixtures/test2.js → src/main/typescript/@types/definitions/modules.d.ts} +18 -2
  64. package/src/main/typescript/api/_api.ts +132 -29
  65. package/{target/test/frameworkBase/_ext/monadish/fixtures/test.js → src/main/typescript/api/_api_ae_stub.d.ts} +6 -2
  66. package/src/main/typescript/api/faces.ts +2 -2
  67. package/src/main/typescript/api/jsf.ts +15 -23
  68. package/src/main/typescript/impl/AjaxImpl.ts +15 -15
  69. package/src/main/typescript/impl/PushImpl.ts +139 -69
  70. package/src/main/typescript/impl/core/Const.ts +2 -2
  71. package/src/main/typescript/impl/i18n/Messages.ts +1 -1
  72. package/src/main/typescript/impl/util/Assertions.ts +1 -2
  73. package/src/main/typescript/impl/util/AsyncRunnable.ts +3 -4
  74. package/src/main/typescript/impl/util/ExtDomQuery.ts +19 -19
  75. package/src/main/typescript/impl/util/FileUtils.ts +30 -14
  76. package/src/main/typescript/impl/util/HiddenInputBuilder.ts +34 -34
  77. package/src/main/typescript/impl/util/Lang.ts +19 -22
  78. package/src/main/typescript/impl/util/XhrQueueController.ts +25 -3
  79. package/src/main/typescript/impl/xhrCore/ErrorData.ts +17 -12
  80. package/src/main/typescript/impl/xhrCore/EventData.ts +8 -7
  81. package/src/main/typescript/impl/xhrCore/IResponseProcessor.ts +3 -3
  82. package/src/main/typescript/impl/xhrCore/RequestDataResolver.ts +7 -6
  83. package/src/main/typescript/impl/xhrCore/Response.ts +3 -3
  84. package/src/main/typescript/impl/xhrCore/ResponseDataResolver.ts +0 -38
  85. package/src/main/typescript/impl/xhrCore/ResponseProcessor.ts +17 -15
  86. package/src/main/typescript/impl/xhrCore/XhrFormData.ts +72 -63
  87. package/src/main/typescript/impl/xhrCore/XhrRequest.ts +80 -134
  88. package/src/main/typescript/mona_dish_shim.ts +6 -2
  89. package/src/main/typescript/myfaces/OamSubmit.ts +10 -6
  90. package/src/main/typescript/test/api/JsfPushShimTest.spec.ts +126 -0
  91. package/src/main/typescript/test/api/MyFacesABTest.spec.ts +16 -0
  92. package/src/main/typescript/test/api/PushTypeCompatibility.ts +65 -0
  93. package/src/main/typescript/test/frameworkBase/LangTest.spec.ts +16 -0
  94. package/src/main/typescript/test/frameworkBase/_ext/monadish/DomQueryTest.spec.ts +1 -0
  95. package/src/main/typescript/test/frameworkBase/_ext/monadish/XmlQueryTest.spec.ts +16 -0
  96. package/src/main/typescript/test/frameworkBase/_ext/monadish/markups/tobago-with-header.ts +16 -0
  97. package/src/main/typescript/test/frameworkBase/_ext/monadish/markups/tobago-without-header.ts +16 -0
  98. package/src/main/typescript/test/frameworkBase/_ext/shared/StandardInits.ts +55 -9
  99. package/src/main/typescript/test/frameworkBase/_ext/shared/XmlResponses.ts +16 -0
  100. package/src/main/typescript/test/impl/AssertionsTest.spec.ts +168 -0
  101. package/src/main/typescript/test/impl/FileUtilsTest.spec.ts +126 -0
  102. package/src/main/typescript/test/impl/ImplTest.spec.ts +75 -1
  103. package/src/main/typescript/test/impl/ResponseDataResolverTest.spec.ts +62 -0
  104. package/src/main/typescript/test/impl/util/ExtDomQueryTest.spec.ts +91 -1
  105. package/src/main/typescript/test/impl/util/ExtLangTest.spec.ts +110 -0
  106. package/src/main/typescript/test/impl/util/HiddenInputBuilderTest.spec.ts +74 -0
  107. package/src/main/typescript/test/myfaces/OamSubmit.spec.ts +61 -1
  108. package/src/main/typescript/test/queue/AsynchronousQueueTest.spec.ts +191 -2
  109. package/src/main/typescript/test/xhrCore/ClientWindow.spec.ts +16 -0
  110. package/src/main/typescript/test/xhrCore/ErrorChainTest.spec.ts +14 -0
  111. package/src/main/typescript/test/xhrCore/FakeWebsocket.ts +21 -5
  112. package/src/main/typescript/test/xhrCore/RequestTest.spec.ts +363 -4
  113. package/src/main/typescript/test/xhrCore/ResponseTest.spec.ts +218 -4
  114. package/src/main/typescript/test/xhrCore/TobagoFileUploadTest.spec.ts +1 -1
  115. package/src/main/typescript/test/xhrCore/WebsocketTest.spec.ts +764 -0
  116. package/src/main/typescript/test/xhrCore/XhrFormDataTest.spec.ts +265 -62
  117. package/src/main/typescript/test/xhrCore/XhrRequestProgress.spec.ts +16 -0
  118. package/{target/src/main/typescript/test/xhrCore/FakeWebsocket.js → src/main/typescript/tsconfig.ae.json} +16 -23
  119. package/src/main/typescript/{tsconfig.json → tsconfig.dts.json} +11 -27
  120. package/src/main/typescript/tsconfig.test.json +17 -0
  121. package/tsconfig.api-extractor.json +17 -0
  122. package/.claude/settings.local.json +0 -16
  123. package/.github/workflows/codeql-analysis.yml +0 -83
  124. package/.github/workflows/nodejs.yml +0 -26
  125. package/.mocharc.json +0 -10
  126. package/.nyc_output/384344d4-4f46-455f-84c3-010f829098cb.json +0 -1
  127. package/.nyc_output/a0f90016-f4f9-4039-bb51-57f4f7050541.json +0 -1
  128. package/.nyc_output/db388b5d-0b79-4bce-afd2-001aaf6f0245.json +0 -1
  129. package/.nyc_output/processinfo/384344d4-4f46-455f-84c3-010f829098cb.json +0 -1
  130. package/.nyc_output/processinfo/a0f90016-f4f9-4039-bb51-57f4f7050541.json +0 -1
  131. package/.nyc_output/processinfo/db388b5d-0b79-4bce-afd2-001aaf6f0245.json +0 -1
  132. package/.nyc_output/processinfo/index.json +0 -1
  133. package/.nycrc +0 -6
  134. package/build.cmd +0 -1
  135. package/build.sh +0 -3
  136. package/mvnw +0 -286
  137. package/mvnw.cmd +0 -161
  138. package/plans for 4.0.1.txt +0 -8
  139. package/remap.ts +0 -51
  140. package/src/main/typescript/test/xhrCore/WebsocketTest.ts +0 -221
  141. package/target/api/_api.js.map +0 -1
  142. package/target/api/faces.js +0 -45
  143. package/target/api/faces.js.map +0 -1
  144. package/target/api/jsf.js +0 -56
  145. package/target/api/jsf.js.map +0 -1
  146. package/target/impl/AjaxImpl.js +0 -748
  147. package/target/impl/AjaxImpl.js.map +0 -1
  148. package/target/impl/PushImpl.js +0 -265
  149. package/target/impl/PushImpl.js.map +0 -1
  150. package/target/impl/core/Const.js +0 -177
  151. package/target/impl/core/Const.js.map +0 -1
  152. package/target/impl/core/ImplTypes.js +0 -38
  153. package/target/impl/core/ImplTypes.js.map +0 -1
  154. package/target/impl/i18n/Messages.js +0 -113
  155. package/target/impl/i18n/Messages.js.map +0 -1
  156. package/target/impl/util/Assertions.js +0 -101
  157. package/target/impl/util/Assertions.js.map +0 -1
  158. package/target/impl/util/AsyncRunnable.js +0 -78
  159. package/target/impl/util/AsyncRunnable.js.map +0 -1
  160. package/target/impl/util/ExtDomQuery.js +0 -306
  161. package/target/impl/util/ExtDomQuery.js.map +0 -1
  162. package/target/impl/util/FileUtils.js +0 -98
  163. package/target/impl/util/FileUtils.js.map +0 -1
  164. package/target/impl/util/HiddenInputBuilder.js +0 -83
  165. package/target/impl/util/HiddenInputBuilder.js.map +0 -1
  166. package/target/impl/util/IListener.js +0 -3
  167. package/target/impl/util/IListener.js.map +0 -1
  168. package/target/impl/util/Lang.js +0 -263
  169. package/target/impl/util/Lang.js.map +0 -1
  170. package/target/impl/util/XhrQueueController.js +0 -92
  171. package/target/impl/util/XhrQueueController.js.map +0 -1
  172. package/target/impl/xhrCore/ErrorData.js +0 -87
  173. package/target/impl/xhrCore/ErrorData.js.map +0 -1
  174. package/target/impl/xhrCore/EventData.js +0 -52
  175. package/target/impl/xhrCore/EventData.js.map +0 -1
  176. package/target/impl/xhrCore/IResponseProcessor.js +0 -3
  177. package/target/impl/xhrCore/IResponseProcessor.js.map +0 -1
  178. package/target/impl/xhrCore/RequestDataResolver.js +0 -186
  179. package/target/impl/xhrCore/RequestDataResolver.js.map +0 -1
  180. package/target/impl/xhrCore/ResonseDataResolver.js +0 -104
  181. package/target/impl/xhrCore/ResonseDataResolver.js.map +0 -1
  182. package/target/impl/xhrCore/Response.js +0 -186
  183. package/target/impl/xhrCore/Response.js.map +0 -1
  184. package/target/impl/xhrCore/ResponseDataResolver.js +0 -104
  185. package/target/impl/xhrCore/ResponseDataResolver.js.map +0 -1
  186. package/target/impl/xhrCore/ResponseProcessor.js +0 -468
  187. package/target/impl/xhrCore/ResponseProcessor.js.map +0 -1
  188. package/target/impl/xhrCore/XhrFormData.js +0 -163
  189. package/target/impl/xhrCore/XhrFormData.js.map +0 -1
  190. package/target/impl/xhrCore/XhrRequest.js +0 -433
  191. package/target/impl/xhrCore/XhrRequest.js.map +0 -1
  192. package/target/mona_dish_shim.js +0 -70
  193. package/target/mona_dish_shim.js.map +0 -1
  194. package/target/myfaces/OamSubmit.js +0 -128
  195. package/target/myfaces/OamSubmit.js.map +0 -1
  196. package/target/src/main/typescript/api/_api.js.map +0 -1
  197. package/target/src/main/typescript/api/faces.js +0 -45
  198. package/target/src/main/typescript/api/faces.js.map +0 -1
  199. package/target/src/main/typescript/api/jsf.js +0 -56
  200. package/target/src/main/typescript/api/jsf.js.map +0 -1
  201. package/target/src/main/typescript/impl/AjaxImpl.js +0 -748
  202. package/target/src/main/typescript/impl/AjaxImpl.js.map +0 -1
  203. package/target/src/main/typescript/impl/PushImpl.js +0 -265
  204. package/target/src/main/typescript/impl/PushImpl.js.map +0 -1
  205. package/target/src/main/typescript/impl/core/Const.js +0 -177
  206. package/target/src/main/typescript/impl/core/Const.js.map +0 -1
  207. package/target/src/main/typescript/impl/core/ImplTypes.js +0 -38
  208. package/target/src/main/typescript/impl/core/ImplTypes.js.map +0 -1
  209. package/target/src/main/typescript/impl/i18n/Messages.js +0 -113
  210. package/target/src/main/typescript/impl/i18n/Messages.js.map +0 -1
  211. package/target/src/main/typescript/impl/util/Assertions.js +0 -101
  212. package/target/src/main/typescript/impl/util/Assertions.js.map +0 -1
  213. package/target/src/main/typescript/impl/util/AsyncRunnable.js +0 -78
  214. package/target/src/main/typescript/impl/util/AsyncRunnable.js.map +0 -1
  215. package/target/src/main/typescript/impl/util/ExtDomQuery.js +0 -306
  216. package/target/src/main/typescript/impl/util/ExtDomQuery.js.map +0 -1
  217. package/target/src/main/typescript/impl/util/FileUtils.js +0 -98
  218. package/target/src/main/typescript/impl/util/FileUtils.js.map +0 -1
  219. package/target/src/main/typescript/impl/util/HiddenInputBuilder.js +0 -83
  220. package/target/src/main/typescript/impl/util/HiddenInputBuilder.js.map +0 -1
  221. package/target/src/main/typescript/impl/util/IListener.js +0 -3
  222. package/target/src/main/typescript/impl/util/IListener.js.map +0 -1
  223. package/target/src/main/typescript/impl/util/Lang.js +0 -263
  224. package/target/src/main/typescript/impl/util/Lang.js.map +0 -1
  225. package/target/src/main/typescript/impl/util/XhrQueueController.js +0 -92
  226. package/target/src/main/typescript/impl/util/XhrQueueController.js.map +0 -1
  227. package/target/src/main/typescript/impl/xhrCore/ErrorData.js +0 -87
  228. package/target/src/main/typescript/impl/xhrCore/ErrorData.js.map +0 -1
  229. package/target/src/main/typescript/impl/xhrCore/EventData.js +0 -52
  230. package/target/src/main/typescript/impl/xhrCore/EventData.js.map +0 -1
  231. package/target/src/main/typescript/impl/xhrCore/IResponseProcessor.js +0 -3
  232. package/target/src/main/typescript/impl/xhrCore/IResponseProcessor.js.map +0 -1
  233. package/target/src/main/typescript/impl/xhrCore/RequestDataResolver.js +0 -186
  234. package/target/src/main/typescript/impl/xhrCore/RequestDataResolver.js.map +0 -1
  235. package/target/src/main/typescript/impl/xhrCore/Response.js +0 -186
  236. package/target/src/main/typescript/impl/xhrCore/Response.js.map +0 -1
  237. package/target/src/main/typescript/impl/xhrCore/ResponseDataResolver.js +0 -104
  238. package/target/src/main/typescript/impl/xhrCore/ResponseDataResolver.js.map +0 -1
  239. package/target/src/main/typescript/impl/xhrCore/ResponseProcessor.js +0 -468
  240. package/target/src/main/typescript/impl/xhrCore/ResponseProcessor.js.map +0 -1
  241. package/target/src/main/typescript/impl/xhrCore/XhrFormData.js +0 -163
  242. package/target/src/main/typescript/impl/xhrCore/XhrFormData.js.map +0 -1
  243. package/target/src/main/typescript/impl/xhrCore/XhrRequest.js +0 -433
  244. package/target/src/main/typescript/impl/xhrCore/XhrRequest.js.map +0 -1
  245. package/target/src/main/typescript/mona_dish_shim.js +0 -70
  246. package/target/src/main/typescript/mona_dish_shim.js.map +0 -1
  247. package/target/src/main/typescript/myfaces/OamSubmit.js +0 -128
  248. package/target/src/main/typescript/myfaces/OamSubmit.js.map +0 -1
  249. package/target/src/main/typescript/test/api/MyFacesABTest.spec.js +0 -117
  250. package/target/src/main/typescript/test/api/MyFacesABTest.spec.js.map +0 -1
  251. package/target/src/main/typescript/test/frameworkBase/LangTest.spec.js +0 -123
  252. package/target/src/main/typescript/test/frameworkBase/LangTest.spec.js.map +0 -1
  253. package/target/src/main/typescript/test/frameworkBase/_ext/monadish/DomQueryTest.spec.js +0 -657
  254. package/target/src/main/typescript/test/frameworkBase/_ext/monadish/DomQueryTest.spec.js.map +0 -1
  255. package/target/src/main/typescript/test/frameworkBase/_ext/monadish/LangTest.spec.js +0 -107
  256. package/target/src/main/typescript/test/frameworkBase/_ext/monadish/LangTest.spec.js.map +0 -1
  257. package/target/src/main/typescript/test/frameworkBase/_ext/monadish/MappingProbes.js +0 -106
  258. package/target/src/main/typescript/test/frameworkBase/_ext/monadish/MappingProbes.js.map +0 -1
  259. package/target/src/main/typescript/test/frameworkBase/_ext/monadish/MappingTest.spec.js +0 -39
  260. package/target/src/main/typescript/test/frameworkBase/_ext/monadish/MappingTest.spec.js.map +0 -1
  261. package/target/src/main/typescript/test/frameworkBase/_ext/monadish/MonadTest.spec.js +0 -153
  262. package/target/src/main/typescript/test/frameworkBase/_ext/monadish/MonadTest.spec.js.map +0 -1
  263. package/target/src/main/typescript/test/frameworkBase/_ext/monadish/XmlQueryTest.spec.js +0 -2
  264. package/target/src/main/typescript/test/frameworkBase/_ext/monadish/XmlQueryTest.spec.js.map +0 -1
  265. package/target/src/main/typescript/test/frameworkBase/_ext/monadish/markups/tobago-with-header.js +0 -925
  266. package/target/src/main/typescript/test/frameworkBase/_ext/monadish/markups/tobago-with-header.js.map +0 -1
  267. package/target/src/main/typescript/test/frameworkBase/_ext/monadish/markups/tobago-without-header.js +0 -112
  268. package/target/src/main/typescript/test/frameworkBase/_ext/monadish/markups/tobago-without-header.js.map +0 -1
  269. package/target/src/main/typescript/test/frameworkBase/_ext/shared/StandardInits.js +0 -728
  270. package/target/src/main/typescript/test/frameworkBase/_ext/shared/StandardInits.js.map +0 -1
  271. package/target/src/main/typescript/test/frameworkBase/_ext/shared/XmlResponses.js +0 -296
  272. package/target/src/main/typescript/test/frameworkBase/_ext/shared/XmlResponses.js.map +0 -1
  273. package/target/src/main/typescript/test/impl/ImplTest.spec.js +0 -225
  274. package/target/src/main/typescript/test/impl/ImplTest.spec.js.map +0 -1
  275. package/target/src/main/typescript/test/impl/ImplTest_23.spec.js +0 -143
  276. package/target/src/main/typescript/test/impl/ImplTest_23.spec.js.map +0 -1
  277. package/target/src/main/typescript/test/impl/SeparatorCharsTest.spec.js +0 -106
  278. package/target/src/main/typescript/test/impl/SeparatorCharsTest.spec.js.map +0 -1
  279. package/target/src/main/typescript/test/impl/util/ExtDomQueryTest.spec.js +0 -77
  280. package/target/src/main/typescript/test/impl/util/ExtDomQueryTest.spec.js.map +0 -1
  281. package/target/src/main/typescript/test/myfaces/OamSubmit.spec.js +0 -118
  282. package/target/src/main/typescript/test/myfaces/OamSubmit.spec.js.map +0 -1
  283. package/target/src/main/typescript/test/myfaces/OnLoad.spec.js +0 -57
  284. package/target/src/main/typescript/test/myfaces/OnLoad.spec.js.map +0 -1
  285. package/target/src/main/typescript/test/myfaces/ReserveNamespace.spec.js +0 -60
  286. package/target/src/main/typescript/test/myfaces/ReserveNamespace.spec.js.map +0 -1
  287. package/target/src/main/typescript/test/queue/AsynchronousProbe.js +0 -93
  288. package/target/src/main/typescript/test/queue/AsynchronousProbe.js.map +0 -1
  289. package/target/src/main/typescript/test/queue/AsynchronousQueueTest.spec.js +0 -133
  290. package/target/src/main/typescript/test/queue/AsynchronousQueueTest.spec.js.map +0 -1
  291. package/target/src/main/typescript/test/xhrCore/ClientWindow.spec.js +0 -101
  292. package/target/src/main/typescript/test/xhrCore/ClientWindow.spec.js.map +0 -1
  293. package/target/src/main/typescript/test/xhrCore/ErrorChainTest.spec.js +0 -175
  294. package/target/src/main/typescript/test/xhrCore/ErrorChainTest.spec.js.map +0 -1
  295. package/target/src/main/typescript/test/xhrCore/EventTests.spec.js +0 -184
  296. package/target/src/main/typescript/test/xhrCore/EventTests.spec.js.map +0 -1
  297. package/target/src/main/typescript/test/xhrCore/FakeWebsocket.js.map +0 -1
  298. package/target/src/main/typescript/test/xhrCore/FileUploadTest.spec.js +0 -181
  299. package/target/src/main/typescript/test/xhrCore/FileUploadTest.spec.js.map +0 -1
  300. package/target/src/main/typescript/test/xhrCore/NamespacesRequestTest.spec.js +0 -226
  301. package/target/src/main/typescript/test/xhrCore/NamespacesRequestTest.spec.js.map +0 -1
  302. package/target/src/main/typescript/test/xhrCore/OamSubmitTest.spec.js +0 -199
  303. package/target/src/main/typescript/test/xhrCore/OamSubmitTest.spec.js.map +0 -1
  304. package/target/src/main/typescript/test/xhrCore/RequestParamsTest.spec.js +0 -567
  305. package/target/src/main/typescript/test/xhrCore/RequestParamsTest.spec.js.map +0 -1
  306. package/target/src/main/typescript/test/xhrCore/RequestTest.spec.js +0 -845
  307. package/target/src/main/typescript/test/xhrCore/RequestTest.spec.js.map +0 -1
  308. package/target/src/main/typescript/test/xhrCore/RequestTest_23.spec.js +0 -382
  309. package/target/src/main/typescript/test/xhrCore/RequestTest_23.spec.js.map +0 -1
  310. package/target/src/main/typescript/test/xhrCore/ResponseTest.spec.js +0 -667
  311. package/target/src/main/typescript/test/xhrCore/ResponseTest.spec.js.map +0 -1
  312. package/target/src/main/typescript/test/xhrCore/ResponseTest23.spec.js +0 -367
  313. package/target/src/main/typescript/test/xhrCore/ResponseTest23.spec.js.map +0 -1
  314. package/target/src/main/typescript/test/xhrCore/ShadowDomTest.spec.js +0 -123
  315. package/target/src/main/typescript/test/xhrCore/ShadowDomTest.spec.js.map +0 -1
  316. package/target/src/main/typescript/test/xhrCore/TobagoFileUploadTest.spec.js +0 -147
  317. package/target/src/main/typescript/test/xhrCore/TobagoFileUploadTest.spec.js.map +0 -1
  318. package/target/src/main/typescript/test/xhrCore/WebsocketTest.js +0 -207
  319. package/target/src/main/typescript/test/xhrCore/WebsocketTest.js.map +0 -1
  320. package/target/src/main/typescript/test/xhrCore/XhrFormDataTest.spec.js +0 -149
  321. package/target/src/main/typescript/test/xhrCore/XhrFormDataTest.spec.js.map +0 -1
  322. package/target/src/main/typescript/test/xhrCore/XhrRequestProgress.spec.js +0 -130
  323. package/target/src/main/typescript/test/xhrCore/XhrRequestProgress.spec.js.map +0 -1
  324. package/target/test/api/MyFacesABTest.spec.js +0 -117
  325. package/target/test/api/MyFacesABTest.spec.js.map +0 -1
  326. package/target/test/frameworkBase/LangTest.spec.js +0 -123
  327. package/target/test/frameworkBase/LangTest.spec.js.map +0 -1
  328. package/target/test/frameworkBase/_ext/monadish/DomQueryTest.spec.js +0 -657
  329. package/target/test/frameworkBase/_ext/monadish/DomQueryTest.spec.js.map +0 -1
  330. package/target/test/frameworkBase/_ext/monadish/LangTest.spec.js +0 -107
  331. package/target/test/frameworkBase/_ext/monadish/LangTest.spec.js.map +0 -1
  332. package/target/test/frameworkBase/_ext/monadish/MappingProbes.js +0 -106
  333. package/target/test/frameworkBase/_ext/monadish/MappingProbes.js.map +0 -1
  334. package/target/test/frameworkBase/_ext/monadish/MappingTest.spec.js +0 -39
  335. package/target/test/frameworkBase/_ext/monadish/MappingTest.spec.js.map +0 -1
  336. package/target/test/frameworkBase/_ext/monadish/MonadTest.spec.js +0 -153
  337. package/target/test/frameworkBase/_ext/monadish/MonadTest.spec.js.map +0 -1
  338. package/target/test/frameworkBase/_ext/monadish/XmlQueryTest.spec.js +0 -1
  339. package/target/test/frameworkBase/_ext/monadish/XmlQueryTest.spec.js.map +0 -1
  340. package/target/test/frameworkBase/_ext/monadish/fixtures/test.js.map +0 -1
  341. package/target/test/frameworkBase/_ext/monadish/fixtures/test2.js.map +0 -1
  342. package/target/test/frameworkBase/_ext/monadish/markups/tobago-with-header.js +0 -925
  343. package/target/test/frameworkBase/_ext/monadish/markups/tobago-with-header.js.map +0 -1
  344. package/target/test/frameworkBase/_ext/monadish/markups/tobago-without-header.js +0 -112
  345. package/target/test/frameworkBase/_ext/monadish/markups/tobago-without-header.js.map +0 -1
  346. package/target/test/frameworkBase/_ext/shared/StandardInits.js +0 -728
  347. package/target/test/frameworkBase/_ext/shared/StandardInits.js.map +0 -1
  348. package/target/test/frameworkBase/_ext/shared/XmlResponses.js +0 -296
  349. package/target/test/frameworkBase/_ext/shared/XmlResponses.js.map +0 -1
  350. package/target/test/frameworkBase/_ext/shared/fixtures/js/tobago.js +0 -16
  351. package/target/test/frameworkBase/_ext/shared/fixtures/js/tobago.js.map +0 -1
  352. package/target/test/impl/ImplTest.spec.js +0 -225
  353. package/target/test/impl/ImplTest.spec.js.map +0 -1
  354. package/target/test/impl/ImplTest_23.spec.js +0 -143
  355. package/target/test/impl/ImplTest_23.spec.js.map +0 -1
  356. package/target/test/impl/SeparatorCharsTest.spec.js +0 -106
  357. package/target/test/impl/SeparatorCharsTest.spec.js.map +0 -1
  358. package/target/test/impl/util/ExtDomQueryTest.spec.js +0 -77
  359. package/target/test/impl/util/ExtDomQueryTest.spec.js.map +0 -1
  360. package/target/test/myfaces/OamSubmit.spec.js +0 -118
  361. package/target/test/myfaces/OamSubmit.spec.js.map +0 -1
  362. package/target/test/myfaces/OnLoad.spec.js +0 -57
  363. package/target/test/myfaces/OnLoad.spec.js.map +0 -1
  364. package/target/test/myfaces/ReserveNamespace.spec.js +0 -60
  365. package/target/test/myfaces/ReserveNamespace.spec.js.map +0 -1
  366. package/target/test/queue/AsynchronousProbe.js +0 -93
  367. package/target/test/queue/AsynchronousProbe.js.map +0 -1
  368. package/target/test/queue/AsynchronousQueueTest.spec.js +0 -133
  369. package/target/test/queue/AsynchronousQueueTest.spec.js.map +0 -1
  370. package/target/test/xhrCore/ClientWindow.spec.js +0 -101
  371. package/target/test/xhrCore/ClientWindow.spec.js.map +0 -1
  372. package/target/test/xhrCore/ErrorChainTest.spec.js +0 -175
  373. package/target/test/xhrCore/ErrorChainTest.spec.js.map +0 -1
  374. package/target/test/xhrCore/EventTests.spec.js +0 -184
  375. package/target/test/xhrCore/EventTests.spec.js.map +0 -1
  376. package/target/test/xhrCore/FakeWebsocket.js +0 -38
  377. package/target/test/xhrCore/FakeWebsocket.js.map +0 -1
  378. package/target/test/xhrCore/FileUploadTest.spec.js +0 -181
  379. package/target/test/xhrCore/FileUploadTest.spec.js.map +0 -1
  380. package/target/test/xhrCore/NamespacesRequestTest.spec.js +0 -226
  381. package/target/test/xhrCore/NamespacesRequestTest.spec.js.map +0 -1
  382. package/target/test/xhrCore/OamSubmitTest.spec.js +0 -199
  383. package/target/test/xhrCore/OamSubmitTest.spec.js.map +0 -1
  384. package/target/test/xhrCore/RequestParamsTest.spec.js +0 -567
  385. package/target/test/xhrCore/RequestParamsTest.spec.js.map +0 -1
  386. package/target/test/xhrCore/RequestTest.spec.js +0 -845
  387. package/target/test/xhrCore/RequestTest.spec.js.map +0 -1
  388. package/target/test/xhrCore/RequestTest_23.spec.js +0 -382
  389. package/target/test/xhrCore/RequestTest_23.spec.js.map +0 -1
  390. package/target/test/xhrCore/ResponseTest.spec.js +0 -667
  391. package/target/test/xhrCore/ResponseTest.spec.js.map +0 -1
  392. package/target/test/xhrCore/ResponseTest23.spec.js +0 -367
  393. package/target/test/xhrCore/ResponseTest23.spec.js.map +0 -1
  394. package/target/test/xhrCore/ShadowDomTest.spec.js +0 -123
  395. package/target/test/xhrCore/ShadowDomTest.spec.js.map +0 -1
  396. package/target/test/xhrCore/TobagoFileUploadTest.spec.js +0 -147
  397. package/target/test/xhrCore/TobagoFileUploadTest.spec.js.map +0 -1
  398. package/target/test/xhrCore/WebsocketTest.js +0 -207
  399. package/target/test/xhrCore/WebsocketTest.js.map +0 -1
  400. package/target/test/xhrCore/XhrFormDataTest.spec.js +0 -149
  401. package/target/test/xhrCore/XhrFormDataTest.spec.js.map +0 -1
  402. package/target/test/xhrCore/XhrRequestProgress.spec.js +0 -130
  403. package/target/test/xhrCore/XhrRequestProgress.spec.js.map +0 -1
  404. package/target/test/xhrCore/fixtures/addedViewHead1.js +0 -17
  405. package/target/test/xhrCore/fixtures/addedViewHead1.js.map +0 -1
  406. package/target/test/xhrCore/fixtures/addedViewHead2.js +0 -17
  407. package/target/test/xhrCore/fixtures/addedViewHead2.js.map +0 -1
  408. package/target/test/xhrCore/fixtures/addedViewHead3.js +0 -17
  409. package/target/test/xhrCore/fixtures/addedViewHead3.js.map +0 -1
  410. package/target/test/xhrCore/fixtures/nonce_script.js +0 -17
  411. package/target/test/xhrCore/fixtures/nonce_script.js.map +0 -1
  412. package/tsconfig.json +0 -9
  413. package/webpack.config.ts +0 -54
@@ -1 +0,0 @@
1
- {"parent":null,"pid":77153,"argv":["/opt/homebrew/Cellar/node/25.2.1/bin/node","/Users/werpu/IdeaProjects/jsfs_js_ts/node_modules/.bin/nyc","--reporter=html","--reporter=text","mocha"],"execArgv":[],"cwd":"/Users/werpu/IdeaProjects/jsfs_js_ts","time":1766533074353,"ppid":77152,"coverageFilename":"/Users/werpu/IdeaProjects/jsfs_js_ts/.nyc_output/384344d4-4f46-455f-84c3-010f829098cb.json","externalId":"","uuid":"384344d4-4f46-455f-84c3-010f829098cb","files":["/Users/werpu/IdeaProjects/jsfs_js_ts/remap.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/@types/definitions/index.d.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/api/_api.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/api/faces.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/api/jsf.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/AjaxImpl.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/core/Const.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/core/ImplTypes.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/i18n/Messages.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/PushImpl.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/util/Assertions.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/util/AsyncRunnable.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/util/ExtDomQuery.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/util/FileUtils.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/util/HiddenInputBuilder.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/util/IListener.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/util/Lang.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/util/XhrQueueController.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/xhrCore/ErrorData.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/xhrCore/EventData.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/xhrCore/IResponseProcessor.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/xhrCore/RequestDataResolver.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/xhrCore/ResonseDataResolver.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/xhrCore/Response.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/xhrCore/ResponseProcessor.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/xhrCore/XhrFormData.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/xhrCore/XhrRequest.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/myfaces/OamSubmit.ts"]}
@@ -1 +0,0 @@
1
- {"parent":"db388b5d-0b79-4bce-afd2-001aaf6f0245","pid":77156,"argv":["/opt/homebrew/Cellar/node/25.2.1/bin/node","/Users/werpu/IdeaProjects/jsfs_js_ts/node_modules/mocha/lib/cli/cli.js","src/**/*.spec.*","--no-config","--no-package","--extensions","ts","--license","Apache-2.0","--diff","--extension","js","--extension","cjs","--extension","mjs","--reporter","spec","--slow","75","--timeout","2000","--ui","bdd","--watch-ignore","node_modules","--watch-ignore",".git"],"execArgv":["--import=tsx"],"cwd":"/Users/werpu/IdeaProjects/jsfs_js_ts","time":1766533075017,"ppid":77154,"coverageFilename":"/Users/werpu/IdeaProjects/jsfs_js_ts/.nyc_output/a0f90016-f4f9-4039-bb51-57f4f7050541.json","externalId":"","uuid":"a0f90016-f4f9-4039-bb51-57f4f7050541","files":["/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/util/Lang.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/i18n/Messages.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/core/Const.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/xhrCore/RequestDataResolver.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/util/ExtDomQuery.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/util/Assertions.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/myfaces/OamSubmit.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/AjaxImpl.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/xhrCore/Response.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/xhrCore/ResponseProcessor.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/xhrCore/ErrorData.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/xhrCore/EventData.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/core/ImplTypes.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/util/HiddenInputBuilder.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/xhrCore/ResonseDataResolver.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/xhrCore/XhrRequest.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/util/AsyncRunnable.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/xhrCore/XhrFormData.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/util/FileUtils.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/util/XhrQueueController.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/api/faces.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/api/_api.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/PushImpl.ts","/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/api/jsf.ts"]}
@@ -1 +0,0 @@
1
- {"parent":null,"pid":77154,"argv":["/opt/homebrew/Cellar/node/25.2.1/bin/node","/Users/werpu/IdeaProjects/jsfs_js_ts/node_modules/.bin/mocha"],"execArgv":[],"cwd":"/Users/werpu/IdeaProjects/jsfs_js_ts","time":1766533074898,"ppid":77153,"coverageFilename":"/Users/werpu/IdeaProjects/jsfs_js_ts/.nyc_output/db388b5d-0b79-4bce-afd2-001aaf6f0245.json","externalId":"","uuid":"db388b5d-0b79-4bce-afd2-001aaf6f0245","files":[]}
@@ -1 +0,0 @@
1
- {"processes":{"384344d4-4f46-455f-84c3-010f829098cb":{"parent":null,"children":[]},"a0f90016-f4f9-4039-bb51-57f4f7050541":{"parent":"db388b5d-0b79-4bce-afd2-001aaf6f0245","children":[]},"db388b5d-0b79-4bce-afd2-001aaf6f0245":{"parent":null,"children":["a0f90016-f4f9-4039-bb51-57f4f7050541"]}},"files":{"/Users/werpu/IdeaProjects/jsfs_js_ts/remap.ts":["384344d4-4f46-455f-84c3-010f829098cb"],"/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/@types/definitions/index.d.ts":["384344d4-4f46-455f-84c3-010f829098cb"],"/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/api/_api.ts":["384344d4-4f46-455f-84c3-010f829098cb","a0f90016-f4f9-4039-bb51-57f4f7050541"],"/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/api/faces.ts":["384344d4-4f46-455f-84c3-010f829098cb","a0f90016-f4f9-4039-bb51-57f4f7050541"],"/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/api/jsf.ts":["384344d4-4f46-455f-84c3-010f829098cb","a0f90016-f4f9-4039-bb51-57f4f7050541"],"/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/AjaxImpl.ts":["384344d4-4f46-455f-84c3-010f829098cb","a0f90016-f4f9-4039-bb51-57f4f7050541"],"/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/core/Const.ts":["384344d4-4f46-455f-84c3-010f829098cb","a0f90016-f4f9-4039-bb51-57f4f7050541"],"/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/core/ImplTypes.ts":["384344d4-4f46-455f-84c3-010f829098cb","a0f90016-f4f9-4039-bb51-57f4f7050541"],"/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/i18n/Messages.ts":["384344d4-4f46-455f-84c3-010f829098cb","a0f90016-f4f9-4039-bb51-57f4f7050541"],"/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/PushImpl.ts":["384344d4-4f46-455f-84c3-010f829098cb","a0f90016-f4f9-4039-bb51-57f4f7050541"],"/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/util/Assertions.ts":["384344d4-4f46-455f-84c3-010f829098cb","a0f90016-f4f9-4039-bb51-57f4f7050541"],"/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/util/AsyncRunnable.ts":["384344d4-4f46-455f-84c3-010f829098cb","a0f90016-f4f9-4039-bb51-57f4f7050541"],"/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/util/ExtDomQuery.ts":["384344d4-4f46-455f-84c3-010f829098cb","a0f90016-f4f9-4039-bb51-57f4f7050541"],"/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/util/FileUtils.ts":["384344d4-4f46-455f-84c3-010f829098cb","a0f90016-f4f9-4039-bb51-57f4f7050541"],"/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/util/HiddenInputBuilder.ts":["384344d4-4f46-455f-84c3-010f829098cb","a0f90016-f4f9-4039-bb51-57f4f7050541"],"/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/util/IListener.ts":["384344d4-4f46-455f-84c3-010f829098cb"],"/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/util/Lang.ts":["384344d4-4f46-455f-84c3-010f829098cb","a0f90016-f4f9-4039-bb51-57f4f7050541"],"/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/util/XhrQueueController.ts":["384344d4-4f46-455f-84c3-010f829098cb","a0f90016-f4f9-4039-bb51-57f4f7050541"],"/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/xhrCore/ErrorData.ts":["384344d4-4f46-455f-84c3-010f829098cb","a0f90016-f4f9-4039-bb51-57f4f7050541"],"/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/xhrCore/EventData.ts":["384344d4-4f46-455f-84c3-010f829098cb","a0f90016-f4f9-4039-bb51-57f4f7050541"],"/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/xhrCore/IResponseProcessor.ts":["384344d4-4f46-455f-84c3-010f829098cb"],"/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/xhrCore/RequestDataResolver.ts":["384344d4-4f46-455f-84c3-010f829098cb","a0f90016-f4f9-4039-bb51-57f4f7050541"],"/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/xhrCore/ResonseDataResolver.ts":["384344d4-4f46-455f-84c3-010f829098cb","a0f90016-f4f9-4039-bb51-57f4f7050541"],"/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/xhrCore/Response.ts":["384344d4-4f46-455f-84c3-010f829098cb","a0f90016-f4f9-4039-bb51-57f4f7050541"],"/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/xhrCore/ResponseProcessor.ts":["384344d4-4f46-455f-84c3-010f829098cb","a0f90016-f4f9-4039-bb51-57f4f7050541"],"/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/xhrCore/XhrFormData.ts":["384344d4-4f46-455f-84c3-010f829098cb","a0f90016-f4f9-4039-bb51-57f4f7050541"],"/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/impl/xhrCore/XhrRequest.ts":["384344d4-4f46-455f-84c3-010f829098cb","a0f90016-f4f9-4039-bb51-57f4f7050541"],"/Users/werpu/IdeaProjects/jsfs_js_ts/src/main/typescript/myfaces/OamSubmit.ts":["384344d4-4f46-455f-84c3-010f829098cb","a0f90016-f4f9-4039-bb51-57f4f7050541"]},"externalIds":{}}
package/.nycrc DELETED
@@ -1,6 +0,0 @@
1
- {
2
- "extends": "@istanbuljs/nyc-config-typescript",
3
- "all": true,
4
- "exclude": ["**/test/**/*.*","**/*.config.*", "**/Messages_*.*","**/*Probe*.*", "**/*.js"],
5
- "license": "Apache-2.0"
6
- }
package/build.cmd DELETED
@@ -1 +0,0 @@
1
- call npm run build
package/build.sh DELETED
@@ -1,3 +0,0 @@
1
- #!/usr/bin/env sh
2
-
3
- npm run build
package/mvnw DELETED
@@ -1,286 +0,0 @@
1
- #!/bin/sh
2
- # ----------------------------------------------------------------------------
3
- # Licensed to the Apache Software Foundation (ASF) under one
4
- # or more contributor license agreements. See the NOTICE file
5
- # distributed with this work for additional information
6
- # regarding copyright ownership. The ASF licenses this file
7
- # to you under the Apache License, Version 2.0 (the
8
- # "License"); you may not use this file except in compliance
9
- # with the License. You may obtain a copy of the License at
10
- #
11
- # https://www.apache.org/licenses/LICENSE-2.0
12
- #
13
- # Unless required by applicable law or agreed to in writing,
14
- # software distributed under the License is distributed on an
15
- # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16
- # KIND, either express or implied. See the License for the
17
- # specific language governing permissions and limitations
18
- # under the License.
19
- # ----------------------------------------------------------------------------
20
-
21
- # ----------------------------------------------------------------------------
22
- # Maven2 Start Up Batch script
23
- #
24
- # Required ENV vars:
25
- # ------------------
26
- # JAVA_HOME - location of a JDK home dir
27
- #
28
- # Optional ENV vars
29
- # -----------------
30
- # M2_HOME - location of maven2's installed home dir
31
- # MAVEN_OPTS - parameters passed to the Java VM when running Maven
32
- # e.g. to debug Maven itself, use
33
- # set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
34
- # MAVEN_SKIP_RC - flag to disable loading of mavenrc files
35
- # ----------------------------------------------------------------------------
36
-
37
- if [ -z "$MAVEN_SKIP_RC" ] ; then
38
-
39
- if [ -f /etc/mavenrc ] ; then
40
- . /etc/mavenrc
41
- fi
42
-
43
- if [ -f "$HOME/.mavenrc" ] ; then
44
- . "$HOME/.mavenrc"
45
- fi
46
-
47
- fi
48
-
49
- # OS specific support. $var _must_ be set to either true or false.
50
- cygwin=false;
51
- darwin=false;
52
- mingw=false
53
- case "`uname`" in
54
- CYGWIN*) cygwin=true ;;
55
- MINGW*) mingw=true;;
56
- Darwin*) darwin=true
57
- # Use /usr/libexec/java_home if available, otherwise fall back to /Library/Java/Home
58
- # See https://developer.apple.com/library/mac/qa/qa1170/_index.html
59
- if [ -z "$JAVA_HOME" ]; then
60
- if [ -x "/usr/libexec/java_home" ]; then
61
- export JAVA_HOME="`/usr/libexec/java_home`"
62
- else
63
- export JAVA_HOME="/Library/Java/Home"
64
- fi
65
- fi
66
- ;;
67
- esac
68
-
69
- if [ -z "$JAVA_HOME" ] ; then
70
- if [ -r /etc/gentoo-release ] ; then
71
- JAVA_HOME=`java-config --jre-home`
72
- fi
73
- fi
74
-
75
- if [ -z "$M2_HOME" ] ; then
76
- ## resolve links - $0 may be a link to maven's home
77
- PRG="$0"
78
-
79
- # need this for relative symlinks
80
- while [ -h "$PRG" ] ; do
81
- ls=`ls -ld "$PRG"`
82
- link=`expr "$ls" : '.*-> \(.*\)$'`
83
- if expr "$link" : '/.*' > /dev/null; then
84
- PRG="$link"
85
- else
86
- PRG="`dirname "$PRG"`/$link"
87
- fi
88
- done
89
-
90
- saveddir=`pwd`
91
-
92
- M2_HOME=`dirname "$PRG"`/..
93
-
94
- # make it fully qualified
95
- M2_HOME=`cd "$M2_HOME" && pwd`
96
-
97
- cd "$saveddir"
98
- # echo Using m2 at $M2_HOME
99
- fi
100
-
101
- # For Cygwin, ensure paths are in UNIX format before anything is touched
102
- if $cygwin ; then
103
- [ -n "$M2_HOME" ] &&
104
- M2_HOME=`cygpath --unix "$M2_HOME"`
105
- [ -n "$JAVA_HOME" ] &&
106
- JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
107
- [ -n "$CLASSPATH" ] &&
108
- CLASSPATH=`cygpath --path --unix "$CLASSPATH"`
109
- fi
110
-
111
- # For Mingw, ensure paths are in UNIX format before anything is touched
112
- if $mingw ; then
113
- [ -n "$M2_HOME" ] &&
114
- M2_HOME="`(cd "$M2_HOME"; pwd)`"
115
- [ -n "$JAVA_HOME" ] &&
116
- JAVA_HOME="`(cd "$JAVA_HOME"; pwd)`"
117
- # TODO classpath?
118
- fi
119
-
120
- if [ -z "$JAVA_HOME" ]; then
121
- javaExecutable="`which javac`"
122
- if [ -n "$javaExecutable" ] && ! [ "`expr \"$javaExecutable\" : '\([^ ]*\)'`" = "no" ]; then
123
- # readlink(1) is not available as standard on Solaris 10.
124
- readLink=`which readlink`
125
- if [ ! `expr "$readLink" : '\([^ ]*\)'` = "no" ]; then
126
- if $darwin ; then
127
- javaHome="`dirname \"$javaExecutable\"`"
128
- javaExecutable="`cd \"$javaHome\" && pwd -P`/javac"
129
- else
130
- javaExecutable="`readlink -f \"$javaExecutable\"`"
131
- fi
132
- javaHome="`dirname \"$javaExecutable\"`"
133
- javaHome=`expr "$javaHome" : '\(.*\)/bin'`
134
- JAVA_HOME="$javaHome"
135
- export JAVA_HOME
136
- fi
137
- fi
138
- fi
139
-
140
- if [ -z "$JAVACMD" ] ; then
141
- if [ -n "$JAVA_HOME" ] ; then
142
- if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
143
- # IBM's JDK on AIX uses strange locations for the executables
144
- JAVACMD="$JAVA_HOME/jre/sh/java"
145
- else
146
- JAVACMD="$JAVA_HOME/bin/java"
147
- fi
148
- else
149
- JAVACMD="`which java`"
150
- fi
151
- fi
152
-
153
- if [ ! -x "$JAVACMD" ] ; then
154
- echo "Error: JAVA_HOME is not defined correctly." >&2
155
- echo " We cannot execute $JAVACMD" >&2
156
- exit 1
157
- fi
158
-
159
- if [ -z "$JAVA_HOME" ] ; then
160
- echo "Warning: JAVA_HOME environment variable is not set."
161
- fi
162
-
163
- CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher
164
-
165
- # traverses directory structure from process work directory to filesystem root
166
- # first directory with .mvn subdirectory is considered project base directory
167
- find_maven_basedir() {
168
-
169
- if [ -z "$1" ]
170
- then
171
- echo "Path not specified to find_maven_basedir"
172
- return 1
173
- fi
174
-
175
- basedir="$1"
176
- wdir="$1"
177
- while [ "$wdir" != '/' ] ; do
178
- if [ -d "$wdir"/.mvn ] ; then
179
- basedir=$wdir
180
- break
181
- fi
182
- # workaround for JBEAP-8937 (on Solaris 10/Sparc)
183
- if [ -d "${wdir}" ]; then
184
- wdir=`cd "$wdir/.."; pwd`
185
- fi
186
- # end of workaround
187
- done
188
- echo "${basedir}"
189
- }
190
-
191
- # concatenates all lines of a file
192
- concat_lines() {
193
- if [ -f "$1" ]; then
194
- echo "$(tr -s '\n' ' ' < "$1")"
195
- fi
196
- }
197
-
198
- BASE_DIR=`find_maven_basedir "$(pwd)"`
199
- if [ -z "$BASE_DIR" ]; then
200
- exit 1;
201
- fi
202
-
203
- ##########################################################################################
204
- # Extension to allow automatically downloading the maven-wrapper.jar from Maven-central
205
- # This allows using the maven wrapper in projects that prohibit checking in binary data.
206
- ##########################################################################################
207
- if [ -r "$BASE_DIR/.mvn/wrapper/maven-wrapper.jar" ]; then
208
- if [ "$MVNW_VERBOSE" = true ]; then
209
- echo "Found .mvn/wrapper/maven-wrapper.jar"
210
- fi
211
- else
212
- if [ "$MVNW_VERBOSE" = true ]; then
213
- echo "Couldn't find .mvn/wrapper/maven-wrapper.jar, downloading it ..."
214
- fi
215
- jarUrl="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.4.2/maven-wrapper-0.4.2.jar"
216
- while IFS="=" read key value; do
217
- case "$key" in (wrapperUrl) jarUrl="$value"; break ;;
218
- esac
219
- done < "$BASE_DIR/.mvn/wrapper/maven-wrapper.properties"
220
- if [ "$MVNW_VERBOSE" = true ]; then
221
- echo "Downloading from: $jarUrl"
222
- fi
223
- wrapperJarPath="$BASE_DIR/.mvn/wrapper/maven-wrapper.jar"
224
-
225
- if command -v wget > /dev/null; then
226
- if [ "$MVNW_VERBOSE" = true ]; then
227
- echo "Found wget ... using wget"
228
- fi
229
- wget "$jarUrl" -O "$wrapperJarPath"
230
- elif command -v curl > /dev/null; then
231
- if [ "$MVNW_VERBOSE" = true ]; then
232
- echo "Found curl ... using curl"
233
- fi
234
- curl -o "$wrapperJarPath" "$jarUrl"
235
- else
236
- if [ "$MVNW_VERBOSE" = true ]; then
237
- echo "Falling back to using Java to download"
238
- fi
239
- javaClass="$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.java"
240
- if [ -e "$javaClass" ]; then
241
- if [ ! -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then
242
- if [ "$MVNW_VERBOSE" = true ]; then
243
- echo " - Compiling MavenWrapperDownloader.java ..."
244
- fi
245
- # Compiling the Java class
246
- ("$JAVA_HOME/bin/javac" "$javaClass")
247
- fi
248
- if [ -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then
249
- # Running the downloader
250
- if [ "$MVNW_VERBOSE" = true ]; then
251
- echo " - Running MavenWrapperDownloader.java ..."
252
- fi
253
- ("$JAVA_HOME/bin/java" -cp .mvn/wrapper MavenWrapperDownloader "$MAVEN_PROJECTBASEDIR")
254
- fi
255
- fi
256
- fi
257
- fi
258
- ##########################################################################################
259
- # End of extension
260
- ##########################################################################################
261
-
262
- export MAVEN_PROJECTBASEDIR=${MAVEN_BASEDIR:-"$BASE_DIR"}
263
- if [ "$MVNW_VERBOSE" = true ]; then
264
- echo $MAVEN_PROJECTBASEDIR
265
- fi
266
- MAVEN_OPTS="$(concat_lines "$MAVEN_PROJECTBASEDIR/.mvn/jvm.config") $MAVEN_OPTS"
267
-
268
- # For Cygwin, switch paths to Windows format before running java
269
- if $cygwin; then
270
- [ -n "$M2_HOME" ] &&
271
- M2_HOME=`cygpath --path --windows "$M2_HOME"`
272
- [ -n "$JAVA_HOME" ] &&
273
- JAVA_HOME=`cygpath --path --windows "$JAVA_HOME"`
274
- [ -n "$CLASSPATH" ] &&
275
- CLASSPATH=`cygpath --path --windows "$CLASSPATH"`
276
- [ -n "$MAVEN_PROJECTBASEDIR" ] &&
277
- MAVEN_PROJECTBASEDIR=`cygpath --path --windows "$MAVEN_PROJECTBASEDIR"`
278
- fi
279
-
280
- WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain
281
-
282
- exec "$JAVACMD" \
283
- $MAVEN_OPTS \
284
- -classpath "$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.jar" \
285
- "-Dmaven.home=${M2_HOME}" "-Dmaven.multiModuleProjectDirectory=${MAVEN_PROJECTBASEDIR}" \
286
- ${WRAPPER_LAUNCHER} $MAVEN_CONFIG "$@"
package/mvnw.cmd DELETED
@@ -1,161 +0,0 @@
1
- @REM ----------------------------------------------------------------------------
2
- @REM Licensed to the Apache Software Foundation (ASF) under one
3
- @REM or more contributor license agreements. See the NOTICE file
4
- @REM distributed with this work for additional information
5
- @REM regarding copyright ownership. The ASF licenses this file
6
- @REM to you under the Apache License, Version 2.0 (the
7
- @REM "License"); you may not use this file except in compliance
8
- @REM with the License. You may obtain a copy of the License at
9
- @REM
10
- @REM https://www.apache.org/licenses/LICENSE-2.0
11
- @REM
12
- @REM Unless required by applicable law or agreed to in writing,
13
- @REM software distributed under the License is distributed on an
14
- @REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15
- @REM KIND, either express or implied. See the License for the
16
- @REM specific language governing permissions and limitations
17
- @REM under the License.
18
- @REM ----------------------------------------------------------------------------
19
-
20
- @REM ----------------------------------------------------------------------------
21
- @REM Maven2 Start Up Batch script
22
- @REM
23
- @REM Required ENV vars:
24
- @REM JAVA_HOME - location of a JDK home dir
25
- @REM
26
- @REM Optional ENV vars
27
- @REM M2_HOME - location of maven2's installed home dir
28
- @REM MAVEN_BATCH_ECHO - set to 'on' to enable the echoing of the batch commands
29
- @REM MAVEN_BATCH_PAUSE - set to 'on' to wait for a key stroke before ending
30
- @REM MAVEN_OPTS - parameters passed to the Java VM when running Maven
31
- @REM e.g. to debug Maven itself, use
32
- @REM set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
33
- @REM MAVEN_SKIP_RC - flag to disable loading of mavenrc files
34
- @REM ----------------------------------------------------------------------------
35
-
36
- @REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on'
37
- @echo off
38
- @REM set title of command window
39
- title %0
40
- @REM enable echoing my setting MAVEN_BATCH_ECHO to 'on'
41
- @if "%MAVEN_BATCH_ECHO%" == "on" echo %MAVEN_BATCH_ECHO%
42
-
43
- @REM set %HOME% to equivalent of $HOME
44
- if "%HOME%" == "" (set "HOME=%HOMEDRIVE%%HOMEPATH%")
45
-
46
- @REM Execute a user defined script before this one
47
- if not "%MAVEN_SKIP_RC%" == "" goto skipRcPre
48
- @REM check for pre script, once with legacy .bat ending and once with .cmd ending
49
- if exist "%HOME%\mavenrc_pre.bat" call "%HOME%\mavenrc_pre.bat"
50
- if exist "%HOME%\mavenrc_pre.cmd" call "%HOME%\mavenrc_pre.cmd"
51
- :skipRcPre
52
-
53
- @setlocal
54
-
55
- set ERROR_CODE=0
56
-
57
- @REM To isolate internal variables from possible post scripts, we use another setlocal
58
- @setlocal
59
-
60
- @REM ==== START VALIDATION ====
61
- if not "%JAVA_HOME%" == "" goto OkJHome
62
-
63
- echo.
64
- echo Error: JAVA_HOME not found in your environment. >&2
65
- echo Please set the JAVA_HOME variable in your environment to match the >&2
66
- echo location of your Java installation. >&2
67
- echo.
68
- goto error
69
-
70
- :OkJHome
71
- if exist "%JAVA_HOME%\bin\java.exe" goto init
72
-
73
- echo.
74
- echo Error: JAVA_HOME is set to an invalid directory. >&2
75
- echo JAVA_HOME = "%JAVA_HOME%" >&2
76
- echo Please set the JAVA_HOME variable in your environment to match the >&2
77
- echo location of your Java installation. >&2
78
- echo.
79
- goto error
80
-
81
- @REM ==== END VALIDATION ====
82
-
83
- :init
84
-
85
- @REM Find the project base dir, i.e. the directory that contains the folder ".mvn".
86
- @REM Fallback to current working directory if not found.
87
-
88
- set MAVEN_PROJECTBASEDIR=%MAVEN_BASEDIR%
89
- IF NOT "%MAVEN_PROJECTBASEDIR%"=="" goto endDetectBaseDir
90
-
91
- set EXEC_DIR=%CD%
92
- set WDIR=%EXEC_DIR%
93
- :findBaseDir
94
- IF EXIST "%WDIR%"\.mvn goto baseDirFound
95
- cd ..
96
- IF "%WDIR%"=="%CD%" goto baseDirNotFound
97
- set WDIR=%CD%
98
- goto findBaseDir
99
-
100
- :baseDirFound
101
- set MAVEN_PROJECTBASEDIR=%WDIR%
102
- cd "%EXEC_DIR%"
103
- goto endDetectBaseDir
104
-
105
- :baseDirNotFound
106
- set MAVEN_PROJECTBASEDIR=%EXEC_DIR%
107
- cd "%EXEC_DIR%"
108
-
109
- :endDetectBaseDir
110
-
111
- IF NOT EXIST "%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config" goto endReadAdditionalConfig
112
-
113
- @setlocal EnableExtensions EnableDelayedExpansion
114
- for /F "usebackq delims=" %%a in ("%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config") do set JVM_CONFIG_MAVEN_PROPS=!JVM_CONFIG_MAVEN_PROPS! %%a
115
- @endlocal & set JVM_CONFIG_MAVEN_PROPS=%JVM_CONFIG_MAVEN_PROPS%
116
-
117
- :endReadAdditionalConfig
118
-
119
- SET MAVEN_JAVA_EXE="%JAVA_HOME%\bin\java.exe"
120
- set WRAPPER_JAR="%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.jar"
121
- set WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain
122
-
123
- set DOWNLOAD_URL="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.4.2/maven-wrapper-0.4.2.jar"
124
- FOR /F "tokens=1,2 delims==" %%A IN (%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.properties) DO (
125
- IF "%%A"=="wrapperUrl" SET DOWNLOAD_URL=%%B
126
- )
127
-
128
- @REM Extension to allow automatically downloading the maven-wrapper.jar from Maven-central
129
- @REM This allows using the maven wrapper in projects that prohibit checking in binary data.
130
- if exist %WRAPPER_JAR% (
131
- echo Found %WRAPPER_JAR%
132
- ) else (
133
- echo Couldn't find %WRAPPER_JAR%, downloading it ...
134
- echo Downloading from: %DOWNLOAD_URL%
135
- powershell -Command "(New-Object Net.WebClient).DownloadFile('%DOWNLOAD_URL%', '%WRAPPER_JAR%')"
136
- echo Finished downloading %WRAPPER_JAR%
137
- )
138
- @REM End of extension
139
-
140
- %MAVEN_JAVA_EXE% %JVM_CONFIG_MAVEN_PROPS% %MAVEN_OPTS% %MAVEN_DEBUG_OPTS% -classpath %WRAPPER_JAR% "-Dmaven.multiModuleProjectDirectory=%MAVEN_PROJECTBASEDIR%" %WRAPPER_LAUNCHER% %MAVEN_CONFIG% %*
141
- if ERRORLEVEL 1 goto error
142
- goto end
143
-
144
- :error
145
- set ERROR_CODE=1
146
-
147
- :end
148
- @endlocal & set ERROR_CODE=%ERROR_CODE%
149
-
150
- if not "%MAVEN_SKIP_RC%" == "" goto skipRcPost
151
- @REM check for post script, once with legacy .bat ending and once with .cmd ending
152
- if exist "%HOME%\mavenrc_post.bat" call "%HOME%\mavenrc_post.bat"
153
- if exist "%HOME%\mavenrc_post.cmd" call "%HOME%\mavenrc_post.cmd"
154
- :skipRcPost
155
-
156
- @REM pause the script if MAVEN_BATCH_PAUSE is set to 'on'
157
- if "%MAVEN_BATCH_PAUSE%" == "on" pause
158
-
159
- if "%MAVEN_TERMINATE_CMD%" == "on" exit %ERROR_CODE%
160
-
161
- exit /B %ERROR_CODE%
@@ -1,8 +0,0 @@
1
- # Brainstorming for 4.0.1
2
-
3
- * Eliminate Streams - done, this was the biggest one
4
- * Reintroduce partial page submit (myfaces.pps?), while never really used - done, pps=true is reintroduced
5
- reducing the commit load onto execute!
6
-
7
- queue size reduction... not really needed, there never was a usecase for it
8
-
package/remap.ts DELETED
@@ -1,51 +0,0 @@
1
- /* Licensed to the Apache Software Foundation (ASF) under one or more
2
- * contributor license agreements. See the NOTICE file distributed with
3
- * this work for additional information regarding copyright ownership.
4
- * The ASF licenses this file to you under the Apache License, Version 2.0
5
- * (the "License"); you may not use this file except in compliance with
6
- * the License. You may obtain a copy of the License at
7
- *
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
15
- */
16
-
17
- /**
18
- * we are remapping the mappings in our dist file, to meet the expected
19
- * jsf loading criteria...
20
- * luckily we can use more than one source map entry
21
- * so either one is found and the other is not
22
- */
23
-
24
- //the replace in file plugin meets our system independent grep/awk criteria
25
- //does pretty much what grep and awk do on unix systems
26
- const replace = require('replace-in-file');
27
-
28
- // we ned to fetch the proper argument
29
- const args = process.argv.slice(2);
30
- // and remap it into our proper option
31
- const buildStage = (args[0] == "--development") ? "-development" : "";
32
- console.log("fixing mapping file references for jsf");
33
-
34
- const option = {
35
- //development
36
- files: 'dist/**/*.js',
37
- from: (buildStage == "-development") ? /jsf-development.js\.map/g : /jsf.js\.map/g,
38
- to: `jsf${buildStage}.js.map\n//# sourceMappingURL=jsf${buildStage}.js.map.jsf?ln=javax.faces`
39
- };
40
-
41
-
42
- (async () => {
43
- try {
44
- const result = await replace.replaceInFile(option);
45
- // Handle your result here
46
- console.log('Replacement results:', result);
47
- } catch (error) {
48
- console.error('Error occurred:', error);
49
- }
50
- })();
51
-