ember-inspector 4.13.1-alpha.2024.8.8 → 4.13.1-alpha.2025.6.7

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 (367) hide show
  1. package/README.md +10 -2
  2. package/app/components/app-picker.hbs +2 -2
  3. package/app/components/component-tree-item.hbs +13 -13
  4. package/app/components/component-tree-toolbar.hbs +3 -3
  5. package/app/components/{date-property-field.js → date-property-field.ts} +6 -5
  6. package/app/components/deprecation-item-source.hbs +1 -1
  7. package/app/components/deprecation-item.hbs +1 -1
  8. package/app/components/deprecations-toolbar.hbs +1 -1
  9. package/app/components/item-types.hbs +7 -7
  10. package/app/components/list-cell.hbs +3 -3
  11. package/app/components/list-content.hbs +4 -3
  12. package/app/components/list-content.ts +96 -0
  13. package/app/components/list.hbs +3 -3
  14. package/app/components/list.js +7 -7
  15. package/app/components/model-types-toolbar.hbs +3 -3
  16. package/app/components/object-inspector/dependent-keys.hbs +4 -4
  17. package/app/components/object-inspector/errors.hbs +4 -4
  18. package/app/components/object-inspector/properties-all.hbs +1 -1
  19. package/app/components/object-inspector/properties-grouped.hbs +5 -5
  20. package/app/components/object-inspector/property.hbs +16 -16
  21. package/app/components/object-inspector/property.ts +26 -17
  22. package/app/components/object-inspector/sort-properties.js +12 -4
  23. package/app/components/object-inspector.hbs +8 -8
  24. package/app/components/object-inspector.js +1 -1
  25. package/app/components/promise-item.hbs +11 -11
  26. package/app/components/promise-item.js +8 -6
  27. package/app/components/promise-tree-toolbar.hbs +5 -5
  28. package/app/components/records-toolbar.hbs +2 -2
  29. package/app/components/render-item.hbs +4 -4
  30. package/app/components/render-item.ts +12 -9
  31. package/app/components/render-tree-toolbar.hbs +1 -1
  32. package/app/components/route-cell-name.hbs +1 -1
  33. package/app/components/route-cell-name.js +3 -2
  34. package/app/components/route-tree-toolbar.hbs +2 -2
  35. package/app/components/scroll-container.js +2 -0
  36. package/app/components/side-nav.hbs +5 -5
  37. package/app/components/side-nav.js +1 -1
  38. package/app/computed/{debounce.js → debounce.ts} +7 -5
  39. package/app/config/environment.d.ts +5 -2
  40. package/app/controllers/app-config.js +1 -0
  41. package/app/controllers/application.js +33 -34
  42. package/app/controllers/component-tree.js +3 -2
  43. package/app/controllers/container-type.js +2 -1
  44. package/app/controllers/container-types/{index.js → index.ts} +5 -2
  45. package/app/controllers/container-types.js +3 -6
  46. package/app/controllers/deprecations.js +16 -11
  47. package/app/controllers/libraries.js +1 -0
  48. package/app/controllers/model-types.js +1 -0
  49. package/app/controllers/promise-tree.ts +149 -0
  50. package/app/controllers/records.js +18 -26
  51. package/app/controllers/{render-tree.js → render-tree.ts} +54 -45
  52. package/app/controllers/route-tree.js +7 -5
  53. package/app/helpers/build-style.js +1 -1
  54. package/app/initializers/setup.js +1 -1
  55. package/app/libs/promise-assembler.ts +249 -0
  56. package/app/libs/resizable-columns.js +10 -10
  57. package/app/models/{promise.js → promise.ts} +72 -69
  58. package/app/{router.js → router.ts} +1 -1
  59. package/app/routes/app-detected.js +3 -5
  60. package/app/routes/application.js +6 -12
  61. package/app/routes/deprecations.js +7 -16
  62. package/app/routes/launch.js +2 -1
  63. package/app/routes/libraries.js +2 -1
  64. package/app/routes/model-type.js +2 -3
  65. package/app/routes/model-types.ts +57 -0
  66. package/app/routes/promise-tree.ts +63 -0
  67. package/app/routes/records.ts +78 -0
  68. package/app/routes/render-tree.ts +93 -0
  69. package/app/routes/route-tree.js +0 -1
  70. package/app/routes/{tab.js → tab.ts} +9 -2
  71. package/app/routes/whats-new.js +1 -1
  72. package/app/services/adapters/{basic.js → basic.ts} +36 -30
  73. package/app/services/adapters/{bookmarklet.js → bookmarklet.ts} +17 -24
  74. package/app/services/adapters/{chrome.js → chrome.ts} +1 -2
  75. package/app/services/adapters/{web-extension.js → web-extension.ts} +43 -46
  76. package/app/services/adapters/websocket.ts +40 -0
  77. package/app/services/layout.ts +88 -0
  78. package/app/services/port.ts +195 -0
  79. package/app/services/storage/{local.js → local.ts} +7 -20
  80. package/app/services/storage/{memory.js → memory.ts} +6 -21
  81. package/app/services/{storage.js → storage.ts} +9 -20
  82. package/app/styles/base.scss +4 -2
  83. package/app/styles/colors.scss +33 -31
  84. package/app/styles/component_tree.scss +56 -51
  85. package/app/styles/dropdown.scss +2 -2
  86. package/app/styles/ember-table.scss +3 -3
  87. package/app/styles/mixin.scss +26 -26
  88. package/app/styles/object_inspector.scss +22 -21
  89. package/app/styles/utils.scss +408 -122
  90. package/app/templates/application.hbs +11 -11
  91. package/app/templates/component-tree.hbs +1 -1
  92. package/app/templates/deprecations.hbs +2 -3
  93. package/app/templates/info.hbs +10 -10
  94. package/app/templates/promise-tree.hbs +1 -1
  95. package/app/templates/render-tree.hbs +1 -1
  96. package/app/templates/route-tree.hbs +1 -1
  97. package/app/utils/escape-reg-exp.ts +3 -2
  98. package/app/utils/nullish.ts +7 -0
  99. package/app/utils/parse-text.ts +4 -5
  100. package/app/utils/truncate.js +0 -1
  101. package/config/ember-cli-update.json +5 -3
  102. package/config/ember-try.js +117 -72
  103. package/config/environment.js +1 -1
  104. package/config/optional-features.json +2 -1
  105. package/dist/bookmarklet/load_inspector.js +30 -11
  106. package/dist/bookmarklet/panes-3-16-0/assets/chunk.443.86a005e528b587663b78.js +1135 -0
  107. package/dist/bookmarklet/panes-3-16-0/assets/chunk.443.86a005e528b587663b78.js.LICENSE.txt +18 -0
  108. package/dist/bookmarklet/panes-3-16-0/assets/chunk.524.6a5edcbbcf29cbe1b167.js +40 -0
  109. package/dist/bookmarklet/panes-3-16-0/assets/chunk.582.b77d8494154b524e9f91.js +42 -0
  110. package/dist/bookmarklet/panes-3-16-0/assets/ember-inspector.css +150 -155
  111. package/dist/bookmarklet/panes-3-16-0/assets/ember-inspector.js +486 -590
  112. package/dist/bookmarklet/panes-3-16-0/assets/svg/ellipsis.svg +3 -3
  113. package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-bug.svg +1 -1
  114. package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-components.svg +2 -2
  115. package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-container.svg +1 -1
  116. package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-data.svg +1 -1
  117. package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-deprecations.svg +3 -3
  118. package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-info.svg +3 -3
  119. package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-promises.svg +2 -2
  120. package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-render-performance.svg +2 -2
  121. package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-route-tree.svg +7 -7
  122. package/dist/bookmarklet/panes-3-16-0/assets/vendor.css +147 -148
  123. package/dist/bookmarklet/panes-3-16-0/assets/vendor.js +5153 -5980
  124. package/dist/bookmarklet/panes-3-16-0/ember_debug.js +250 -268
  125. package/dist/bookmarklet/panes-3-16-0/index.html +3 -4
  126. package/dist/chrome/background.js +26 -21
  127. package/dist/chrome/boot.js +1 -1
  128. package/dist/chrome/content-script.js +11 -11
  129. package/dist/chrome/devtools.js +12 -3
  130. package/dist/chrome/manifest.json +2 -2
  131. package/dist/chrome/options.js +17 -12
  132. package/dist/chrome/panes-3-16-0/assets/chunk.443.86a005e528b587663b78.js +1135 -0
  133. package/dist/chrome/panes-3-16-0/assets/chunk.443.86a005e528b587663b78.js.LICENSE.txt +18 -0
  134. package/dist/chrome/panes-3-16-0/assets/chunk.524.6a5edcbbcf29cbe1b167.js +40 -0
  135. package/dist/chrome/panes-3-16-0/assets/chunk.582.b77d8494154b524e9f91.js +42 -0
  136. package/dist/chrome/panes-3-16-0/assets/ember-inspector.css +150 -155
  137. package/dist/chrome/panes-3-16-0/assets/ember-inspector.js +486 -590
  138. package/dist/chrome/panes-3-16-0/assets/svg/ellipsis.svg +3 -3
  139. package/dist/chrome/panes-3-16-0/assets/svg/nav-bug.svg +1 -1
  140. package/dist/chrome/panes-3-16-0/assets/svg/nav-components.svg +2 -2
  141. package/dist/chrome/panes-3-16-0/assets/svg/nav-container.svg +1 -1
  142. package/dist/chrome/panes-3-16-0/assets/svg/nav-data.svg +1 -1
  143. package/dist/chrome/panes-3-16-0/assets/svg/nav-deprecations.svg +3 -3
  144. package/dist/chrome/panes-3-16-0/assets/svg/nav-info.svg +3 -3
  145. package/dist/chrome/panes-3-16-0/assets/svg/nav-promises.svg +2 -2
  146. package/dist/chrome/panes-3-16-0/assets/svg/nav-render-performance.svg +2 -2
  147. package/dist/chrome/panes-3-16-0/assets/svg/nav-route-tree.svg +7 -7
  148. package/dist/chrome/panes-3-16-0/assets/vendor.css +147 -148
  149. package/dist/chrome/panes-3-16-0/assets/vendor.js +5153 -5980
  150. package/dist/chrome/panes-3-16-0/ember_debug.js +250 -268
  151. package/dist/chrome/panes-3-16-0/index.html +3 -4
  152. package/dist/chrome/scripts/in-page-script.js +19 -13
  153. package/dist/firefox/background.js +26 -21
  154. package/dist/firefox/boot.js +1 -1
  155. package/dist/firefox/content-script.js +11 -11
  156. package/dist/firefox/devtools.js +12 -3
  157. package/dist/firefox/manifest.json +2 -2
  158. package/dist/firefox/options.js +17 -12
  159. package/dist/firefox/panes-3-16-0/assets/chunk.443.86a005e528b587663b78.js +1135 -0
  160. package/dist/firefox/panes-3-16-0/assets/chunk.443.86a005e528b587663b78.js.LICENSE.txt +18 -0
  161. package/dist/firefox/panes-3-16-0/assets/chunk.524.6a5edcbbcf29cbe1b167.js +40 -0
  162. package/dist/firefox/panes-3-16-0/assets/chunk.582.b77d8494154b524e9f91.js +42 -0
  163. package/dist/firefox/panes-3-16-0/assets/ember-inspector.css +150 -155
  164. package/dist/firefox/panes-3-16-0/assets/ember-inspector.js +486 -590
  165. package/dist/firefox/panes-3-16-0/assets/svg/ellipsis.svg +3 -3
  166. package/dist/firefox/panes-3-16-0/assets/svg/nav-bug.svg +1 -1
  167. package/dist/firefox/panes-3-16-0/assets/svg/nav-components.svg +2 -2
  168. package/dist/firefox/panes-3-16-0/assets/svg/nav-container.svg +1 -1
  169. package/dist/firefox/panes-3-16-0/assets/svg/nav-data.svg +1 -1
  170. package/dist/firefox/panes-3-16-0/assets/svg/nav-deprecations.svg +3 -3
  171. package/dist/firefox/panes-3-16-0/assets/svg/nav-info.svg +3 -3
  172. package/dist/firefox/panes-3-16-0/assets/svg/nav-promises.svg +2 -2
  173. package/dist/firefox/panes-3-16-0/assets/svg/nav-render-performance.svg +2 -2
  174. package/dist/firefox/panes-3-16-0/assets/svg/nav-route-tree.svg +7 -7
  175. package/dist/firefox/panes-3-16-0/assets/vendor.css +147 -148
  176. package/dist/firefox/panes-3-16-0/assets/vendor.js +5153 -5980
  177. package/dist/firefox/panes-3-16-0/ember_debug.js +250 -268
  178. package/dist/firefox/panes-3-16-0/index.html +3 -4
  179. package/dist/firefox/scripts/in-page-script.js +19 -13
  180. package/dist/websocket/assets/chunk.443.86a005e528b587663b78.js +1135 -0
  181. package/dist/websocket/assets/chunk.443.86a005e528b587663b78.js.LICENSE.txt +18 -0
  182. package/dist/websocket/assets/chunk.524.6a5edcbbcf29cbe1b167.js +40 -0
  183. package/dist/websocket/assets/chunk.582.b77d8494154b524e9f91.js +42 -0
  184. package/dist/websocket/assets/ember-inspector.css +150 -155
  185. package/dist/websocket/assets/ember-inspector.js +486 -590
  186. package/dist/websocket/assets/svg/ellipsis.svg +3 -3
  187. package/dist/websocket/assets/svg/nav-bug.svg +1 -1
  188. package/dist/websocket/assets/svg/nav-components.svg +2 -2
  189. package/dist/websocket/assets/svg/nav-container.svg +1 -1
  190. package/dist/websocket/assets/svg/nav-data.svg +1 -1
  191. package/dist/websocket/assets/svg/nav-deprecations.svg +3 -3
  192. package/dist/websocket/assets/svg/nav-info.svg +3 -3
  193. package/dist/websocket/assets/svg/nav-promises.svg +2 -2
  194. package/dist/websocket/assets/svg/nav-render-performance.svg +2 -2
  195. package/dist/websocket/assets/svg/nav-route-tree.svg +7 -7
  196. package/dist/websocket/assets/vendor.css +147 -148
  197. package/dist/websocket/assets/vendor.js +5153 -5980
  198. package/dist/websocket/ember_debug.js +250 -268
  199. package/dist/websocket/index.html +3 -4
  200. package/ember-cli-build.js +11 -11
  201. package/ember_debug/adapters/basic.js +2 -1
  202. package/ember_debug/adapters/bookmarklet.js +1 -0
  203. package/ember_debug/adapters/firefox.js +3 -3
  204. package/ember_debug/adapters/web-extension.js +2 -1
  205. package/ember_debug/data-debug.js +5 -6
  206. package/ember_debug/deprecation-debug.js +8 -8
  207. package/ember_debug/general-debug.js +1 -1
  208. package/ember_debug/libs/capture-render-tree.js +0 -1
  209. package/ember_debug/libs/promise-assembler.js +1 -0
  210. package/ember_debug/libs/render-tree.js +13 -12
  211. package/ember_debug/libs/source-map.js +5 -4
  212. package/ember_debug/libs/view-inspection.js +12 -12
  213. package/ember_debug/main.js +1 -1
  214. package/ember_debug/models/profile-manager.js +2 -1
  215. package/ember_debug/object-inspector.js +19 -18
  216. package/ember_debug/port.js +1 -0
  217. package/ember_debug/promise-debug.js +1 -1
  218. package/ember_debug/route-debug.js +3 -2
  219. package/ember_debug/services/session.js +1 -1
  220. package/ember_debug/utils/classify.js +1 -1
  221. package/ember_debug/utils/ember/debug.js +2 -0
  222. package/ember_debug/utils/ember/loader.js +2 -2
  223. package/ember_debug/utils/ember/runloop.js +2 -0
  224. package/ember_debug/utils/ember-object-names.js +2 -2
  225. package/ember_debug/utils/ember.js +9 -3
  226. package/ember_debug/utils/evented.js +1 -1
  227. package/ember_debug/utils/get-object-name.js +2 -2
  228. package/ember_debug/utils/rsvp.js +1 -0
  229. package/ember_debug/utils/type-check.js +5 -1
  230. package/ember_debug/vendor/startup-wrapper.js +4 -1
  231. package/ember_debug/view-debug.js +3 -2
  232. package/eslint.config.mjs +172 -0
  233. package/gulpfile.js +1 -1
  234. package/lib/ui/addon/components/drag-handle.hbs +4 -4
  235. package/lib/ui/addon/components/drag-handle.js +3 -1
  236. package/lib/ui/addon/components/empty-message.hbs +1 -1
  237. package/lib/ui/addon/components/error-page.hbs +3 -3
  238. package/lib/ui/addon/components/resizable-column.js +1 -1
  239. package/lib/ui/addon/components/toolbar-clear-button.hbs +1 -1
  240. package/lib/ui/addon/components/toolbar-reload-button.hbs +1 -1
  241. package/lib/ui/addon/components/toolbar-search-field.hbs +2 -2
  242. package/lib/ui/addon/styles/_disclosure-triangle.scss +3 -1
  243. package/lib/ui/addon/styles/_drag-handle.scss +7 -7
  244. package/lib/ui/addon/styles/_empty-message.scss +1 -1
  245. package/lib/ui/addon/styles/_error-page.scss +8 -7
  246. package/lib/ui/addon/styles/_list.scss +46 -45
  247. package/lib/ui/addon/styles/_nav.scss +29 -27
  248. package/lib/ui/addon/styles/_object-inspector-toggle.scss +5 -5
  249. package/lib/ui/addon/styles/_pill.scss +4 -4
  250. package/lib/ui/addon/styles/_send-to-console.scss +1 -1
  251. package/lib/ui/addon/styles/_split.scss +17 -20
  252. package/lib/ui/addon/styles/addon.scss +13 -13
  253. package/lib/ui/addon/styles/toolbar/_checkbox.scss +5 -5
  254. package/lib/ui/addon/styles/toolbar/_icon-button.scss +44 -25
  255. package/lib/ui/addon/styles/toolbar/_index.scss +6 -5
  256. package/lib/ui/addon/styles/toolbar/_radio.scss +10 -10
  257. package/lib/ui/addon/styles/toolbar/_search.scss +5 -3
  258. package/package.json +85 -86
  259. package/public/assets/svg/ellipsis.svg +3 -3
  260. package/public/assets/svg/nav-bug.svg +1 -1
  261. package/public/assets/svg/nav-components.svg +2 -2
  262. package/public/assets/svg/nav-container.svg +1 -1
  263. package/public/assets/svg/nav-data.svg +1 -1
  264. package/public/assets/svg/nav-deprecations.svg +3 -3
  265. package/public/assets/svg/nav-info.svg +3 -3
  266. package/public/assets/svg/nav-promises.svg +2 -2
  267. package/public/assets/svg/nav-render-performance.svg +2 -2
  268. package/public/assets/svg/nav-route-tree.svg +7 -7
  269. package/scripts/download-panes.js +1 -1
  270. package/skeletons/bookmarklet/load_inspector.js +30 -11
  271. package/skeletons/web-extension/background.js +26 -21
  272. package/skeletons/web-extension/boot.js +1 -1
  273. package/skeletons/web-extension/content-script.js +11 -11
  274. package/skeletons/web-extension/devtools.js +12 -3
  275. package/skeletons/web-extension/manifest.json +2 -2
  276. package/skeletons/web-extension/options.js +17 -12
  277. package/skeletons/web-extension/scripts/in-page-script.js +19 -13
  278. package/testem.js +0 -1
  279. package/tests/acceptance/app-picker-test.js +4 -4
  280. package/tests/acceptance/component-tree-test.js +43 -57
  281. package/tests/acceptance/container-test.js +0 -2
  282. package/tests/acceptance/data-test.js +8 -10
  283. package/tests/acceptance/deprecation-test.js +8 -12
  284. package/tests/acceptance/info-test.js +2 -2
  285. package/tests/acceptance/object-inspector-test.js +62 -110
  286. package/tests/acceptance/promise-test.js +1 -11
  287. package/tests/acceptance/render-tree-test.js +2 -2
  288. package/tests/acceptance/route-tree-test.js +12 -14
  289. package/tests/acceptance/whats-new-test.js +3 -3
  290. package/tests/ember_debug/container-debug-test.js +4 -4
  291. package/tests/ember_debug/deprecation-debug-test.js +8 -5
  292. package/tests/ember_debug/ember-debug-test.js +1 -4
  293. package/tests/ember_debug/object-inspector-test.js +44 -44
  294. package/tests/ember_debug/profile-manager-test.js +140 -165
  295. package/tests/ember_debug/profile-node-test.js +3 -3
  296. package/tests/ember_debug/promise-assembler-test.js +12 -9
  297. package/tests/ember_debug/promise-debug-test.js +5 -6
  298. package/tests/ember_debug/route-debug-test.js +8 -7
  299. package/tests/ember_debug/view-debug-test.js +179 -181
  300. package/tests/helpers/{index.js → index.ts} +6 -5
  301. package/tests/helpers/setup-ember-debug-test.js +14 -0
  302. package/tests/integration/injection-test.js +12 -13
  303. package/tests/test-adapter.js +15 -15
  304. package/tests/test-helper.js +6 -1
  305. package/tests/unit/check-current-route-test.js +0 -4
  306. package/tests/unit/resizable-columns-test.js +53 -51
  307. package/tests/unit/utils/parse-text-test.js +3 -3
  308. package/tests/unit/utils/search-match-test.js +5 -5
  309. package/tests/unit/utils/type-check-test.js +22 -0
  310. package/tsconfig.json +3 -1
  311. package/types/ember-inspector/index.d.ts +2 -1
  312. package/types/global.d.ts +1 -7
  313. package/.editorconfig +0 -19
  314. package/.ember-cli +0 -15
  315. package/.eslintignore +0 -33
  316. package/.eslintrc.js +0 -86
  317. package/.github/ISSUE_TEMPLATE/bug_report.md +0 -30
  318. package/.github/ISSUE_TEMPLATE/feature_request.md +0 -20
  319. package/.github/dependabot.yml +0 -14
  320. package/.github/pull_request_template.md +0 -4
  321. package/.github/workflows/build.yml +0 -339
  322. package/.github/workflows/plan-release.yml +0 -83
  323. package/.github/workflows/publish.yml +0 -60
  324. package/.prettierignore +0 -25
  325. package/.prettierrc.js +0 -14
  326. package/.release-plan.json +0 -17
  327. package/.stylelintrc.js +0 -3
  328. package/.template-lintrc.js +0 -12
  329. package/.tool-versions +0 -2
  330. package/.watchmanconfig +0 -3
  331. package/app/components/.gitkeep +0 -0
  332. package/app/components/list-content.js +0 -130
  333. package/app/controllers/.gitkeep +0 -0
  334. package/app/controllers/promise-tree.js +0 -130
  335. package/app/helpers/.gitkeep +0 -0
  336. package/app/libs/promise-assembler.js +0 -169
  337. package/app/models/.gitkeep +0 -0
  338. package/app/routes/.gitkeep +0 -0
  339. package/app/routes/model-types.js +0 -47
  340. package/app/routes/promise-tree.js +0 -48
  341. package/app/routes/records.js +0 -55
  342. package/app/routes/render-tree.js +0 -66
  343. package/app/services/adapters/websocket.js +0 -31
  344. package/app/services/layout.js +0 -39
  345. package/app/services/port.js +0 -90
  346. package/dist/bookmarklet/panes-3-16-0/assets/chunk.143.152107b52f1d9b56abd2.js +0 -28
  347. package/dist/bookmarklet/panes-3-16-0/assets/chunk.178.fd17fd3a54b4e3a24554.js +0 -9
  348. package/dist/bookmarklet/panes-3-16-0/assets/chunk.359.0be5d21f60d2b5d6d423.js +0 -2620
  349. package/dist/bookmarklet/panes-3-16-0/assets/chunk.359.0be5d21f60d2b5d6d423.js.LICENSE.txt +0 -67
  350. package/dist/chrome/panes-3-16-0/assets/chunk.143.152107b52f1d9b56abd2.js +0 -28
  351. package/dist/chrome/panes-3-16-0/assets/chunk.178.fd17fd3a54b4e3a24554.js +0 -9
  352. package/dist/chrome/panes-3-16-0/assets/chunk.359.0be5d21f60d2b5d6d423.js +0 -2620
  353. package/dist/chrome/panes-3-16-0/assets/chunk.359.0be5d21f60d2b5d6d423.js.LICENSE.txt +0 -67
  354. package/dist/firefox/panes-3-16-0/assets/chunk.143.152107b52f1d9b56abd2.js +0 -28
  355. package/dist/firefox/panes-3-16-0/assets/chunk.178.fd17fd3a54b4e3a24554.js +0 -9
  356. package/dist/firefox/panes-3-16-0/assets/chunk.359.0be5d21f60d2b5d6d423.js +0 -2620
  357. package/dist/firefox/panes-3-16-0/assets/chunk.359.0be5d21f60d2b5d6d423.js.LICENSE.txt +0 -67
  358. package/dist/websocket/assets/chunk.143.152107b52f1d9b56abd2.js +0 -28
  359. package/dist/websocket/assets/chunk.178.fd17fd3a54b4e3a24554.js +0 -9
  360. package/dist/websocket/assets/chunk.359.0be5d21f60d2b5d6d423.js +0 -2620
  361. package/dist/websocket/assets/chunk.359.0be5d21f60d2b5d6d423.js.LICENSE.txt +0 -67
  362. package/ember_debug/.eslintrc.js +0 -13
  363. package/tests/helpers/trigger-port.js +0 -6
  364. package/tests/unit/.gitkeep +0 -0
  365. /package/app/{app.js → app.ts} +0 -0
  366. /package/app/controllers/{info.js → info.ts} +0 -0
  367. /package/app/services/adapters/{firefox.js → firefox.ts} +0 -0
