@emailmaker/emailmaker 1.0.107-dev.3 → 1.0.107-dev.4

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 (325) hide show
  1. package/README.md +1 -1
  2. package/cli/dist/lib/cli/project.js +2 -16
  3. package/cli/dist/lib/config.js +20 -29
  4. package/cli/dist/lib/local-test.js +3 -19
  5. package/cli/dist/lib/paths.js +11 -0
  6. package/cli/dist/lib/resolveNpmSpawn.d.ts +20 -0
  7. package/cli/dist/lib/resolveNpmSpawn.js +71 -0
  8. package/cli/dist/lib/template-engine/context/pluginPackageJsonData.js +21 -19
  9. package/cli/dist/lib/template-engine/context/standVitePackageJsonData.js +7 -8
  10. package/cli/dist/lib/template-engine/resolveVariantDir.d.ts +5 -1
  11. package/cli/dist/lib/template-engine/resolveVariantDir.js +22 -0
  12. package/cli/dist/lib/templates/shared/i18n.js +2 -2
  13. package/cli/dist/lib/templates/shared/paths.js +3 -4
  14. package/cli/dist/lib/types/package-config.d.ts +1 -0
  15. package/cli/lib/cli/project.ts +2 -18
  16. package/cli/lib/config.ts +19 -30
  17. package/cli/lib/local-test.ts +3 -22
  18. package/cli/lib/paths.ts +15 -0
  19. package/cli/lib/resolveNpmSpawn.ts +72 -0
  20. package/cli/lib/template-engine/buildStandIndexHtml.test.ts +1 -0
  21. package/cli/lib/template-engine/context/pluginPackageJsonData.ts +23 -23
  22. package/cli/lib/template-engine/context/standVitePackageJsonData.ts +7 -12
  23. package/cli/lib/template-engine/pluginEtaParity.test.ts +1 -0
  24. package/cli/lib/template-engine/resolveVariantDir.ts +22 -0
  25. package/cli/lib/template-engine/standAdvancedViteDevHostEta.test.ts +4 -3
  26. package/cli/lib/template-engine/standWebpackDevHostEta.test.ts +7 -6
  27. package/cli/lib/templates/shared/i18n.ts +2 -2
  28. package/cli/lib/templates/shared/paths.ts +3 -4
  29. package/cli/lib/types/package-config.ts +1 -0
  30. package/cli/package.json +1 -1
  31. package/cli/project-templates/plugin/assets/vite/{plugin-build.config.mjs → plugin-build.config.ts} +7 -5
  32. package/cli/project-templates/plugin/assets/vite/{sandbox-build.config.mjs → sandbox-build.config.ts} +7 -5
  33. package/cli/project-templates/plugin/assets/webpack/{plugin-build.legacy.module.cjs → plugin-build.legacy.module.ts} +20 -7
  34. package/cli/project-templates/plugin/assets/webpack/{plugin-build.legacy.umd.cjs → plugin-build.legacy.umd.ts} +20 -7
  35. package/cli/project-templates/plugin/assets/webpack/{plugin-build.modern.module.cjs → plugin-build.modern.module.ts} +9 -4
  36. package/cli/project-templates/plugin/assets/webpack/{plugin-build.modern.umd.cjs → plugin-build.modern.umd.ts} +9 -4
  37. package/cli/project-templates/plugin/assets/webpack/{sandbox-build.config.cjs → sandbox-build.config.ts} +13 -3
  38. package/cli/project-templates/plugin/bundler-vite/release.html.eta +1 -0
  39. package/cli/project-templates/plugin/bundler-webpack/public/release.html.eta +1 -0
  40. package/cli/project-templates/plugin/shared-base/public/demo/product-1.svg +10 -0
  41. package/cli/project-templates/plugin/shared-base/public/demo/product-2.svg +10 -0
  42. package/cli/project-templates/plugin/shared-base/scripts/build-runner.ts +22 -0
  43. package/cli/project-templates/plugin/shared-base/scripts/build-types.ts +17 -0
  44. package/cli/project-templates/plugin/shared-base/scripts/clean.ts +16 -0
  45. package/cli/project-templates/plugin/shared-base/scripts/dev-runner.ts +52 -0
  46. package/cli/project-templates/plugin/shared-base/scripts/npmRun.ts +61 -0
  47. package/cli/project-templates/plugin/shared-base/scripts/release-runner.ts +18 -0
  48. package/cli/project-templates/plugin/shared-base/scripts/scriptRuntime.ts +10 -0
  49. package/cli/project-templates/plugin/shared-base/src/dev/hostApp.tsx.eta +1 -0
  50. package/cli/project-templates/plugin/shared-base/src/dev-release.tsx.eta +1 -0
  51. package/cli/project-templates/plugin/shared-base/src/dev.tsx.eta +1 -1
  52. package/cli/project-templates/shared/partials/plugin-dev-host-app-advanced.eta +93 -0
  53. package/cli/project-templates/shared/partials/plugin-dev-host-app-minimal.eta +54 -0
  54. package/cli/project-templates/shared/partials/plugin-dev-tsx-advanced.eta +3 -2
  55. package/cli/project-templates/shared/partials/plugin-dev-tsx-debug.eta +18 -0
  56. package/cli/project-templates/shared/partials/plugin-dev-tsx-release.eta +33 -0
  57. package/cli/project-templates/shared/partials/plugin-dev-tsx-runtime-helpers.eta +8 -8
  58. package/cli/project-templates/shared/partials/plugin-index-ts.eta +0 -1
  59. package/cli/project-templates/shared/partials/plugin-vite-dev-host.eta +9 -5
  60. package/cli/project-templates/shared/partials/plugin-vite-plugin-build.eta +7 -5
  61. package/cli/project-templates/shared/partials/plugin-vite-release-html.eta +12 -0
  62. package/cli/project-templates/shared/partials/plugin-vite-sandbox-build.eta +7 -5
  63. package/cli/project-templates/shared/partials/plugin-webpack-dev-host-legacy.eta +12 -5
  64. package/cli/project-templates/shared/partials/plugin-webpack-dev-host-modern.eta +13 -6
  65. package/cli/project-templates/shared/partials/plugin-webpack-release-html.eta +12 -0
  66. package/cli/project-templates/shared/partials/plugin-webpack-sandbox-build.eta +13 -3
  67. package/cli/project-templates/shared/partials/plugin-wp-legacy-module.eta +28 -10
  68. package/cli/project-templates/shared/partials/plugin-wp-legacy-umd.eta +28 -10
  69. package/cli/project-templates/shared/partials/plugin-wp-modern-module.eta +9 -4
  70. package/cli/project-templates/shared/partials/plugin-wp-modern-umd.eta +9 -4
  71. package/cli/project-templates/shared/partials/stand-dev-host-vite-memory.eta +3 -3
  72. package/cli/project-templates/shared/partials/stand-dev-host-vite-subpath.eta +8 -4
  73. package/cli/project-templates/shared/partials/stand-dev-host-vite-umd.eta +5 -5
  74. package/cli/project-templates/shared/partials/stand-dev-host-vite.eta +3 -3
  75. package/cli/project-templates/shared/partials/stand-dev-host-webpack-subpath.eta +8 -4
  76. package/cli/project-templates/shared/partials/stand-dev-host-webpack-umd.eta +9 -3
  77. package/cli/project-templates/shared/partials/stand-dev-host-webpack.eta +8 -4
  78. package/cli/project-templates/shared/partials/stand-dev-storage-middleware.eta +370 -0
  79. package/cli/project-templates/shared/stand-vite-base/config/lib/createViteStandConfig.ts +80 -0
  80. package/cli/project-templates/shared/stand-vite-base/scripts/devStorageMiddleware.ts.eta +1 -0
  81. package/cli/project-templates/shared/stand-webpack-base/config/lib/{createWebpackStandConfig.cjs → createWebpackStandConfig.ts} +31 -19
  82. package/cli/project-templates/{stand/advanced/umd/vite/config/lib/umdServeMiddleware.mjs → shared/stand-webpack-base/config/lib/umdServeMiddleware.ts} +19 -11
  83. package/cli/project-templates/shared/stand-webpack-base/scripts/devStorageMiddleware.ts.eta +1 -0
  84. package/cli/project-templates/stand/advanced/memory-usage/vite/config/lib/{createMemoryUsageStandConfig.mjs → createMemoryUsageStandConfig.ts} +25 -20
  85. package/cli/project-templates/stand/advanced/umd/vite/config/lib/umdServeMiddleware.ts +68 -0
  86. package/cli/project-templates/stand/react-adapter/webpack/README.md.eta +1 -0
  87. package/cli/project-templates/stand/react-adapter/webpack/config/dev-host.ts.eta +1 -0
  88. package/cli/project-templates/stand/react-adapter/webpack/package.json.eta +1 -0
  89. package/cli/project-templates/stand/react-adapter/webpack/public/index.html.eta +1 -0
  90. package/cli/project-templates/stand/react-adapter/webpack/src/dev/editorConfig.ts.eta +1 -0
  91. package/cli/project-templates/stand/react-adapter/webpack/src/dev/email.html.eta +1 -0
  92. package/cli/project-templates/stand/react-adapter/webpack/src/dev/getAuthToken.ts.eta +1 -0
  93. package/cli/project-templates/stand/react-adapter/webpack/src/dev/oauthCredentials.ts +9 -0
  94. package/cli/project-templates/stand/react-adapter/webpack/src/dev/storageProvider.ts.eta +1 -0
  95. package/cli/project-templates/stand/react-adapter/webpack/src/index.tsx.eta +1 -0
  96. package/cli/scripts/cli-matrix-smoke.ts +19 -10
  97. package/cli/scripts/verify-global-cli.ts +1 -1
  98. package/cli/scripts/vite-plugin-version-matrix.ts +299 -0
  99. package/cli/tsconfig.json +2 -2
  100. package/emailmaker-core.aa9efbce.js +1 -0
  101. package/emailmaker-esm.js +788 -153
  102. package/emailmaker.d.ts +32 -0
  103. package/emailmaker.js +4 -4
  104. package/iframe/js/amp.BGJMqoms.js +1 -1
  105. package/iframe/js/chunk.oX6nCJbK.js +1 -1
  106. package/iframe/js/iframe-eblock.js +1 -1
  107. package/iframe/js/iframe.js +1 -1
  108. package/iframe/js/rules.BSaCN7eK.js +1 -1
  109. package/iframe/js/sanitize-html.Dy7Uwo8P.js +1 -1
  110. package/images/integrations/activecampaign.svg +4 -0
  111. package/images/integrations/bento.svg +9 -0
  112. package/images/integrations/brevo.svg +7 -0
  113. package/images/integrations/campaign_monitor.svg +10 -0
  114. package/images/integrations/constant_contact.svg +24 -0
  115. package/images/integrations/dotdigital.svg +144 -0
  116. package/images/integrations/getresponse.svg +23 -0
  117. package/images/integrations/hubspot.svg +3 -0
  118. package/images/integrations/klaviyo.svg +10 -0
  119. package/images/integrations/mailchimp.svg +9 -0
  120. package/images/integrations/salesforce.svg +20 -0
  121. package/js/browser-image-compression.js +9 -0
  122. package/package.json +2 -5
  123. package/runtime/@ant-design/cssinjs/index.js +1 -1
  124. package/runtime/@ant-design/icons/index.js +1 -1
  125. package/runtime/@ant-design/pro-layout/index.js +1 -1
  126. package/runtime/README.md +13 -13
  127. package/runtime/antd/index.js +1 -1
  128. package/runtime/app-core/index.js +1 -2
  129. package/runtime/classnames/index.js +1 -1
  130. package/runtime/core/index.js +6 -6
  131. package/runtime/dayjs/index.js +1 -1
  132. package/runtime/di/index.js +1 -2
  133. package/runtime/disposable/index.js +1 -2
  134. package/runtime/errors-runtime/index.js +1 -2
  135. package/runtime/guid/index.js +1 -2
  136. package/runtime/index.js +2 -4
  137. package/runtime/package.json +2 -3
  138. package/runtime/prop-types/index.js +1 -1
  139. package/runtime/react/index.js +1 -1
  140. package/runtime/react/jsx-dev-runtime/index.js +1 -1
  141. package/runtime/react/jsx-runtime/index.js +1 -1
  142. package/runtime/react-dom/client/index.js +1 -1
  143. package/runtime/react-dom/index.js +1 -1
  144. package/runtime/react-router-dom/index.js +1 -1
  145. package/runtime/uuid/index.js +1 -1
  146. package/static/amd/{8fc2a596.js → 19aeb269.js} +88 -88
  147. package/static/core/192ec827.js +1 -0
  148. package/static/core/22c1de2e2.js +1 -0
  149. package/static/core/24faedf0.js +1 -0
  150. package/static/core/29231645.js +1 -0
  151. package/static/core/2a3177fc2.js +1 -0
  152. package/static/core/346aabd2.js +3 -0
  153. package/static/core/3b800ed6.js +1 -0
  154. package/static/core/3e840e90.js +1 -0
  155. package/static/core/40cc9fd7.js +1 -0
  156. package/static/core/421bdec22.js +1 -0
  157. package/static/core/4aaa358b2.js +903 -0
  158. package/static/core/50ff48bc.js +4 -0
  159. package/static/core/5282795d2.js +6 -0
  160. package/static/core/563a283d.js +1 -0
  161. package/static/core/5d47e095.js +47 -0
  162. package/static/core/5f574386.js +1 -0
  163. package/static/core/67a41193.js +1 -0
  164. package/static/core/698dace4.js +7 -0
  165. package/static/core/6b648e2d.js +1 -0
  166. package/static/core/7629adfd.js +1 -0
  167. package/static/core/7717f2932.js +3 -0
  168. package/static/core/776cb34a.js +1 -0
  169. package/static/core/78a1e31e.js +1 -0
  170. package/static/core/7d56d643.js +1 -0
  171. package/static/core/841752212.js +40 -0
  172. package/static/core/8477e97e.js +1 -0
  173. package/static/core/8756d562.js +1 -0
  174. package/static/core/91d328d8.js +1 -0
  175. package/static/core/9270dbb6.js +6 -0
  176. package/static/core/96371334.js +566 -0
  177. package/static/core/9b9ddaef2.js +168 -0
  178. package/static/core/af1da4b4.js +1 -0
  179. package/static/core/b5096b152.js +471 -0
  180. package/static/core/bde6775a.js +1 -0
  181. package/static/core/bf1b888c.js +4 -0
  182. package/static/core/cec8d739.js +11 -0
  183. package/static/core/cf45bf332.js +598 -0
  184. package/static/core/cfac3d32.js +1 -0
  185. package/static/core/d21c95cf2.js +1 -0
  186. package/static/core/dbd9ca52.js +1 -0
  187. package/static/core/dc590181.js +1 -0
  188. package/static/core/e0039d55.js +1 -0
  189. package/static/core/e4071c1a.js +4 -0
  190. package/static/core/ef87b75c.js +41 -0
  191. package/static/core/f47701f32.js +20 -0
  192. package/static/core/f83d7ac42.js +3 -0
  193. package/static/core/fcc67e6b.js +1 -0
  194. package/static/core/fd40d85c.js +1 -0
  195. package/static/core/fe638847.js +1 -0
  196. package/static/esm/{e8401d17.js → 203c9644.js} +3 -3
  197. package/static/esm/4b679053.js +27 -0
  198. package/static/esm/{b273a6c2.js → f31a26c6.js} +1 -1
  199. package/static/runtime/disposable-CD74igiJ.js +1 -0
  200. package/static/runtime/guid-C0wuVR8v.js +1 -0
  201. package/vite/index.d.ts +17 -6
  202. package/vite/index.js +315 -270
  203. package/vite/pluginDev/index.d.ts +10 -19
  204. package/vite/pluginDev/index.js +251 -204
  205. package/webpack/index.d.ts +24 -5
  206. package/webpack/index.js +168 -144
  207. package/webpack/pluginDev/index.d.ts +21 -22
  208. package/webpack/pluginDev/index.js +242 -177
  209. package/cli/dist/lib/template-engine/buildStandIndexHtml.test.d.ts +0 -2
  210. package/cli/dist/lib/template-engine/buildStandIndexHtml.test.js +0 -89
  211. package/cli/dist/lib/template-engine/emitEtaTree.test.d.ts +0 -2
  212. package/cli/dist/lib/template-engine/emitEtaTree.test.js +0 -34
  213. package/cli/dist/lib/template-engine/pluginEtaParity.test.d.ts +0 -2
  214. package/cli/dist/lib/template-engine/pluginEtaParity.test.js +0 -105
  215. package/cli/dist/lib/template-engine/resolveVariantDir.test.d.ts +0 -2
  216. package/cli/dist/lib/template-engine/resolveVariantDir.test.js +0 -52
  217. package/cli/dist/lib/template-engine/standAdvancedViteDevHostEta.test.d.ts +0 -2
  218. package/cli/dist/lib/template-engine/standAdvancedViteDevHostEta.test.js +0 -67
  219. package/cli/dist/lib/template-engine/standWebpackDevHostEta.test.d.ts +0 -2
  220. package/cli/dist/lib/template-engine/standWebpackDevHostEta.test.js +0 -83
  221. package/cli/dist/lib/template-engine/storageProviderEta.test.d.ts +0 -2
  222. package/cli/dist/lib/template-engine/storageProviderEta.test.js +0 -26
  223. package/cli/project-templates/plugin/shared-base/scripts/build-types.cjs +0 -8
  224. package/cli/project-templates/plugin/shared-base/scripts/clean.cjs +0 -6
  225. package/cli/project-templates/plugin/shared-base/scripts/dev-runner.cjs +0 -48
  226. package/cli/project-templates/plugin/shared-base/scripts/release-runner.cjs +0 -63
  227. package/cli/project-templates/shared/stand-vite-base/config/lib/createViteStandConfig.mjs +0 -80
  228. package/cli/project-templates/shared/stand-vite-base/scripts/devStorageMiddleware.cjs +0 -235
  229. package/cli/project-templates/shared/stand-webpack-base/config/lib/umdServeMiddleware.cjs +0 -38
  230. package/cli/project-templates/shared/stand-webpack-base/scripts/devStorageMiddleware.cjs +0 -235
  231. package/emailmaker-core.80d62b88.js +0 -569
  232. package/runtime/_core/app-core/index.js +0 -1
  233. package/runtime/_core/chunks/app-core-DphKKh8f.js +0 -1
  234. package/runtime/_core/chunks/chunk-oqAt0Dze.js +0 -1
  235. package/runtime/_core/chunks/di-BHUzE57z.js +0 -1
  236. package/runtime/_core/chunks/disposable-PhM3rJkj.js +0 -1
  237. package/runtime/_core/chunks/errors-runtime-VjCOXaQX.js +0 -1
  238. package/runtime/_core/chunks/guid-D2-FTZQG.js +0 -1
  239. package/runtime/_core/di/index.js +0 -1
  240. package/runtime/_core/disposable/index.js +0 -1
  241. package/runtime/_core/errors-runtime/index.js +0 -1
  242. package/runtime/_core/guid/index.js +0 -1
  243. package/runtime/_core/index.js +0 -1
  244. package/shared/hostBootstrap.js +0 -47
  245. package/shared/pluginDevOptions.js +0 -31
  246. package/shared/runtimeManifest.js +0 -72
  247. package/shared/stringCase.js +0 -16
  248. package/static/core/2360f32a.js +0 -3
  249. package/static/core/2687db56.js +0 -3
  250. package/static/core/2b250af6.js +0 -1261
  251. package/static/core/3469930c.js +0 -302
  252. package/static/core/34ce9042.js +0 -201
  253. package/static/core/4091ba5b.js +0 -25
  254. package/static/core/41ce3a6a.js +0 -173
  255. package/static/core/4ac4908c.js +0 -2213
  256. package/static/core/519096c1.js +0 -2597
  257. package/static/core/5fa1772b.js +0 -116550
  258. package/static/core/61312909.js +0 -3
  259. package/static/core/62a98c07.js +0 -75301
  260. package/static/core/6309c0f2.js +0 -3
  261. package/static/core/68d9f440.js +0 -3
  262. package/static/core/73b645ab.js +0 -2
  263. package/static/core/81019351.js +0 -280
  264. package/static/core/835b37ef.js +0 -591
  265. package/static/core/91242fb3.js +0 -3
  266. package/static/core/972b15b0.js +0 -92399
  267. package/static/core/974ef468.js +0 -493
  268. package/static/core/a17614422.js +0 -38078
  269. package/static/core/a2fa7b5b.js +0 -4232
  270. package/static/core/a513adfd.js +0 -89857
  271. package/static/core/a7c73a9b.js +0 -3813
  272. package/static/core/b64c7c90.js +0 -228
  273. package/static/core/cdc9ba92.js +0 -4711
  274. package/static/core/d1db685d.js +0 -2193
  275. package/static/core/d661febc.js +0 -3
  276. package/static/core/d6d2d2d0.js +0 -23
  277. package/static/core/df1a1225.js +0 -607
  278. package/static/core/e5bff179.js +0 -1302
  279. package/static/core/e5d602f5.js +0 -2
  280. package/static/core/eb029366.js +0 -1532
  281. package/static/core/f46c035a.js +0 -2
  282. package/static/core/f8b9d89a.js +0 -461
  283. package/static/core/fd897ad7.js +0 -3
  284. package/static/core/fdd890c7.js +0 -6168
  285. package/static/esm/29eb18ff.js +0 -164
  286. package/vite/mime-types.js +0 -179
  287. package/vite/utils.js +0 -44
  288. /package/cli/project-templates/plugin/bundler-vite/config/{dev-host.mjs.eta → dev-host.ts.eta} +0 -0
  289. /package/cli/project-templates/plugin/bundler-vite/config/{plugin-build.mjs.eta → plugin-build.ts.eta} +0 -0
  290. /package/cli/project-templates/plugin/bundler-vite/config/{sandbox-build.mjs.eta → sandbox-build.ts.eta} +0 -0
  291. /package/cli/project-templates/plugin/bundler-webpack/config/{dev-host.cjs.eta → dev-host.ts.eta} +0 -0
  292. /package/cli/project-templates/plugin/bundler-webpack/config/{plugin-build.cjs.eta → plugin-build.ts.eta} +0 -0
  293. /package/cli/project-templates/plugin/bundler-webpack/config/{sandbox-build.cjs.eta → sandbox-build.ts.eta} +0 -0
  294. /package/cli/project-templates/stand/advanced/memory-usage/vite/config/{dev-host.mjs.eta → dev-host.ts.eta} +0 -0
  295. /package/cli/project-templates/stand/advanced/shadow-dom/vite/config/{dev-host.mjs.eta → dev-host.ts.eta} +0 -0
  296. /package/cli/project-templates/stand/advanced/shadow-dom/webpack/config/{dev-host.cjs.eta → dev-host.ts.eta} +0 -0
  297. /package/cli/project-templates/stand/advanced/subpath/vite/config/{dev-host.mjs.eta → dev-host.ts.eta} +0 -0
  298. /package/cli/project-templates/stand/advanced/subpath/webpack/config/{dev-host.cjs.eta → dev-host.ts.eta} +0 -0
  299. /package/cli/project-templates/stand/advanced/umd/vite/config/{dev-host.mjs.eta → dev-host.ts.eta} +0 -0
  300. /package/cli/project-templates/stand/advanced/umd/webpack/config/{dev-host.cjs.eta → dev-host.ts.eta} +0 -0
  301. /package/cli/project-templates/stand/closed-loop/vite/config/{dev-host.mjs.eta → dev-host.ts.eta} +0 -0
  302. /package/cli/project-templates/stand/closed-loop/webpack/config/{dev-host.cjs.eta → dev-host.ts.eta} +0 -0
  303. /package/cli/project-templates/stand/oauth/vite/config/{dev-host.mjs.eta → dev-host.ts.eta} +0 -0
  304. /package/cli/project-templates/stand/oauth/webpack/config/{dev-host.cjs.eta → dev-host.ts.eta} +0 -0
  305. /package/cli/project-templates/stand/react-adapter/vite/config/{dev-host.mjs.eta → dev-host.ts.eta} +0 -0
  306. /package/iframe/{iframe-eblock.80d62b88.html → iframe-eblock.aa9efbce.html} +0 -0
  307. /package/iframe/{iframe.80d62b88.html → iframe.aa9efbce.html} +0 -0
  308. /package/{runtime/chunks → static/runtime}/DownloadOutlined-a2ZUz7zB.js +0 -0
  309. /package/{runtime/chunks → static/runtime}/chunk-D-iEO58U.js +0 -0
  310. /package/{runtime/chunks → static/runtime}/classnames-DBEldvch.js +0 -0
  311. /package/{runtime/chunks → static/runtime}/client-5XqXGmAI.js +0 -0
  312. /package/{runtime/chunks → static/runtime}/dayjs.min-CO3mzOeV.js +0 -0
  313. /package/{runtime/_core/chunks/defineProperty-BGJFuFMq.js → static/runtime/defineProperty-CGNmw-jw.js} +0 -0
  314. /package/{runtime/chunks → static/runtime}/dist-Cns8cA2n.js +0 -0
  315. /package/{runtime/chunks → static/runtime}/dist-Ct0xRt3Y.js +0 -0
  316. /package/{runtime/chunks → static/runtime}/es-0FFT3fCz.js +0 -0
  317. /package/{runtime/chunks → static/runtime}/es-BwJ3eGbx.js +0 -0
  318. /package/{runtime/chunks → static/runtime}/es-D8EsVtRL.js +0 -0
  319. /package/{runtime/chunks → static/runtime}/es-Da4O25Kw.js +0 -0
  320. /package/{runtime/chunks → static/runtime}/jsx-dev-runtime-V4_MuHNS.js +0 -0
  321. /package/{runtime/chunks → static/runtime}/jsx-runtime-DBeCoE0b.js +0 -0
  322. /package/{runtime/chunks → static/runtime}/objectWithoutProperties-Bk0EDksJ.js +0 -0
  323. /package/{runtime/chunks → static/runtime}/prop-types-DxD5wgQ0.js +0 -0
  324. /package/{runtime/chunks → static/runtime}/react-TEeeBWTl.js +0 -0
  325. /package/{runtime/chunks → static/runtime}/react-dom-BKKa1g6U.js +0 -0