package/.editorconfig DELETED
@@ -1,19 +0,0 @@
1
- # EditorConfig helps developers define and maintain consistent
2
- # coding styles between different editors and IDEs
3
- # editorconfig.org
4
-
5
- root = true
6
-
7
- [*]
8
- end_of_line = lf
9
- charset = utf-8
10
- trim_trailing_whitespace = true
11
- insert_final_newline = true
12
- indent_style = space
13
- indent_size = 2
14
-
15
- [*.hbs]
16
- insert_final_newline = false
17
-
18
- [*.{diff,md}]
19
- trim_trailing_whitespace = false
package/.ember-cli DELETED
@@ -1,15 +0,0 @@
1
- {
2
- /**
3
- Ember CLI sends analytics information by default. The data is completely
4
- anonymous, but there are times when you might want to disable this behavior.
5
-
6
- Setting `disableAnalytics` to true will prevent any data from being sent.
7
- */
8
- "disableAnalytics": false,
9
-
10
- /**
11
- Setting `isTypeScriptProject` to true will force the blueprint generators to generate TypeScript
12
- rather than JavaScript by default, when a TypeScript version of a given blueprint is available.
13
- */
14
- "isTypeScriptProject": false
15
- }
package/.eslintignore DELETED
@@ -1,33 +0,0 @@
1
- # unconventional js
2
- /blueprints/*/files/
3
- /vendor/
4
-
5
- # compiled output
6
- /dist/
7
- /tmp/
8
-
9
- # dependencies
10
- /bower_components/
11
- /node_modules/
12
-
13
- # misc
14
- /coverage/
15
- !.*
16
- .*/
17
- .eslintcache
18
-
19
- # ember-try
20
- /.node_modules.ember-try/
21
- /bower.json.ember-try
22
- /npm-shrinkwrap.json.ember-try
23
- /package.json.ember-try
24
- /package-lock.json.ember-try
25
- /yarn.lock.ember-try
26
-
27
- # ember-inspector specific
28
- /dist_prev/
29
- /skeletons/
30
- /ember_debug/vendor/startup-wrapper.js
31
-
32
- # Safari build
33
- /Ember Inspector/
package/.eslintrc.js DELETED
@@ -1,86 +0,0 @@
1
- 'use strict';
2
-
3
- module.exports = {
4
- root: true,
5
- parser: '@babel/eslint-parser',
6
- parserOptions: {
7
- ecmaVersion: 2020,
8
- sourceType: 'module',
9
- ecmaFeatures: {
10
- legacyDecorators: true,
11
- },
12
- },
13
- plugins: ['ember'],
14
- extends: [
15
- 'eslint:recommended',
16
- 'plugin:ember/recommended',
17
- 'plugin:prettier/recommended',
18
- ],
19
- env: {
20
- browser: true,
21
- },
22
- globals: {
23
- basicContext: false,
24
- require: false,
25
- requireModule: false,
26
- },
27
- rules: {
28
- 'no-prototype-builtins': 'off',
29
-
30
- 'ember/no-jquery': 'error',
31
-
32
- // Temporarily turn these off
33
- 'ember/classic-decorator-hooks': 'off',
34
- 'ember/classic-decorator-no-classic-methods': 'off',
35
- 'ember/no-classic-classes': 'off',
36
- 'ember/no-classic-components': 'off',
37
- 'ember/no-computed-properties-in-native-classes': 'off',
38
- 'ember/no-get': 'off',
39
-
40
- // Best practice
41
- 'no-duplicate-imports': 'error',
42
- 'ember/no-mixins': 'error',
43
- },
44
- overrides: [
45
- // node files
46
- {
47
- files: [
48
- './.eslintrc.js',
49
- './.prettierrc.js',
50
- './.stylelintrc.js',
51
- './.template-lintrc.js',
52
- './ember-cli-build.js',
53
- './testem.js',
54
- './blueprints/*/index.js',
55
- './config/**/*.js',
56
- './lib/*/index.js',
57
- './scripts/**/*.js',
58
- './server/**/*.js',
59
- ],
60
- excludedFiles: ['app/**'],
61
- parserOptions: {
62
- sourceType: 'script',
63
- },
64
- env: {
65
- browser: false,
66
- node: true,
67
- },
68
- plugins: ['node'],
69
- extends: ['plugin:node/recommended'],
70
- rules: {
71
- // this can be removed once the following is fixed
72
- // https://github.com/mysticatea/eslint-plugin-node/issues/77
73
- 'node/no-unpublished-require': 'off',
74
- },
75
- },
76
- {
77
- // test files
78
- files: ['tests/**/*-test.{js,ts}'],
79
- extends: ['plugin:qunit/recommended'],
80
- rules: {
81
- 'qunit/no-conditional-assertions': 'off',
82
- 'qunit/no-early-return': 'off',
83
- },
84
- },
85
- ],
86
- };
@@ -1,30 +0,0 @@
1
- ---
2
- name: Bug report
3
- about: Create a report to help us improve
4
- title: ''
5
- labels: 'bug'
6
- assignees: ''
7
-
8
- ---
9
-
10
- **Describe the bug**
11
- A clear and concise description of what the bug is.
12
-
13
- **To Reproduce**
14
- Steps to reproduce the behavior:
15
- 1. Go to '...'
16
- 2. Click on '....'
17
- 3. Scroll down to '....'
18
- 4. See error
19
-
20
- **Expected behavior**
21
- A clear and concise description of what you expected to happen.
22
-
23
- **Screenshots**
24
- If applicable, add screenshots to help explain your problem.
25
-
26
- **Environment**
27
- Ember version, browser, etc.
28
-
29
- **Additional context**
30
- Add any other context about the problem here.
@@ -1,20 +0,0 @@
1
- ---
2
- name: Feature request
3
- about: Suggest an idea for this project
4
- title: ''
5
- labels: ''
6
- assignees: ''
7
-
8
- ---
9
-
10
- **Is your feature request related to a problem? Please describe.**
11
- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12
-
13
- **Describe the solution you'd like**
14
- A clear and concise description of what you want to happen.
15
-
16
- **Describe alternatives you've considered**
17
- A clear and concise description of any alternative solutions or features you've considered.
18
-
19
- **Additional context**
20
- Add any other context or screenshots about the feature request here.
@@ -1,14 +0,0 @@
1
- version: 2
2
- updates:
3
- - package-ecosystem: npm
4
- directory: "/"
5
- schedule:
6
- interval: weekly
7
- open-pull-requests-limit: 10
8
- labels:
9
- - dependencies
10
- - internal
11
- ignore:
12
- - dependency-name: ember-cli
13
- versions:
14
- - ">= 0"
@@ -1,4 +0,0 @@
1
- ## Description
2
-
3
-
4
- ## Screenshots
@@ -1,339 +0,0 @@
1
- name: Build and Publish
2
- on:
3
- pull_request: {}
4
- push:
5
- branches:
6
- - main
7
- - stable
8
- - ember-2.7.0-3.4.0
9
- - ember-0.0.0-2.7.0
10
- tags:
11
- - v*
12
- schedule:
13
- - cron: '0 0 * * *'
14
-
15
- jobs:
16
- test:
17
- name: Test
18
- runs-on: ubuntu-latest
19
- env:
20
- CI: 'true'
21
- steps:
22
- - name: Checkout
23
- uses: actions/checkout@v3
24
- # Code Climate expects these variables to be set
25
- - name: Set up commit metadata
26
- if: github.event_name == 'push'
27
- env:
28
- GIT_COMMIT_SHA: ${{ github.sha }}
29
- GIT_BRANCH: ${{ github.ref }}
30
- run: |
31
- echo "GIT_COMMIT_SHA=${GIT_COMMIT_SHA}" >> $GITHUB_ENV
32
- echo "GIT_BRANCH=${GIT_BRANCH/refs\/heads\//}" >> $GITHUB_ENV
33
- - name: Set up commit metadata
34
- if: github.event_name == 'pull_request'
35
- env:
36
- GIT_COMMIT_SHA: ${{ github.event.pull_request.head.sha }}
37
- GIT_BRANCH: ${{ github.event.pull_request.head.ref }}
38
- run: |
39
- echo "GIT_COMMIT_SHA=${GIT_COMMIT_SHA}" >> $GITHUB_ENV
40
- echo "GIT_BRANCH=${GIT_BRANCH}" >> $GITHUB_ENV
41
- - name: setup pnpm & node
42
- uses: wyvox/action-setup-pnpm@v3
43
- - name: Install dependencies (pnpm)
44
- run: pnpm install
45
- - name: Lint (hbs)
46
- run: pnpm lint:hbs
47
- - name: Lint (js)
48
- run: pnpm lint:js
49
- - name: Run test
50
- run: pnpm test
51
- env:
52
- COVERAGE: 'true'
53
- # Ideally, we would split up the test task into separate build and run
54
- # steps to get better CI log output (folding and timing information).
55
- # However, this is not currently possible with ember-cli-code-coverage.
56
- #
57
- # See https://github.com/kategengler/ember-cli-code-coverage/issues/210
58
- #
59
- # - name: Build
60
- # run: pnpm ember build --environment test
61
- # env:
62
- # COVERAGE: 'true'
63
- # - name: Run test
64
- # run: COVERAGE pnpm ember test --path dist
65
- # env:
66
- # # Due to a bug in ember-cli, running `ember test` with `--path` doesn't set `EMBER_ENV=test`
67
- # # See https://github.com/ember-cli/ember-cli/issues/8922
68
- # EMBER_ENV: test
69
- # COVERAGE: 'true'
70
- - name: Report coverage
71
- if: github.event_name != 'schedule'
72
- run: pnpm codeclimate-test-reporter < coverage/lcov.info
73
- env:
74
- CODECLIMATE_REPO_TOKEN: 59edcfd1ffc778791af49ca594b503e7179f6bbe1991b2cc0c0a6987d103253d
75
-
76
- ember-try:
77
- name: ember-try (${{ matrix.scenario }})
78
- needs: test
79
- runs-on: ubuntu-latest
80
- env:
81
- CI: 'true'
82
- strategy:
83
- fail-fast: false
84
- matrix:
85
- scenario:
86
- - ember-lts-3.16
87
- - ember-lts-3.20
88
- - ember-lts-3.24
89
- - ember-lts-3.28
90
- - ember-release
91
- - ember-beta
92
- - ember-canary
93
- - ember-default-no-prototype-extensions
94
-
95
- steps:
96
- - name: Checkout
97
- uses: actions/checkout@v3
98
- - name: setup pnpm & node
99
- uses: wyvox/action-setup-pnpm@v3
100
- - name: Install dependencies (pnpm)
101
- run: pnpm install
102
- - name: Set NO_EXTEND_PROTOTYPES
103
- if: matrix.scenario == 'ember-default-no-prototype-extensions'
104
- run: echo "NO_EXTEND_PROTOTYPES==true" >> .GITHUB_ENV
105
- - name: Setup ember-try scenario
106
- run: pnpm ember try:one ${{ matrix.scenario }} --skip-cleanup --- cat package.json
107
- - name: Build
108
- run: pnpm ember build --environment test
109
- - name: Run test
110
- # Due to a bug in ember-cli, running `ember test` with `--path` doesn't set `EMBER_ENV=test`
111
- # See https://github.com/ember-cli/ember-cli/issues/8922
112
- run: EMBER_ENV=test pnpm ember test --path dist --filter="Ember Debug"
113
-
114
- build:
115
- name: Build extensions
116
- runs-on: ubuntu-latest
117
- env:
118
- CI: 'true'
119
- steps:
120
- - name: Checkout
121
- uses: actions/checkout@v3
122
- - name: setup pnpm & node
123
- uses: wyvox/action-setup-pnpm@v3
124
- - name: Install dependencies (pnpm)
125
- run: pnpm install
126
- - name: Download panes
127
- run: node scripts/download-panes.js
128
- env:
129
- EMBER_ENV: production
130
- - name: Update manifest.json (nightly)
131
- if: github.event_name == 'schedule'
132
- run: |
133
- DATE="$(date +"%Y.%-m.%-d")"
134
- SHA="${GITHUB_SHA:0:7}"
135
- VERSION="$(jq -r '.version' package.json)"
136
- CONTENT="$(cat "$FILE")"
137
-
138
- echo "$CONTENT" | jq --arg date "$DATE" --arg sha "$SHA" --arg version "$VERSION" "$FILTER" > $FILE
139
- cat "$FILE"
140
- env:
141
- FILE: skeletons/web-extension/manifest.json
142
- FILTER: >-
143
- .name += " (Nightly)" |
144
- .version = $date |
145
- .version_name = "\($version) (nightly build \($date) / \($sha))"
146
- - name: Update manifest.json (pull request)
147
- if: github.event_name == 'pull_request'
148
- run: |
149
- SHA="${SHA:0:7}"
150
- CONTENT="$(cat "$FILE")"
151
-
152
- echo "$CONTENT" | jq --arg pr "$PR" --arg sha "$SHA" "$FILTER" > $FILE
153
- cat "$FILE"
154
- env:
155
- FILE: skeletons/web-extension/manifest.json
156
- FILTER: >-
157
- .name += " (PR #\($pr))" |
158
- .version = $pr |
159
- .version_name = $sha
160
- PR: ${{ github.event.pull_request.number }}
161
- SHA: ${{ github.event.pull_request.head.sha }}
162
- - name: Update package.json (nightly)
163
- if: github.event_name == 'schedule'
164
- run: |
165
- DATE="$(date +"%Y.%-m.%-d")"
166
- SHA="${GITHUB_SHA:0:7}"
167
- CONTENT="$(cat "$FILE")"
168
-
169
- echo "$CONTENT" | jq --arg date "$DATE" --arg sha "$SHA" "$FILTER" > $FILE
170
- cat "$FILE"
171
- env:
172
- FILE: package.json
173
- FILTER: .version += "-alpha.\($date)+\($sha)"
174
- - name: Update package.json (pull request)
175
- if: github.event_name == 'pull_request'
176
- run: |
177
- SHA="${SHA:0:7}"
178
- CONTENT="$(cat "$FILE")"
179
-
180
- echo "$CONTENT" | jq --arg pr "$PR" --arg sha "$SHA" "$FILTER" > $FILE
181
- cat "$FILE"
182
- env:
183
- FILE: package.json
184
- FILTER: .version += "-alpha.0.\($pr)+\($sha)"
185
- PR: ${{ github.event.pull_request.number }}
186
- SHA: ${{ github.event.pull_request.head.sha }}
187
- - name: Set EMBER_INSPECTOR_TAB (nightly)
188
- if: github.event_name == 'schedule'
189
- run: echo "EMBER_INSPECTOR_TAB=Nightly" >> $GITHUB_ENV
190
- - name: Set EMBER_INSPECTOR_TAB (pull request)
191
- if: github.event_name == 'pull_request'
192
- run: echo "EMBER_INSPECTOR_TAB=PR \#$PR" >> $GITHUB_ENV
193
- env:
194
- PR: ${{ github.event.pull_request.number }}
195
- - name: Build
196
- run: pnpm ember build --environment production
197
- - name: Pack
198
- run: |
199
- VERSION="$(jq -r '.version' package.json)"
200
-
201
- pnpm pack
202
- mkdir -p dist/npm
203
- tar xvzf "ember-inspector-$VERSION.tgz" -C dist/npm --strip-components 1
204
- - name: Upload artifacts (bookmarklet)
205
- uses: actions/upload-artifact@v4
206
- with:
207
- name: bookmarklet
208
- path: dist/bookmarklet
209
- - name: Upload artifacts (Chrome)
210
- uses: actions/upload-artifact@v4
211
- with:
212
- name: chrome
213
- path: dist/chrome
214
- - name: Upload artifacts (Firefox)
215
- uses: actions/upload-artifact@v4
216
- with:
217
- name: firefox
218
- path: dist/firefox
219
- - name: Upload artifacts (npm)
220
- uses: actions/upload-artifact@v4
221
- with:
222
- name: npm
223
- path: dist/npm
224
-
225
- publish-bookmarklet:
226
- name: Publish bookmarklet
227
- needs:
228
- - test
229
- - ember-try
230
- - build
231
- if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
232
- runs-on: ubuntu-latest
233
- steps:
234
- - name: Download artifacts (bookmarklet)
235
- uses: actions/download-artifact@v4
236
- with:
237
- name: bookmarklet
238
- path: bookmarklet
239
- - name: Upload to S3
240
- uses: jakejarvis/s3-sync-action@v0.5.1
241
- with:
242
- args: --acl public-read --cache-control "max-age=86400000,public"
243
- env:
244
- AWS_S3_BUCKET: ember-extension
245
- AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
246
- AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
247
- SOURCE_DIR: bookmarklet
248
- DEST_DIR: dist_bookmarklet
249
-
250
- publish-chrome:
251
- name: Publish Chrome extension
252
- needs:
253
- - test
254
- - ember-try
255
- - build
256
- runs-on: ubuntu-latest
257
- steps:
258
- - name: Set up node
259
- uses: actions/setup-node@v4
260
- - name: Install dependencies (chrome-webstore-upload-cli)
261
- run: npm install -g chrome-webstore-upload-cli
262
- - name: Download artifacts (Chrome)
263
- uses: actions/download-artifact@v4
264
- with:
265
- name: chrome
266
- path: chrome
267
- - name: Set Environment Variables
268
- run: |
269
- if [[ "$GITHUB_EVENT_NAME" == "schedule" ]]; then
270
- echo "EXTENSION_ID=ibdbkmdgflhglikhjdbogjjflkialpfi" >> $GITHUB_ENV
271
- echo "CLIENT_ID=${{ secrets.GOOGLE_NIGHTLY_CLIENT_ID }}" >> $GITHUB_ENV
272
- echo "REFRESH_TOKEN=${{ secrets.GOOGLE_NIGHTLY_REFRESH_TOKEN }}" >> $GITHUB_ENV
273
- else
274
- echo "EXTENSION_ID=bmdblncegkenkacieihfhpjfppoconhi" >> $GITHUB_ENV
275
- echo "CLIENT_ID=${{ secrets.GOOGLE_NIGHTLY_CLIENT_ID }}" >> $GITHUB_ENV
276
- echo "REFRESH_TOKEN=${{ secrets.GOOGLE_NIGHTLY_REFRESH_TOKEN }}" >> $GITHUB_ENV
277
- fi
278
- - name: Upload to Chrome Web Store
279
- if: >-
280
- github.event_name == 'schedule' ||
281
- (github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v'))
282
- run: chrome-webstore-upload upload --source chrome --auto-publish
283
-
284
- publish-firefox:
285
- name: Publish Firefox extension
286
- needs:
287
- - test
288
- - ember-try
289
- - build
290
- runs-on: ubuntu-latest
291
- steps:
292
- - name: Set up nod
293
- uses: actions/setup-node@v4
294
- - name: Install dependencies (web-ext)
295
- run: |
296
- npm install -g web-ext
297
- # https://github.com/mozilla/web-ext/issues/804
298
- npm install -g web-ext-submit
299
- - name: Download artifacts (Firefox)
300
- uses: actions/download-artifact@v4
301
- with:
302
- name: firefox
303
- path: firefox
304
- - name: Upload to AMO
305
- if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
306
- working-directory: firefox
307
- run: web-ext-submit --channel=listed
308
- env:
309
- WEB_EXT_API_KEY: ${{ secrets.FIREFOX_API_KEY }}
310
- WEB_EXT_API_SECRET: ${{ secrets.FIREFOX_API_SECRET }}
311
-
312
- publish-npm:
313
- name: Publish npm package
314
- needs:
315
- - test
316
- - ember-try
317
- - build
318
- runs-on: ubuntu-latest
319
- steps:
320
- - name: Set up node
321
- uses: actions/setup-node@v4
322
- - name: Download artifacts (npm)
323
- uses: actions/download-artifact@v4
324
- with:
325
- name: npm
326
- path: npm
327
- - name: Publish to npm
328
- if: >-
329
- github.event_name == 'schedule' ||
330
- (github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v'))
331
- env:
332
- NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
333
- working-directory: npm
334
- run: |
335
- echo "//registry.npmjs.org/:_authToken=${NPM_AUTH_TOKEN}"> ~/.npmrc
336
- npm whoami
337
- if [[ "$GITHUB_EVENT_NAME" == "schedule" ]]; then
338
- npm publish --tag alpha
339
- fi
@@ -1,83 +0,0 @@
1
- name: Release Plan Review
2
- on:
3
- push:
4
- branches:
5
- - main
6
- - master
7
- pull_request:
8
- types:
9
- - labeled
10
-
11
- concurrency:
12
- group: plan-release # only the latest one of these should ever be running
13
- cancel-in-progress: true
14
-
15
- jobs:
16
- check-plan:
17
- name: "Check Release Plan"
18
- runs-on: ubuntu-latest
19
- outputs:
20
- command: ${{ steps.check-release.outputs.command }}
21
-
22
- steps:
23
- - uses: actions/checkout@v4
24
- with:
25
- fetch-depth: 0
26
- ref: 'main'
27
- # This will only cause the `check-plan` job to have a "command" of `release`
28
- # when the .release-plan.json file was changed on the last commit.
29
- - id: check-release
30
- run: if git diff --name-only HEAD HEAD~1 | grep -w -q ".release-plan.json"; then echo "command=release"; fi >> $GITHUB_OUTPUT
31
-
32
- prepare_release_notes:
33
- name: Prepare Release Notes
34
- runs-on: ubuntu-latest
35
- timeout-minutes: 5
36
- needs: check-plan
37
- outputs:
38
- explanation: ${{ steps.explanation.outputs.text }}
39
- # only run on push event if plan wasn't updated (don't create a release plan when we're releasing)
40
- # only run on labeled event if the PR has already been merged
41
- if: (github.event_name == 'push' && needs.check-plan.outputs.command != 'release') || (github.event_name == 'pull_request' && github.event.pull_request.merged == true)
42
-
43
- steps:
44
- - uses: actions/checkout@v4
45
- # We need to download lots of history so that
46
- # lerna-changelog can discover what's changed since the last release
47
- with:
48
- fetch-depth: 0
49
- - uses: actions/setup-node@v4
50
- with:
51
- node-version: 18
52
-
53
- - uses: pnpm/action-setup@v2
54
- with:
55
- version: 8
56
- - run: pnpm install --frozen-lockfile
57
-
58
- - name: "Generate Explanation and Prep Changelogs"
59
- id: explanation
60
- run: |
61
- set -x
62
-
63
- pnpm release-plan prepare --singlePackage=ember-inspector
64
-
65
- echo 'text<<EOF' >> $GITHUB_OUTPUT
66
- jq .description .release-plan.json -r >> $GITHUB_OUTPUT
67
- echo 'EOF' >> $GITHUB_OUTPUT
68
- env:
69
- GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }}
70
-
71
- - uses: peter-evans/create-pull-request@v5
72
- with:
73
- commit-message: "Prepare Release using 'release-plan'"
74
- author: "github-actions[bot] <github-actions-bot@users.noreply.github.com>"
75
- labels: "internal"
76
- branch: release-preview
77
- title: Prepare Release
78
- body: |
79
- This PR is a preview of the release that [release-plan](https://github.com/embroider-build/release-plan) has prepared. To release you should just merge this PR 👍
80
-
81
- -----------------------------------------
82
-
83
- ${{ steps.explanation.outputs.text }}