@@ -1,105 +0,0 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- const node_test_1 = __importDefault(require("node:test"));
7
- const strict_1 = __importDefault(require("node:assert/strict"));
8
- const path_1 = __importDefault(require("path"));
9
- const generateFiles_1 = require("./generateFiles");
10
- const paths_1 = require("../templates/shared/paths");
11
- const context_1 = require("../templates/shared/context");
12
- function mockPackageConfig() {
13
- return {
14
- appName: 'TestApp',
15
- packageName: '@acme/editor',
16
- runtimePackageName: '@acme/runtime',
17
- uiKitPackageName: '@acme/ui-kit',
18
- extensionsApiPackageName: '@acme/ext-api',
19
- extensionsReactPackageName: '@acme/ext-react',
20
- extensionsSandboxPackageName: '@acme/ext-sandbox',
21
- cliPackageName: '@acme/cli',
22
- version: '1.0.0',
23
- runtimeVersion: '2.0.0',
24
- uiKitVersion: '3.0.0',
25
- extensionsApiVersion: '1.0.0',
26
- extensionsReactVersion: '1.0.0',
27
- extensionsSandboxVersion: '1.0.0',
28
- openApiBaseUrl: 'http://localhost:3000',
29
- openApiOrigin: 'http://localhost:3000',
30
- uiLanguage: 'en',
31
- versions: {
32
- typescript: '^5',
33
- vite: '^7',
34
- webpack: '^5',
35
- webpackCli: '^6',
36
- webpackDevServer: '^5',
37
- tsLoader: '^9',
38
- },
39
- };
40
- }
41
- function basePluginOptions(overrides = {}) {
42
- return {
43
- kind: 'plugin',
44
- projectName: 'AcmePlugin',
45
- packageName: 'acme-plugin',
46
- preset: 'minimal',
47
- bundler: 'vite',
48
- target: 'npm-package',
49
- importsMode: 'esm',
50
- pluginFormat: 'esm',
51
- packageConfig: mockPackageConfig(),
52
- localTest: false,
53
- ...overrides,
54
- };
55
- }
56
- function templateOptionsFrom(raw) {
57
- const kind = raw.kind || 'plugin';
58
- return {
59
- ...(0, context_1.createTemplateContext)(raw),
60
- kind,
61
- };
62
- }
63
- (0, node_test_1.default)('plugin minimal vite: generateFiles is stable and has expected keys', () => {
64
- const raw = basePluginOptions();
65
- const topts = templateOptionsFrom(raw);
66
- const a = (0, generateFiles_1.generateFiles)(raw);
67
- const b = (0, generateFiles_1.generateFiles)(raw);
68
- strict_1.default.deepEqual(a.files, b.files);
69
- const gp = (0, paths_1.getGeneratedPaths)(topts);
70
- strict_1.default.ok(a.files['package.json']);
71
- strict_1.default.ok(a.files['tsconfig.json']);
72
- strict_1.default.ok(a.files[`src/app/${topts.pluginClassName}.ts`]);
73
- strict_1.default.ok(a.files[gp.indexHtml]);
74
- strict_1.default.ok(a.files[gp.devConfig]);
75
- strict_1.default.ok(a.files[gp.pluginBuildConfig]);
76
- strict_1.default.ok(a.files[gp.sandboxBuildConfig]);
77
- });
78
- (0, node_test_1.default)('plugin advanced webpack legacy-async-globals: expected outputs exist', () => {
79
- const raw = basePluginOptions({
80
- preset: 'advanced',
81
- bundler: 'webpack',
82
- importsMode: 'legacy-async-globals',
83
- pluginFormat: 'umd',
84
- });
85
- const topts = templateOptionsFrom(raw);
86
- const { files } = (0, generateFiles_1.generateFiles)(raw);
87
- const gp = (0, paths_1.getGeneratedPaths)(topts);
88
- strict_1.default.ok(files[gp.indexHtml]);
89
- strict_1.default.ok(files[gp.devConfig]);
90
- strict_1.default.ok(files[gp.pluginBuildConfig]);
91
- strict_1.default.ok(files[gp.sandboxBuildConfig]);
92
- strict_1.default.ok(files[`src/app/${topts.pluginClassName}.tsx`]);
93
- strict_1.default.ok(files[`src/app/ui/${topts.pluginClassName}Panel.tsx`]);
94
- strict_1.default.ok(files['src/interfaces/index.ts']);
95
- });
96
- (0, node_test_1.default)('getPluginEtaLayerRoots resolves existing dirs', () => {
97
- const { getPluginEtaLayerRoots, getCliPackageRoot } = require('./index');
98
- const cliRoot = getCliPackageRoot();
99
- const roots = getPluginEtaLayerRoots(templateOptionsFrom(basePluginOptions()), cliRoot);
100
- strict_1.default.equal(roots.length, 3);
101
- for (const r of roots) {
102
- strict_1.default.ok(r.includes(path_1.default.join('project-templates', 'plugin')), `expected plugin template root, got ${r}`);
103
- }
104
- });
105
- //# sourceMappingURL=pluginEtaParity.test.js.map
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=resolveVariantDir.test.d.ts.map
@@ -1,52 +0,0 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- const node_test_1 = __importDefault(require("node:test"));
7
- const strict_1 = __importDefault(require("node:assert/strict"));
8
- const path_1 = __importDefault(require("path"));
9
- const resolveVariantDir_1 = require("./resolveVariantDir");
10
- const base = { bundler: 'vite', packageConfig: { appName: 'x' } };
11
- const baseWp = { bundler: 'webpack', packageConfig: { appName: 'x' } };
12
- (0, node_test_1.default)('oauth vite slug', () => {
13
- strict_1.default.equal((0, resolveVariantDir_1.shouldUseEtaStandOauthVite)({ ...base, kind: 'demo-stand', standMode: 'oauth' }), true);
14
- strict_1.default.equal((0, resolveVariantDir_1.shouldUseEtaStandOauthVite)({ ...base, kind: 'stand-closed' }), false);
15
- strict_1.default.equal((0, resolveVariantDir_1.shouldUseEtaStandOauthVite)({ ...base, kind: 'demo-stand', standMode: 'oauth', advancedProfile: 'subpath' }), false);
16
- });
17
- (0, node_test_1.default)('closed-loop vite slug', () => {
18
- strict_1.default.equal((0, resolveVariantDir_1.shouldUseEtaStandClosedLoopVite)({ ...base, kind: 'stand-closed' }), true);
19
- strict_1.default.equal((0, resolveVariantDir_1.shouldUseEtaStandClosedLoopVite)({ ...base, kind: 'demo-stand', standMode: 'closed-loop' }), true);
20
- strict_1.default.equal((0, resolveVariantDir_1.shouldUseEtaStandClosedLoopVite)({ ...base, kind: 'demo-stand', standMode: 'oauth' }), false);
21
- strict_1.default.equal((0, resolveVariantDir_1.shouldUseEtaStandClosedLoopVite)({ ...base, kind: 'stand-closed', advancedProfile: 'subpath' }), false);
22
- });
23
- (0, node_test_1.default)('resolveEtaStandViteVariantRoot returns directory under cli package', () => {
24
- const cliRoot = (0, resolveVariantDir_1.getCliPackageRoot)();
25
- const oauth = (0, resolveVariantDir_1.resolveEtaStandViteVariantRoot)({ ...base, kind: 'demo-stand', standMode: 'oauth' }, cliRoot);
26
- strict_1.default.equal(oauth, path_1.default.join(cliRoot, 'project-templates', 'stand', 'oauth', 'vite'));
27
- const closed = (0, resolveVariantDir_1.resolveEtaStandViteVariantRoot)({ ...base, kind: 'stand-closed' }, cliRoot);
28
- strict_1.default.equal(closed, path_1.default.join(cliRoot, 'project-templates', 'stand', 'closed-loop', 'vite'));
29
- });
30
- (0, node_test_1.default)('oauth / closed webpack slug', () => {
31
- strict_1.default.equal((0, resolveVariantDir_1.shouldUseEtaStandOauthWebpack)({ ...baseWp, kind: 'demo-stand', standMode: 'oauth' }), true);
32
- strict_1.default.equal((0, resolveVariantDir_1.shouldUseEtaStandOauthWebpack)({ ...baseWp, kind: 'demo-stand', standMode: 'oauth', advancedProfile: 'subpath' }), false);
33
- strict_1.default.equal((0, resolveVariantDir_1.shouldUseEtaStandClosedLoopWebpack)({ ...baseWp, kind: 'stand-closed' }), true);
34
- strict_1.default.equal((0, resolveVariantDir_1.shouldUseEtaStandClosedLoopWebpack)({ ...baseWp, kind: 'demo-stand', standMode: 'oauth' }), false);
35
- });
36
- (0, node_test_1.default)('resolveEtaStandWebpackVariantRoot returns directory under cli package', () => {
37
- const cliRoot = (0, resolveVariantDir_1.getCliPackageRoot)();
38
- const oauth = (0, resolveVariantDir_1.resolveEtaStandWebpackVariantRoot)({ ...baseWp, kind: 'demo-stand', standMode: 'oauth' }, cliRoot);
39
- strict_1.default.equal(oauth, path_1.default.join(cliRoot, 'project-templates', 'stand', 'oauth', 'webpack'));
40
- const closed = (0, resolveVariantDir_1.resolveEtaStandWebpackVariantRoot)({ ...baseWp, kind: 'stand-closed' }, cliRoot);
41
- strict_1.default.equal(closed, path_1.default.join(cliRoot, 'project-templates', 'stand', 'closed-loop', 'webpack'));
42
- });
43
- (0, node_test_1.default)('advanced webpack Eta roots resolve for subpath, umd and shadow-dom', () => {
44
- const cliRoot = (0, resolveVariantDir_1.getCliPackageRoot)();
45
- const subpath = (0, resolveVariantDir_1.getStandAdvancedWebpackEtaLayerRoots)({ ...baseWp, kind: 'demo-stand', standMode: 'advanced', advancedProfile: 'subpath' }, cliRoot);
46
- const umd = (0, resolveVariantDir_1.getStandAdvancedWebpackEtaLayerRoots)({ ...baseWp, kind: 'demo-stand', standMode: 'advanced', advancedProfile: 'umd' }, cliRoot);
47
- const shadow = (0, resolveVariantDir_1.getStandAdvancedWebpackEtaLayerRoots)({ ...baseWp, kind: 'demo-stand', standMode: 'advanced', advancedProfile: 'shadow-dom' }, cliRoot);
48
- strict_1.default.equal(subpath[1], path_1.default.join(cliRoot, 'project-templates', 'stand', 'advanced', 'subpath', 'webpack'));
49
- strict_1.default.equal(umd[1], path_1.default.join(cliRoot, 'project-templates', 'stand', 'advanced', 'umd', 'webpack'));
50
- strict_1.default.equal(shadow[1], path_1.default.join(cliRoot, 'project-templates', 'stand', 'advanced', 'shadow-dom', 'webpack'));
51
- });
52
- //# sourceMappingURL=resolveVariantDir.test.js.map
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=standAdvancedViteDevHostEta.test.d.ts.map
@@ -1,67 +0,0 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- const node_test_1 = __importDefault(require("node:test"));
7
- const strict_1 = __importDefault(require("node:assert/strict"));
8
- const generateFiles_1 = require("./generateFiles");
9
- function baseStandOpts(overrides = {}) {
10
- return {
11
- kind: 'demo-stand',
12
- bundler: 'vite',
13
- pluginPackageName: 'stand-pkg',
14
- packageConfig: {
15
- appName: 'MyApp',
16
- packageName: '@acme/editor',
17
- runtimePackageName: '@acme/runtime',
18
- uiLanguage: 'en',
19
- openApiBaseUrl: 'http://localhost:3000',
20
- version: '1.0.0',
21
- runtimeVersion: '2.0.0',
22
- versions: {
23
- typescript: '5.0.0',
24
- vite: '5.0.0',
25
- webpack: '5.0.0',
26
- webpackCli: '5.0.0',
27
- webpackDevServer: '5.0.0',
28
- tsLoader: '9.0.0',
29
- },
30
- },
31
- ...overrides,
32
- };
33
- }
34
- (0, node_test_1.default)('advanced memory-usage vite dev-host uses literal api values', () => {
35
- const options = baseStandOpts({
36
- standMode: 'advanced',
37
- advancedProfile: 'memory-usage',
38
- });
39
- const { files } = (0, generateFiles_1.generateFiles)(options);
40
- const devHost = files['config/dev-host.mjs'];
41
- strict_1.default.match(devHost, /apiBaseUrl: "http:\/\/localhost:3000"/);
42
- strict_1.default.match(devHost, /apiOrigin: "http:\/\/localhost:3000"/);
43
- strict_1.default.match(devHost, /createMemoryUsageStandConfig/);
44
- });
45
- (0, node_test_1.default)('advanced umd vite dev-host uses eta middleware setup', () => {
46
- const options = baseStandOpts({
47
- standMode: 'advanced',
48
- advancedProfile: 'umd',
49
- });
50
- const { files } = (0, generateFiles_1.generateFiles)(options);
51
- const devHost = files['config/dev-host.mjs'];
52
- strict_1.default.match(devHost, /createUmdServeMiddleware/);
53
- strict_1.default.match(devHost, /publicPath: "\/MyApp\/"/);
54
- strict_1.default.match(devHost, /apiBaseUrl: "http:\/\/localhost:3000"/);
55
- });
56
- (0, node_test_1.default)('advanced subpath vite dev-host contains outputFolder and literal api values', () => {
57
- const options = baseStandOpts({
58
- standMode: 'advanced',
59
- advancedProfile: 'subpath',
60
- });
61
- const { files } = (0, generateFiles_1.generateFiles)(options);
62
- const devHost = files['config/dev-host.mjs'];
63
- strict_1.default.match(devHost, /outputFolder: "\/advanced\/subpath\/editor"/);
64
- strict_1.default.match(devHost, /apiBaseUrl: "http:\/\/localhost:3000"/);
65
- strict_1.default.match(devHost, /apiOrigin: "http:\/\/localhost:3000"/);
66
- });
67
- //# sourceMappingURL=standAdvancedViteDevHostEta.test.js.map
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=standWebpackDevHostEta.test.d.ts.map
@@ -1,83 +0,0 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- const node_test_1 = __importDefault(require("node:test"));
7
- const strict_1 = __importDefault(require("node:assert/strict"));
8
- const generateFiles_1 = require("./generateFiles");
9
- function oauthWebpackOptions() {
10
- return {
11
- kind: 'demo-stand',
12
- standMode: 'oauth',
13
- bundler: 'webpack',
14
- pluginPackageName: 'stand-oauth-wp',
15
- packageConfig: {
16
- appName: 'MyApp',
17
- packageName: '@acme/editor',
18
- runtimePackageName: '@acme/runtime',
19
- uiLanguage: 'en',
20
- openApiBaseUrl: 'http://localhost:3000',
21
- version: '1.0.0',
22
- runtimeVersion: '2.0.0',
23
- versions: {
24
- typescript: '5.0.0',
25
- vite: '5.0.0',
26
- webpack: '5.0.0',
27
- webpackCli: '5.0.0',
28
- webpackDevServer: '5.0.0',
29
- tsLoader: '9.0.0',
30
- },
31
- },
32
- };
33
- }
34
- (0, node_test_1.default)('stand oauth webpack config/dev-host.cjs uses literal api values', () => {
35
- const options = oauthWebpackOptions();
36
- const { files } = (0, generateFiles_1.generateFiles)(options);
37
- const devHost = files['config/dev-host.cjs'];
38
- strict_1.default.match(devHost, /target: "http:\/\/localhost:3000"/);
39
- strict_1.default.match(devHost, /setHeader\('origin', "http:\/\/localhost:3000"\)/);
40
- strict_1.default.match(devHost, /new MyAppWebpackPlugin\(\)/);
41
- });
42
- (0, node_test_1.default)('stand-closed webpack config/dev-host.cjs includes wp-json proxy', () => {
43
- const base = oauthWebpackOptions();
44
- const options = {
45
- ...base,
46
- kind: 'stand-closed',
47
- standMode: '',
48
- packageConfig: { ...base.packageConfig },
49
- };
50
- const { files } = (0, generateFiles_1.generateFiles)(options);
51
- const devHost = files['config/dev-host.cjs'];
52
- strict_1.default.match(devHost, /context: \['\/wp-json'\]/);
53
- });
54
- (0, node_test_1.default)('advanced subpath webpack dev-host uses subpath static directory', () => {
55
- const base = oauthWebpackOptions();
56
- const options = {
57
- ...base,
58
- kind: 'demo-stand',
59
- standMode: 'advanced',
60
- advancedProfile: 'subpath',
61
- bundler: 'webpack',
62
- };
63
- const { files } = (0, generateFiles_1.generateFiles)(options);
64
- const devHost = files['config/dev-host.cjs'];
65
- strict_1.default.match(devHost, /public', 'advanced', 'subpath'/);
66
- strict_1.default.match(devHost, /publicPath: "\/advanced\/subpath\/"/);
67
- });
68
- (0, node_test_1.default)('advanced umd webpack dev-host serves bundle without webpack plugin', () => {
69
- const base = oauthWebpackOptions();
70
- const options = {
71
- ...base,
72
- kind: 'demo-stand',
73
- standMode: 'advanced',
74
- advancedProfile: 'umd',
75
- bundler: 'webpack',
76
- };
77
- const { files } = (0, generateFiles_1.generateFiles)(options);
78
- const devHost = files['config/dev-host.cjs'];
79
- strict_1.default.match(devHost, /const umdPackageRoot = path\.dirname\(require\.resolve\("@acme\/editor\/package\.json"\)\);/);
80
- strict_1.default.match(devHost, /plugins: \[\],/);
81
- strict_1.default.match(devHost, /publicPath: "\/MyApp\/"/);
82
- });
83
- //# sourceMappingURL=standWebpackDevHostEta.test.js.map
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=storageProviderEta.test.d.ts.map
@@ -1,26 +0,0 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- const node_test_1 = __importDefault(require("node:test"));
7
- const strict_1 = __importDefault(require("node:assert/strict"));
8
- const path_1 = __importDefault(require("path"));
9
- const eta_1 = require("eta");
10
- const buildContext_1 = require("./buildContext");
11
- const paths_1 = require("../paths");
12
- const PARTIALS = path_1.default.join((0, paths_1.getCliPackageRoot)(), 'project-templates', 'shared', 'partials');
13
- (0, node_test_1.default)('stand storageProvider.ts: Eta partial renders package-specific import', () => {
14
- const templateOptions = {
15
- packageConfig: { packageName: '@scope/demo-editor' },
16
- };
17
- const eta = new eta_1.Eta({ views: PARTIALS, cache: false });
18
- const ctx = {
19
- ...(0, buildContext_1.buildStandStorageProviderFields)(templateOptions),
20
- rendered: {},
21
- };
22
- const fromEta = eta.renderString('<%~ include(\'stand-storage-provider\', it) %>', ctx);
23
- strict_1.default.match(fromEta, /from '@scope\/demo-editor';/);
24
- strict_1.default.match(fromEta, /export function createLocalFolderStorageProvider/);
25
- });
26
- //# sourceMappingURL=storageProviderEta.test.js.map
@@ -1,8 +0,0 @@
1
- const fs = require('fs');
2
- const path = require('path');
3
-
4
- const sourcePath = path.resolve(__dirname, '..', 'src/public-types.d.ts');
5
- const targetPath = path.resolve(__dirname, '..', 'dist/public-types.d.ts');
6
-
7
- fs.mkdirSync(path.dirname(targetPath), { recursive: true });
8
- fs.copyFileSync(sourcePath, targetPath);
@@ -1,6 +0,0 @@
1
- const fs = require('fs');
2
- const path = require('path');
3
-
4
- for (const target of ['dist', path.join('public', 'sandbox.js')]) {
5
- fs.rmSync(path.resolve(__dirname, '..', target), { force: true, recursive: true });
6
- }
@@ -1,48 +0,0 @@
1
- const { spawn } = require('child_process');
2
-
3
- function getCommand(scriptName) {
4
- const args = ['run', scriptName];
5
-
6
- if (process.platform === 'win32') {
7
- if (process.env.npm_execpath) {
8
- return {
9
- command: process.execPath,
10
- args: [process.env.npm_execpath, ...args],
11
- };
12
- }
13
-
14
- return {
15
- command: process.env.ComSpec || 'cmd.exe',
16
- args: ['/d', '/s', '/c', 'npm', ...args],
17
- };
18
- }
19
-
20
- return {
21
- command: 'npm',
22
- args,
23
- };
24
- }
25
-
26
- function run(scriptName) {
27
- const { command, args } = getCommand(scriptName);
28
-
29
- return spawn(command, args, {
30
- cwd: process.cwd(),
31
- stdio: 'inherit',
32
- shell: false,
33
- });
34
- }
35
-
36
- const sandbox = run('dev:sandbox');
37
-
38
- setTimeout(() => {
39
- const app = run('dev:app');
40
-
41
- const shutdown = () => {
42
- sandbox.kill('SIGINT');
43
- app.kill('SIGINT');
44
- };
45
-
46
- process.on('SIGINT', shutdown);
47
- process.on('SIGTERM', shutdown);
48
- }, 1500);
@@ -1,63 +0,0 @@
1
- const { spawn, spawnSync } = require('child_process');
2
-
3
- function getCommand(scriptName) {
4
- const args = ['run', scriptName];
5
-
6
- if (process.platform === 'win32') {
7
- if (process.env.npm_execpath) {
8
- return {
9
- command: process.execPath,
10
- args: [process.env.npm_execpath, ...args],
11
- };
12
- }
13
-
14
- return {
15
- command: process.env.ComSpec || 'cmd.exe',
16
- args: ['/d', '/s', '/c', 'npm', ...args],
17
- };
18
- }
19
-
20
- return {
21
- command: 'npm',
22
- args,
23
- };
24
- }
25
-
26
- function runSync(scriptName, env = {}) {
27
- const { command, args } = getCommand(scriptName);
28
- const result = spawnSync(command, args, {
29
- cwd: process.cwd(),
30
- stdio: 'inherit',
31
- shell: false,
32
- env: { ...process.env, ...env },
33
- });
34
-
35
- if (typeof result.status === 'number' && result.status !== 0) {
36
- process.exit(result.status);
37
- }
38
-
39
- if (result.error) {
40
- throw result.error;
41
- }
42
- }
43
-
44
- function run(scriptName, env = {}) {
45
- const { command, args } = getCommand(scriptName);
46
- return spawn(command, args, {
47
- cwd: process.cwd(),
48
- stdio: 'inherit',
49
- shell: false,
50
- env: { ...process.env, ...env },
51
- });
52
- }
53
-
54
- runSync('build');
55
-
56
- const app = run('dev:app', { EM_PLUGIN_RUN_MODE: 'release' });
57
-
58
- const shutdown = () => {
59
- app.kill('SIGINT');
60
- };
61
-
62
- process.on('SIGINT', shutdown);
63
- process.on('SIGTERM', shutdown);
@@ -1,80 +0,0 @@
1
- import path from 'path';
2
- import { createRequire } from 'module';
3
- import { defineConfig } from 'vite';
4
-
5
- /**
6
- * @param {object} options
7
- * @param {string} options.projectRoot
8
- * @param {string} [options.open] — путь для server.open; если не задан, браузер не открывается
9
- * @param {string} options.apiBaseUrl
10
- * @param {string} options.apiOrigin
11
- * @param {boolean} [options.closedLoop]
12
- * @param {import('vite').Plugin[]} [options.plugins]
13
- * @param {import('connect').NextHandleFunction[]} [options.extraServerMiddlewares]
14
- * @param {import('vite').UserConfig['build']} [options.build]
15
- * @param {import('vite').UserConfig['resolve']} [options.resolve]
16
- * @param {number} [options.serverPort]
17
- */
18
- export function createViteStandConfig(options) {
19
- const {
20
- projectRoot,
21
- open,
22
- apiBaseUrl,
23
- apiOrigin,
24
- closedLoop,
25
- plugins = [],
26
- extraServerMiddlewares = [],
27
- build,
28
- resolve,
29
- serverPort = 3000,
30
- } = options;
31
-
32
- const require = createRequire(import.meta.url);
33
- const devStorage = require(path.resolve(projectRoot, 'scripts/devStorageMiddleware.cjs'));
34
-
35
- const proxy = {
36
- '/api': {
37
- target: apiBaseUrl,
38
- secure: false,
39
- changeOrigin: true,
40
- configure: (proxyInst) => {
41
- proxyInst.on('proxyReq', (proxyReq) => {
42
- if (proxyReq.getHeader('origin')) {
43
- proxyReq.setHeader('origin', apiOrigin);
44
- }
45
- });
46
- },
47
- },
48
- };
49
-
50
- if (closedLoop) {
51
- proxy['/wp-json'] = {
52
- target: apiBaseUrl,
53
- secure: false,
54
- changeOrigin: true,
55
- };
56
- }
57
-
58
- return defineConfig(() => ({
59
- root: projectRoot,
60
- plugins: [
61
- ...plugins,
62
- {
63
- name: 'dev-storage',
64
- configureServer(server) {
65
- server.middlewares.use(devStorage());
66
- for (const mw of extraServerMiddlewares) {
67
- server.middlewares.use(mw);
68
- }
69
- },
70
- },
71
- ],
72
- ...(resolve ? { resolve } : {}),
73
- server: {
74
- ...(open !== undefined && open !== null ? { open } : {}),
75
- port: serverPort,
76
- proxy,
77
- },
78
- ...(build ? { build } : {}),
79
- }));
80
- }