ember-inspector 4.13.1 → 4.15.0
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.
- package/.ember-cli +1 -9
- package/.github/workflows/build.yml +33 -112
- package/.github/workflows/plan-release.yml +26 -48
- package/.github/workflows/publish.yml +129 -31
- package/.prettierignore +2 -13
- package/.prettierrc.js +10 -4
- package/.release-plan.json +13 -4
- package/.stylelintignore +8 -0
- package/.stylelintrc.js +10 -1
- package/.template-lintrc.js +2 -1
- package/.tool-versions +2 -2
- package/.watchmanconfig +1 -1
- package/CHANGELOG.md +137 -0
- package/DEVELOPMENT.md +50 -0
- package/PRIVACY.md +3 -0
- package/README.md +14 -50
- package/RELEASE.md +15 -50
- package/app/components/app-picker.hbs +2 -2
- package/app/components/component-tree-item.hbs +14 -14
- package/app/components/component-tree-toolbar.hbs +17 -3
- package/app/components/{date-property-field.js → date-property-field.ts} +6 -5
- package/app/components/deprecation-item-source.hbs +1 -1
- package/app/components/deprecation-item.hbs +1 -1
- package/app/components/deprecations-toolbar.hbs +1 -1
- package/app/components/item-types.hbs +7 -7
- package/app/components/list-cell.hbs +3 -3
- package/app/components/list-content.hbs +4 -3
- package/app/components/list-content.ts +96 -0
- package/app/components/list.hbs +3 -3
- package/app/components/list.js +7 -7
- package/app/components/model-types-toolbar.hbs +3 -3
- package/app/components/object-inspector/component-parents.hbs +33 -0
- package/app/components/object-inspector/component-parents.js +43 -0
- package/app/components/object-inspector/dependent-keys.hbs +4 -4
- package/app/components/object-inspector/errors.hbs +4 -4
- package/app/components/object-inspector/properties-all.hbs +1 -1
- package/app/components/object-inspector/properties-base.js +2 -0
- package/app/components/object-inspector/properties-grouped.hbs +5 -5
- package/app/components/object-inspector/property.hbs +36 -34
- package/app/components/object-inspector/property.ts +34 -17
- package/app/components/object-inspector/sort-properties.js +12 -4
- package/app/components/object-inspector/toggle.hbs +9 -0
- package/app/components/object-inspector/toggle.js +6 -0
- package/app/components/object-inspector.hbs +11 -9
- package/app/components/object-inspector.js +1 -1
- package/app/components/promise-item.hbs +11 -11
- package/app/components/promise-item.js +8 -6
- package/app/components/promise-tree-toolbar.hbs +5 -5
- package/app/components/records-toolbar.hbs +2 -2
- package/app/components/render-item.hbs +4 -4
- package/app/components/render-item.ts +12 -9
- package/app/components/render-tree-toolbar.hbs +1 -1
- package/app/components/route-cell-name.hbs +1 -1
- package/app/components/route-cell-name.js +3 -2
- package/app/components/route-tree-toolbar.hbs +2 -2
- package/app/components/scroll-container.js +2 -0
- package/app/components/side-nav.hbs +5 -5
- package/app/components/side-nav.js +1 -1
- package/{lib/ui/addon/components → app/components/ui}/drag-handle.hbs +4 -4
- package/{lib/ui/addon/components → app/components/ui}/drag-handle.js +3 -1
- package/{lib/ui/addon/components → app/components/ui}/empty-message.hbs +1 -1
- package/{lib/ui/addon/components → app/components/ui}/error-page.hbs +3 -3
- package/{lib/ui/addon/components → app/components/ui}/resizable-column.js +1 -1
- package/{lib/ui/addon/components → app/components/ui}/toolbar-clear-button.hbs +1 -1
- package/{lib/ui/addon/components → app/components/ui}/toolbar-reload-button.hbs +1 -1
- package/{lib/ui/addon/components → app/components/ui}/toolbar-search-field.hbs +2 -2
- package/app/computed/{debounce.js → debounce.ts} +7 -5
- package/app/config/environment.d.ts +5 -2
- package/app/controllers/app-config.js +1 -0
- package/app/controllers/application.js +36 -71
- package/app/controllers/component-tree.js +26 -7
- package/app/controllers/container-type.js +2 -1
- package/app/controllers/container-types/{index.js → index.ts} +5 -2
- package/app/controllers/container-types.js +3 -6
- package/app/controllers/deprecations.js +16 -11
- package/app/controllers/libraries.js +1 -0
- package/app/controllers/model-types.js +7 -13
- package/app/controllers/promise-tree.ts +149 -0
- package/app/controllers/records.js +18 -26
- package/app/controllers/{render-tree.js → render-tree.ts} +54 -45
- package/app/controllers/route-tree.js +7 -5
- package/app/helpers/build-style.js +1 -1
- package/app/index.html +1 -19
- package/app/initializers/setup.js +1 -1
- package/app/libs/promise-assembler.ts +249 -0
- package/app/libs/resizable-columns.js +10 -10
- package/app/models/{promise.js → promise.ts} +72 -69
- package/app/{router.js → router.ts} +1 -1
- package/app/routes/app-detected.js +3 -5
- package/app/routes/application.js +9 -13
- package/app/routes/deprecations.js +7 -16
- package/app/routes/launch.js +2 -1
- package/app/routes/libraries.js +2 -1
- package/app/routes/model-type.js +2 -3
- package/app/routes/model-types.ts +57 -0
- package/app/routes/promise-tree.ts +63 -0
- package/app/routes/records.ts +78 -0
- package/app/routes/render-tree.ts +93 -0
- package/app/routes/route-tree.js +0 -1
- package/app/routes/{tab.js → tab.ts} +9 -2
- package/app/routes/whats-new.js +6 -4
- package/app/services/adapters/{basic.js → basic.ts} +36 -30
- package/app/services/adapters/{bookmarklet.js → bookmarklet.ts} +17 -24
- package/app/services/adapters/{chrome.js → chrome.ts} +1 -2
- package/app/services/adapters/{web-extension.js → web-extension.ts} +46 -46
- package/app/services/adapters/websocket.ts +40 -0
- package/app/services/layout.ts +124 -0
- package/app/services/port.ts +195 -0
- package/app/services/storage/{local.js → local.ts} +7 -20
- package/app/services/storage/{memory.js → memory.ts} +6 -21
- package/app/services/{storage.js → storage.ts} +25 -23
- package/app/styles/app.scss +1 -0
- package/app/styles/base.scss +6 -2
- package/app/styles/colors.scss +33 -31
- package/app/styles/component_tree.scss +56 -51
- package/app/styles/dropdown.scss +2 -2
- package/app/styles/ember-table.scss +3 -3
- package/app/styles/mixin.scss +26 -26
- package/app/styles/object_inspector.scss +30 -21
- package/{lib/ui/addon/styles → app/styles/ui}/_disclosure-triangle.scss +3 -1
- package/{lib/ui/addon/styles → app/styles/ui}/_drag-handle.scss +7 -7
- package/{lib/ui/addon/styles → app/styles/ui}/_empty-message.scss +1 -1
- package/{lib/ui/addon/styles → app/styles/ui}/_error-page.scss +8 -7
- package/{lib/ui/addon/styles → app/styles/ui}/_list.scss +46 -45
- package/{lib/ui/addon/styles → app/styles/ui}/_nav.scss +29 -27
- package/app/styles/ui/_object-inspector-toggle.scss +4 -0
- package/{lib/ui/addon/styles → app/styles/ui}/_pill.scss +4 -4
- package/{lib/ui/addon/styles → app/styles/ui}/_send-to-console.scss +1 -1
- package/{lib/ui/addon/styles → app/styles/ui}/_split.scss +26 -20
- package/app/styles/ui/_ui.scss +13 -0
- package/{lib/ui/addon/styles → app/styles/ui}/toolbar/_checkbox.scss +5 -5
- package/app/styles/ui/toolbar/_icon-button.scss +80 -0
- package/{lib/ui/addon/styles → app/styles/ui}/toolbar/_index.scss +6 -5
- package/{lib/ui/addon/styles → app/styles/ui}/toolbar/_radio.scss +10 -10
- package/{lib/ui/addon/styles → app/styles/ui}/toolbar/_search.scss +5 -3
- package/app/styles/utils.scss +408 -122
- package/app/templates/application.hbs +22 -19
- package/app/templates/component-tree.hbs +4 -1
- package/app/templates/deprecations.hbs +2 -3
- package/app/templates/info.hbs +10 -10
- package/app/templates/promise-tree.hbs +1 -1
- package/app/templates/render-tree.hbs +1 -1
- package/app/templates/route-tree.hbs +1 -1
- package/app/utils/escape-reg-exp.ts +3 -2
- package/app/utils/nullish.ts +7 -0
- package/app/utils/parse-text.ts +4 -5
- package/app/utils/truncate.js +0 -1
- package/config/ember-cli-update.json +5 -3
- package/config/ember-try.js +117 -72
- package/config/environment.js +1 -1
- package/config/optional-features.json +2 -1
- package/dist/bookmarklet/load_inspector.js +31 -11
- package/dist/bookmarklet/panes-3-16-0/assets/chunk.443.86a005e528b587663b78.js +1135 -0
- package/dist/bookmarklet/panes-3-16-0/assets/chunk.443.86a005e528b587663b78.js.LICENSE.txt +18 -0
- package/dist/bookmarklet/panes-3-16-0/assets/chunk.524.aca67dc376e8cd35b522.js +40 -0
- package/dist/bookmarklet/panes-3-16-0/assets/chunk.582.d3d80e94c4f59dc3b65d.js +42 -0
- package/dist/bookmarklet/panes-3-16-0/assets/ember-inspector.css +997 -156
- package/dist/bookmarklet/panes-3-16-0/assets/ember-inspector.js +560 -613
- package/dist/bookmarklet/panes-3-16-0/assets/svg/ellipsis.svg +3 -3
- package/dist/bookmarklet/panes-3-16-0/assets/svg/focus-point-round.svg +9 -0
- package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-bug.svg +1 -1
- package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-components.svg +2 -2
- package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-container.svg +1 -1
- package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-data.svg +1 -1
- package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-deprecations.svg +3 -3
- package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-info.svg +3 -3
- package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-promises.svg +2 -2
- package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-render-performance.svg +2 -2
- package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-route-tree.svg +7 -7
- package/dist/bookmarklet/panes-3-16-0/assets/svg/sidebar-toggle-trailing.svg +9 -0
- package/dist/bookmarklet/panes-3-16-0/assets/vendor.css +4 -841
- package/dist/bookmarklet/panes-3-16-0/assets/vendor.js +4277 -5152
- package/dist/bookmarklet/panes-3-16-0/base-object-HAEdWjmg.js +59 -0
- package/dist/bookmarklet/panes-3-16-0/basic-B1dkgN3d.js +149 -0
- package/dist/bookmarklet/panes-3-16-0/basic-debug.js +10 -0
- package/dist/bookmarklet/panes-3-16-0/bookmarklet-BZWtwuX-.js +32 -0
- package/dist/bookmarklet/panes-3-16-0/bookmarklet-debug.js +10 -0
- package/dist/bookmarklet/panes-3-16-0/chrome-P6FSEUf1.js +10 -0
- package/dist/bookmarklet/panes-3-16-0/chrome-debug.js +10 -0
- package/dist/bookmarklet/panes-3-16-0/ember.js +166 -0
- package/dist/bookmarklet/panes-3-16-0/ember_debug.js +7 -11018
- package/dist/bookmarklet/panes-3-16-0/evented-BCTya3yE.js +62 -0
- package/dist/bookmarklet/panes-3-16-0/firefox-8F84zphP.js +30 -0
- package/dist/bookmarklet/panes-3-16-0/firefox-debug.js +10 -0
- package/dist/bookmarklet/panes-3-16-0/index.html +4 -23
- package/dist/bookmarklet/panes-3-16-0/internals-CRmXMEzb.js +12 -0
- package/dist/bookmarklet/panes-3-16-0/load-ember-debug-in-webpage-DCWcJhQm.js +29 -0
- package/dist/bookmarklet/panes-3-16-0/main.js +7669 -0
- package/dist/bookmarklet/panes-3-16-0/port.js +108 -0
- package/dist/bookmarklet/panes-3-16-0/profile-node.js +60 -0
- package/dist/bookmarklet/panes-3-16-0/promise-assembler.js +218 -0
- package/dist/bookmarklet/panes-3-16-0/runloop-6_0lpzTA.js +1138 -0
- package/dist/bookmarklet/panes-3-16-0/start-inspector-BIYQArZn.js +334 -0
- package/dist/bookmarklet/panes-3-16-0/type-check.js +119 -0
- package/dist/bookmarklet/panes-3-16-0/version.js +90 -0
- package/dist/bookmarklet/panes-3-16-0/versions.js +4 -0
- package/dist/bookmarklet/panes-3-16-0/web-extension-OWnXJ_XK.js +144 -0
- package/dist/bookmarklet/panes-3-16-0/websocket-BSUvUqER.js +58 -0
- package/dist/bookmarklet/panes-3-16-0/websocket-debug.js +10 -0
- package/dist/chrome/background.js +26 -21
- package/dist/chrome/boot.js +1 -1
- package/dist/chrome/content-script.js +12 -11
- package/dist/chrome/devtools.js +12 -3
- package/dist/chrome/manifest.json +4 -2
- package/dist/chrome/options.js +17 -12
- package/dist/chrome/panes-3-16-0/assets/chunk.443.86a005e528b587663b78.js +1135 -0
- package/dist/chrome/panes-3-16-0/assets/chunk.443.86a005e528b587663b78.js.LICENSE.txt +18 -0
- package/dist/chrome/panes-3-16-0/assets/chunk.524.aca67dc376e8cd35b522.js +40 -0
- package/dist/chrome/panes-3-16-0/assets/chunk.582.d3d80e94c4f59dc3b65d.js +42 -0
- package/dist/chrome/panes-3-16-0/assets/ember-inspector.css +997 -156
- package/dist/chrome/panes-3-16-0/assets/ember-inspector.js +560 -613
- package/dist/chrome/panes-3-16-0/assets/svg/ellipsis.svg +3 -3
- package/dist/chrome/panes-3-16-0/assets/svg/focus-point-round.svg +9 -0
- package/dist/chrome/panes-3-16-0/assets/svg/nav-bug.svg +1 -1
- package/dist/chrome/panes-3-16-0/assets/svg/nav-components.svg +2 -2
- package/dist/chrome/panes-3-16-0/assets/svg/nav-container.svg +1 -1
- package/dist/chrome/panes-3-16-0/assets/svg/nav-data.svg +1 -1
- package/dist/chrome/panes-3-16-0/assets/svg/nav-deprecations.svg +3 -3
- package/dist/chrome/panes-3-16-0/assets/svg/nav-info.svg +3 -3
- package/dist/chrome/panes-3-16-0/assets/svg/nav-promises.svg +2 -2
- package/dist/chrome/panes-3-16-0/assets/svg/nav-render-performance.svg +2 -2
- package/dist/chrome/panes-3-16-0/assets/svg/nav-route-tree.svg +7 -7
- package/dist/chrome/panes-3-16-0/assets/svg/sidebar-toggle-trailing.svg +9 -0
- package/dist/chrome/panes-3-16-0/assets/vendor.css +4 -841
- package/dist/chrome/panes-3-16-0/assets/vendor.js +4277 -5152
- package/dist/chrome/panes-3-16-0/base-object-HAEdWjmg.js +59 -0
- package/dist/chrome/panes-3-16-0/basic-B1dkgN3d.js +149 -0
- package/dist/chrome/panes-3-16-0/basic-debug.js +10 -0
- package/dist/chrome/panes-3-16-0/bookmarklet-BZWtwuX-.js +32 -0
- package/dist/chrome/panes-3-16-0/bookmarklet-debug.js +10 -0
- package/dist/chrome/panes-3-16-0/chrome-P6FSEUf1.js +10 -0
- package/dist/chrome/panes-3-16-0/chrome-debug.js +10 -0
- package/dist/chrome/panes-3-16-0/ember.js +166 -0
- package/dist/chrome/panes-3-16-0/ember_debug.js +7 -11018
- package/dist/chrome/panes-3-16-0/evented-BCTya3yE.js +62 -0
- package/dist/chrome/panes-3-16-0/firefox-8F84zphP.js +30 -0
- package/dist/chrome/panes-3-16-0/firefox-debug.js +10 -0
- package/dist/chrome/panes-3-16-0/index.html +4 -23
- package/dist/chrome/panes-3-16-0/internals-CRmXMEzb.js +12 -0
- package/dist/chrome/panes-3-16-0/load-ember-debug-in-webpage-DCWcJhQm.js +29 -0
- package/dist/chrome/panes-3-16-0/main.js +7669 -0
- package/dist/chrome/panes-3-16-0/port.js +108 -0
- package/dist/chrome/panes-3-16-0/profile-node.js +60 -0
- package/dist/chrome/panes-3-16-0/promise-assembler.js +218 -0
- package/dist/chrome/panes-3-16-0/runloop-6_0lpzTA.js +1138 -0
- package/dist/chrome/panes-3-16-0/start-inspector-BIYQArZn.js +334 -0
- package/dist/chrome/panes-3-16-0/type-check.js +119 -0
- package/dist/chrome/panes-3-16-0/version.js +90 -0
- package/dist/chrome/panes-3-16-0/versions.js +4 -0
- package/dist/chrome/panes-3-16-0/web-extension-OWnXJ_XK.js +144 -0
- package/dist/chrome/panes-3-16-0/websocket-BSUvUqER.js +58 -0
- package/dist/chrome/panes-3-16-0/websocket-debug.js +10 -0
- package/dist/chrome/scripts/in-page-script.js +19 -13
- package/dist/firefox/background.js +26 -21
- package/dist/firefox/boot.js +1 -1
- package/dist/firefox/content-script.js +12 -11
- package/dist/firefox/devtools.js +12 -3
- package/dist/firefox/manifest.json +4 -2
- package/dist/firefox/options.js +17 -12
- package/dist/firefox/panes-3-16-0/assets/chunk.443.86a005e528b587663b78.js +1135 -0
- package/dist/firefox/panes-3-16-0/assets/chunk.443.86a005e528b587663b78.js.LICENSE.txt +18 -0
- package/dist/firefox/panes-3-16-0/assets/chunk.524.aca67dc376e8cd35b522.js +40 -0
- package/dist/firefox/panes-3-16-0/assets/chunk.582.d3d80e94c4f59dc3b65d.js +42 -0
- package/dist/firefox/panes-3-16-0/assets/ember-inspector.css +997 -156
- package/dist/firefox/panes-3-16-0/assets/ember-inspector.js +560 -613
- package/dist/firefox/panes-3-16-0/assets/svg/ellipsis.svg +3 -3
- package/dist/firefox/panes-3-16-0/assets/svg/focus-point-round.svg +9 -0
- package/dist/firefox/panes-3-16-0/assets/svg/nav-bug.svg +1 -1
- package/dist/firefox/panes-3-16-0/assets/svg/nav-components.svg +2 -2
- package/dist/firefox/panes-3-16-0/assets/svg/nav-container.svg +1 -1
- package/dist/firefox/panes-3-16-0/assets/svg/nav-data.svg +1 -1
- package/dist/firefox/panes-3-16-0/assets/svg/nav-deprecations.svg +3 -3
- package/dist/firefox/panes-3-16-0/assets/svg/nav-info.svg +3 -3
- package/dist/firefox/panes-3-16-0/assets/svg/nav-promises.svg +2 -2
- package/dist/firefox/panes-3-16-0/assets/svg/nav-render-performance.svg +2 -2
- package/dist/firefox/panes-3-16-0/assets/svg/nav-route-tree.svg +7 -7
- package/dist/firefox/panes-3-16-0/assets/svg/sidebar-toggle-trailing.svg +9 -0
- package/dist/firefox/panes-3-16-0/assets/vendor.css +4 -841
- package/dist/firefox/panes-3-16-0/assets/vendor.js +4277 -5152
- package/dist/firefox/panes-3-16-0/base-object-HAEdWjmg.js +59 -0
- package/dist/firefox/panes-3-16-0/basic-B1dkgN3d.js +149 -0
- package/dist/firefox/panes-3-16-0/basic-debug.js +10 -0
- package/dist/firefox/panes-3-16-0/bookmarklet-BZWtwuX-.js +32 -0
- package/dist/firefox/panes-3-16-0/bookmarklet-debug.js +10 -0
- package/dist/firefox/panes-3-16-0/chrome-P6FSEUf1.js +10 -0
- package/dist/firefox/panes-3-16-0/chrome-debug.js +10 -0
- package/dist/firefox/panes-3-16-0/ember.js +166 -0
- package/dist/firefox/panes-3-16-0/ember_debug.js +7 -11018
- package/dist/firefox/panes-3-16-0/evented-BCTya3yE.js +62 -0
- package/dist/firefox/panes-3-16-0/firefox-8F84zphP.js +30 -0
- package/dist/firefox/panes-3-16-0/firefox-debug.js +10 -0
- package/dist/firefox/panes-3-16-0/index.html +4 -23
- package/dist/firefox/panes-3-16-0/internals-CRmXMEzb.js +12 -0
- package/dist/firefox/panes-3-16-0/load-ember-debug-in-webpage-DCWcJhQm.js +29 -0
- package/dist/firefox/panes-3-16-0/main.js +7669 -0
- package/dist/firefox/panes-3-16-0/port.js +108 -0
- package/dist/firefox/panes-3-16-0/profile-node.js +60 -0
- package/dist/firefox/panes-3-16-0/promise-assembler.js +218 -0
- package/dist/firefox/panes-3-16-0/runloop-6_0lpzTA.js +1138 -0
- package/dist/firefox/panes-3-16-0/start-inspector-BIYQArZn.js +334 -0
- package/dist/firefox/panes-3-16-0/type-check.js +119 -0
- package/dist/firefox/panes-3-16-0/version.js +90 -0
- package/dist/firefox/panes-3-16-0/versions.js +4 -0
- package/dist/firefox/panes-3-16-0/web-extension-OWnXJ_XK.js +144 -0
- package/dist/firefox/panes-3-16-0/websocket-BSUvUqER.js +58 -0
- package/dist/firefox/panes-3-16-0/websocket-debug.js +10 -0
- package/dist/firefox/scripts/in-page-script.js +19 -13
- package/dist/websocket/assets/chunk.443.86a005e528b587663b78.js +1135 -0
- package/dist/websocket/assets/chunk.443.86a005e528b587663b78.js.LICENSE.txt +18 -0
- package/dist/websocket/assets/chunk.524.aca67dc376e8cd35b522.js +40 -0
- package/dist/websocket/assets/chunk.582.d3d80e94c4f59dc3b65d.js +42 -0
- package/dist/websocket/assets/ember-inspector.css +997 -156
- package/dist/websocket/assets/ember-inspector.js +560 -613
- package/dist/websocket/assets/svg/ellipsis.svg +3 -3
- package/dist/websocket/assets/svg/focus-point-round.svg +9 -0
- package/dist/websocket/assets/svg/nav-bug.svg +1 -1
- package/dist/websocket/assets/svg/nav-components.svg +2 -2
- package/dist/websocket/assets/svg/nav-container.svg +1 -1
- package/dist/websocket/assets/svg/nav-data.svg +1 -1
- package/dist/websocket/assets/svg/nav-deprecations.svg +3 -3
- package/dist/websocket/assets/svg/nav-info.svg +3 -3
- package/dist/websocket/assets/svg/nav-promises.svg +2 -2
- package/dist/websocket/assets/svg/nav-render-performance.svg +2 -2
- package/dist/websocket/assets/svg/nav-route-tree.svg +7 -7
- package/dist/websocket/assets/svg/sidebar-toggle-trailing.svg +9 -0
- package/dist/websocket/assets/vendor.css +4 -841
- package/dist/websocket/assets/vendor.js +4277 -5152
- package/dist/websocket/base-object-HAEdWjmg.js +59 -0
- package/dist/websocket/basic-B1dkgN3d.js +149 -0
- package/dist/websocket/basic-debug.js +10 -0
- package/dist/websocket/bookmarklet-BZWtwuX-.js +32 -0
- package/dist/websocket/bookmarklet-debug.js +10 -0
- package/dist/websocket/chrome-P6FSEUf1.js +10 -0
- package/dist/websocket/chrome-debug.js +10 -0
- package/dist/websocket/ember.js +166 -0
- package/dist/websocket/ember_debug.js +7 -11018
- package/dist/websocket/evented-BCTya3yE.js +62 -0
- package/dist/websocket/firefox-8F84zphP.js +30 -0
- package/dist/websocket/firefox-debug.js +10 -0
- package/dist/websocket/index.html +4 -23
- package/dist/websocket/internals-CRmXMEzb.js +12 -0
- package/dist/websocket/load-ember-debug-in-webpage-DCWcJhQm.js +29 -0
- package/dist/websocket/main.js +7669 -0
- package/dist/websocket/port.js +108 -0
- package/dist/websocket/profile-node.js +60 -0
- package/dist/websocket/promise-assembler.js +218 -0
- package/dist/websocket/runloop-6_0lpzTA.js +1138 -0
- package/dist/websocket/start-inspector-BIYQArZn.js +334 -0
- package/dist/websocket/type-check.js +119 -0
- package/dist/websocket/version.js +90 -0
- package/dist/websocket/versions.js +4 -0
- package/dist/websocket/web-extension-OWnXJ_XK.js +144 -0
- package/dist/websocket/websocket-BSUvUqER.js +58 -0
- package/dist/websocket/websocket-debug.js +10 -0
- package/ember-cli-build.js +31 -140
- package/ember_debug/adapters/basic.js +10 -29
- package/ember_debug/adapters/bookmarklet.js +1 -0
- package/ember_debug/adapters/firefox.js +3 -3
- package/ember_debug/adapters/web-extension.js +6 -5
- package/ember_debug/adapters/websocket.js +2 -2
- package/ember_debug/babel.config.cjs +11 -0
- package/ember_debug/container-debug.js +1 -1
- package/ember_debug/data-debug.js +7 -8
- package/ember_debug/debug-port.js +1 -1
- package/ember_debug/deprecation-debug.js +14 -14
- package/ember_debug/entrypoints/basic-debug.js +10 -0
- package/ember_debug/entrypoints/bookmarklet-debug.js +10 -0
- package/ember_debug/entrypoints/chrome-debug.js +10 -0
- package/ember_debug/entrypoints/firefox-debug.js +10 -0
- package/ember_debug/entrypoints/websocket-debug.js +10 -0
- package/ember_debug/general-debug.js +4 -4
- package/ember_debug/lib/boot-ember-inspector.js +9 -0
- package/ember_debug/lib/get-applications.js +28 -0
- package/ember_debug/lib/load-ember-debug-in-webpage.js +32 -0
- package/ember_debug/lib/send-apps.js +14 -0
- package/ember_debug/lib/send-version-miss.js +38 -0
- package/ember_debug/lib/setup-instance-initializer.js +17 -0
- package/ember_debug/lib/start-inspector.js +195 -0
- package/ember_debug/lib/version-test.js +73 -0
- package/ember_debug/lib/versions.js +3 -0
- package/ember_debug/libs/capture-render-tree.js +1 -2
- package/ember_debug/libs/promise-assembler.js +5 -4
- package/ember_debug/libs/render-tree.js +37 -44
- package/ember_debug/libs/source-map.js +7 -6
- package/ember_debug/libs/view-inspection.js +25 -17
- package/ember_debug/main.js +18 -21
- package/ember_debug/models/profile-manager.js +6 -6
- package/ember_debug/models/profile-node.js +1 -1
- package/ember_debug/models/promise.js +2 -2
- package/ember_debug/object-inspector.js +74 -65
- package/ember_debug/package.json +27 -0
- package/ember_debug/port.js +5 -4
- package/ember_debug/promise-debug.js +5 -5
- package/ember_debug/render-debug.js +5 -5
- package/ember_debug/rollup.config.js +24 -0
- package/ember_debug/route-debug.js +10 -9
- package/ember_debug/services/session.js +2 -2
- package/ember_debug/utils/classify.js +1 -1
- package/ember_debug/utils/ember/object/internals.js +1 -11
- package/ember_debug/utils/ember/own-runloop.js +1 -1
- package/ember_debug/utils/ember/runloop.js +7 -10
- package/ember_debug/utils/ember-object-names.js +11 -9
- package/ember_debug/utils/ember.js +222 -40
- package/ember_debug/utils/evented.js +1 -1
- package/ember_debug/utils/get-object-name.js +3 -3
- package/ember_debug/utils/type-check.js +9 -5
- package/ember_debug/view-debug.js +12 -6
- package/eslint.config.mjs +173 -0
- package/gulpfile.js +1 -1
- package/package.json +97 -95
- package/patches/ember-cli-inject-live-reload.patch +16 -0
- package/pnpm-workspace.yaml +3 -0
- package/public/assets/svg/ellipsis.svg +3 -3
- package/public/assets/svg/focus-point-round.svg +9 -0
- package/public/assets/svg/nav-bug.svg +1 -1
- package/public/assets/svg/nav-components.svg +2 -2
- package/public/assets/svg/nav-container.svg +1 -1
- package/public/assets/svg/nav-data.svg +1 -1
- package/public/assets/svg/nav-deprecations.svg +3 -3
- package/public/assets/svg/nav-info.svg +3 -3
- package/public/assets/svg/nav-promises.svg +2 -2
- package/public/assets/svg/nav-render-performance.svg +2 -2
- package/public/assets/svg/nav-route-tree.svg +7 -7
- package/public/assets/svg/sidebar-toggle-trailing.svg +9 -0
- package/scripts/download-panes.js +1 -1
- package/skeletons/bookmarklet/load_inspector.js +31 -11
- package/skeletons/web-extension/background.js +26 -21
- package/skeletons/web-extension/boot.js +1 -1
- package/skeletons/web-extension/content-script.js +12 -11
- package/skeletons/web-extension/devtools.js +12 -3
- package/skeletons/web-extension/manifest.json +3 -1
- package/skeletons/web-extension/options.js +17 -12
- package/skeletons/web-extension/scripts/in-page-script.js +19 -13
- package/testem.js +0 -1
- package/tests/acceptance/app-picker-test.js +4 -4
- package/tests/acceptance/component-tree-test.js +96 -57
- package/tests/acceptance/container-test.js +0 -2
- package/tests/acceptance/data-test.js +14 -11
- package/tests/acceptance/deprecation-test.js +8 -12
- package/tests/acceptance/info-test.js +2 -2
- package/tests/acceptance/object-inspector-test.js +62 -110
- package/tests/acceptance/promise-test.js +1 -11
- package/tests/acceptance/render-tree-test.js +2 -2
- package/tests/acceptance/route-tree-test.js +12 -14
- package/tests/acceptance/whats-new-test.js +11 -11
- package/tests/ember_debug/container-debug-test.js +5 -14
- package/tests/ember_debug/deprecation-debug-test.js +15 -6
- package/tests/ember_debug/ember-data-test.js +7 -1
- package/tests/ember_debug/ember-debug-test.js +13 -13
- package/tests/ember_debug/object-inspector-test.js +115 -50
- package/tests/ember_debug/profile-manager-test.js +153 -170
- package/tests/ember_debug/profile-node-test.js +9 -5
- package/tests/ember_debug/promise-assembler-test.js +18 -10
- package/tests/ember_debug/promise-debug-test.js +19 -15
- package/tests/ember_debug/render-debug-test.js +8 -1
- package/tests/ember_debug/route-debug-test.js +14 -8
- package/tests/ember_debug/view-debug-test.js +267 -183
- package/tests/helpers/{index.js → index.ts} +6 -5
- package/tests/helpers/setup-ember-debug-test.js +22 -2
- package/tests/index.html +1 -2
- package/tests/integration/injection-test.js +37 -81
- package/tests/test-adapter.js +15 -15
- package/tests/test-helper.js +6 -4
- package/tests/unit/check-current-route-test.js +0 -4
- package/tests/unit/resizable-columns-test.js +53 -51
- package/tests/unit/utils/parse-text-test.js +3 -3
- package/tests/unit/utils/search-match-test.js +5 -5
- package/tests/unit/utils/type-check-test.js +27 -0
- package/tsconfig.json +3 -1
- package/types/ember-inspector/index.d.ts +2 -1
- package/types/global.d.ts +1 -7
- package/.eslintignore +0 -33
- package/.eslintrc.js +0 -86
- package/app/components/list-content.js +0 -130
- package/app/controllers/promise-tree.js +0 -130
- package/app/libs/promise-assembler.js +0 -169
- package/app/routes/model-types.js +0 -47
- package/app/routes/promise-tree.js +0 -48
- package/app/routes/records.js +0 -55
- package/app/routes/render-tree.js +0 -66
- package/app/services/adapters/websocket.js +0 -31
- package/app/services/layout.js +0 -39
- package/app/services/port.js +0 -90
- package/dist/bookmarklet/panes-3-16-0/assets/chunk.143.76a242242ec46a377266.js +0 -28
- package/dist/bookmarklet/panes-3-16-0/assets/chunk.178.b6064b368cf24cc346ec.js +0 -9
- package/dist/bookmarklet/panes-3-16-0/assets/chunk.359.0be5d21f60d2b5d6d423.js +0 -2620
- package/dist/bookmarklet/panes-3-16-0/assets/chunk.359.0be5d21f60d2b5d6d423.js.LICENSE.txt +0 -67
- package/dist/bookmarklet/panes-3-16-0/assets/fonts/Inter-Bold.woff +0 -0
- package/dist/bookmarklet/panes-3-16-0/assets/fonts/Inter-Bold.woff2 +0 -0
- package/dist/bookmarklet/panes-3-16-0/assets/fonts/Inter-Regular.woff +0 -0
- package/dist/bookmarklet/panes-3-16-0/assets/fonts/Inter-Regular.woff2 +0 -0
- package/dist/chrome/panes-3-16-0/assets/chunk.143.76a242242ec46a377266.js +0 -28
- package/dist/chrome/panes-3-16-0/assets/chunk.178.b6064b368cf24cc346ec.js +0 -9
- package/dist/chrome/panes-3-16-0/assets/chunk.359.0be5d21f60d2b5d6d423.js +0 -2620
- package/dist/chrome/panes-3-16-0/assets/chunk.359.0be5d21f60d2b5d6d423.js.LICENSE.txt +0 -67
- package/dist/chrome/panes-3-16-0/assets/fonts/Inter-Bold.woff +0 -0
- package/dist/chrome/panes-3-16-0/assets/fonts/Inter-Bold.woff2 +0 -0
- package/dist/chrome/panes-3-16-0/assets/fonts/Inter-Regular.woff +0 -0
- package/dist/chrome/panes-3-16-0/assets/fonts/Inter-Regular.woff2 +0 -0
- package/dist/firefox/panes-3-16-0/assets/chunk.143.76a242242ec46a377266.js +0 -28
- package/dist/firefox/panes-3-16-0/assets/chunk.178.b6064b368cf24cc346ec.js +0 -9
- package/dist/firefox/panes-3-16-0/assets/chunk.359.0be5d21f60d2b5d6d423.js +0 -2620
- package/dist/firefox/panes-3-16-0/assets/chunk.359.0be5d21f60d2b5d6d423.js.LICENSE.txt +0 -67
- package/dist/firefox/panes-3-16-0/assets/fonts/Inter-Bold.woff +0 -0
- package/dist/firefox/panes-3-16-0/assets/fonts/Inter-Bold.woff2 +0 -0
- package/dist/firefox/panes-3-16-0/assets/fonts/Inter-Regular.woff +0 -0
- package/dist/firefox/panes-3-16-0/assets/fonts/Inter-Regular.woff2 +0 -0
- package/dist/websocket/assets/chunk.143.76a242242ec46a377266.js +0 -28
- package/dist/websocket/assets/chunk.178.b6064b368cf24cc346ec.js +0 -9
- package/dist/websocket/assets/chunk.359.0be5d21f60d2b5d6d423.js +0 -2620
- package/dist/websocket/assets/chunk.359.0be5d21f60d2b5d6d423.js.LICENSE.txt +0 -67
- package/dist/websocket/assets/fonts/Inter-Bold.woff +0 -0
- package/dist/websocket/assets/fonts/Inter-Bold.woff2 +0 -0
- package/dist/websocket/assets/fonts/Inter-Regular.woff +0 -0
- package/dist/websocket/assets/fonts/Inter-Regular.woff2 +0 -0
- package/ember_debug/.eslintrc.js +0 -13
- package/ember_debug/utils/ember/debug.js +0 -20
- package/ember_debug/utils/ember/instrumentation.js +0 -11
- package/ember_debug/utils/ember/loader.js +0 -22
- package/ember_debug/utils/rsvp.js +0 -20
- package/ember_debug/vendor/loader.js +0 -54
- package/ember_debug/vendor/startup-wrapper.js +0 -399
- package/lib/ui/addon/styles/_object-inspector-toggle.scss +0 -12
- package/lib/ui/addon/styles/addon.scss +0 -13
- package/lib/ui/addon/styles/toolbar/_icon-button.scss +0 -61
- package/lib/ui/app/components/ui/disclosure-triangle.js +0 -1
- package/lib/ui/app/components/ui/disclosure.js +0 -1
- package/lib/ui/app/components/ui/drag-handle.js +0 -1
- package/lib/ui/app/components/ui/draggable-column.js +0 -1
- package/lib/ui/app/components/ui/empty-message.js +0 -1
- package/lib/ui/app/components/ui/error-page.js +0 -1
- package/lib/ui/app/components/ui/open-links-in-new-window.js +0 -1
- package/lib/ui/app/components/ui/resizable-column.js +0 -1
- package/lib/ui/app/components/ui/send-to-console.js +0 -1
- package/lib/ui/app/components/ui/toolbar-clear-button.js +0 -1
- package/lib/ui/app/components/ui/toolbar-divider.js +0 -1
- package/lib/ui/app/components/ui/toolbar-reload-button.js +0 -1
- package/lib/ui/app/components/ui/toolbar-search-field.js +0 -1
- package/lib/ui/app/components/ui/warning-message.js +0 -1
- package/lib/ui/index.js +0 -34
- package/lib/ui/package.json +0 -13
- package/public/assets/fonts/Inter-Bold.woff +0 -0
- package/public/assets/fonts/Inter-Bold.woff2 +0 -0
- package/public/assets/fonts/Inter-Regular.woff +0 -0
- package/public/assets/fonts/Inter-Regular.woff2 +0 -0
- package/tests/helpers/trigger-port.js +0 -6
- /package/app/{app.js → app.ts} +0 -0
- /package/{lib/ui/addon/components → app/components/ui}/disclosure-triangle.hbs +0 -0
- /package/{lib/ui/addon/components → app/components/ui}/disclosure.hbs +0 -0
- /package/{lib/ui/addon/components → app/components/ui}/disclosure.js +0 -0
- /package/{lib/ui/addon/components → app/components/ui}/draggable-column.hbs +0 -0
- /package/{lib/ui/addon/components → app/components/ui}/draggable-column.js +0 -0
- /package/{lib/ui/addon/components → app/components/ui}/open-links-in-new-window.hbs +0 -0
- /package/{lib/ui/addon/components → app/components/ui}/open-links-in-new-window.js +0 -0
- /package/{lib/ui/addon/components → app/components/ui}/resizable-column.hbs +0 -0
- /package/{lib/ui/addon/components → app/components/ui}/send-to-console.hbs +0 -0
- /package/{lib/ui/addon/components → app/components/ui}/toolbar-divider.hbs +0 -0
- /package/{lib/ui/addon/components → app/components/ui}/toolbar-search-field.js +0 -0
- /package/{lib/ui/addon/components → app/components/ui}/warning-message.hbs +0 -0
- /package/app/controllers/{info.js → info.ts} +0 -0
- /package/app/services/adapters/{firefox.js → firefox.ts} +0 -0
- /package/{lib/ui/addon/styles → app/styles/ui}/_goto-source.scss +0 -0
- /package/{lib/ui/addon/styles → app/styles/ui}/_warning.scss +0 -0
- /package/{lib/ui/addon/styles → app/styles/ui}/toolbar/_divider.scss +0 -0
package/.ember-cli
CHANGED
|
@@ -1,15 +1,7 @@
|
|
|
1
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
2
|
/**
|
|
11
3
|
Setting `isTypeScriptProject` to true will force the blueprint generators to generate TypeScript
|
|
12
4
|
rather than JavaScript by default, when a TypeScript version of a given blueprint is available.
|
|
13
5
|
*/
|
|
14
|
-
"isTypeScriptProject":
|
|
6
|
+
"isTypeScriptProject": true
|
|
15
7
|
}
|
|
@@ -19,8 +19,7 @@ jobs:
|
|
|
19
19
|
env:
|
|
20
20
|
CI: 'true'
|
|
21
21
|
steps:
|
|
22
|
-
-
|
|
23
|
-
uses: actions/checkout@v3
|
|
22
|
+
- uses: actions/checkout@v4
|
|
24
23
|
# Code Climate expects these variables to be set
|
|
25
24
|
- name: Set up commit metadata
|
|
26
25
|
if: github.event_name == 'push'
|
|
@@ -38,10 +37,12 @@ jobs:
|
|
|
38
37
|
run: |
|
|
39
38
|
echo "GIT_COMMIT_SHA=${GIT_COMMIT_SHA}" >> $GITHUB_ENV
|
|
40
39
|
echo "GIT_BRANCH=${GIT_BRANCH}" >> $GITHUB_ENV
|
|
41
|
-
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
40
|
+
- uses: pnpm/action-setup@v4
|
|
41
|
+
- uses: actions/setup-node@v4
|
|
42
|
+
with:
|
|
43
|
+
node-version: 22
|
|
44
|
+
cache: pnpm
|
|
45
|
+
- run: pnpm install
|
|
45
46
|
- name: Lint (hbs)
|
|
46
47
|
run: pnpm lint:hbs
|
|
47
48
|
- name: Lint (js)
|
|
@@ -77,6 +78,7 @@ jobs:
|
|
|
77
78
|
name: ember-try (${{ matrix.scenario }})
|
|
78
79
|
needs: test
|
|
79
80
|
runs-on: ubuntu-latest
|
|
81
|
+
timeout-minutes: 10
|
|
80
82
|
env:
|
|
81
83
|
CI: 'true'
|
|
82
84
|
strategy:
|
|
@@ -87,18 +89,24 @@ jobs:
|
|
|
87
89
|
- ember-lts-3.20
|
|
88
90
|
- ember-lts-3.24
|
|
89
91
|
- ember-lts-3.28
|
|
92
|
+
- ember-lts-4.8
|
|
93
|
+
- ember-lts-4.12
|
|
94
|
+
- ember-lts-5.4
|
|
95
|
+
- ember-lts-5.8
|
|
96
|
+
- ember-lts-5.12
|
|
90
97
|
- ember-release
|
|
91
98
|
- ember-beta
|
|
92
99
|
- ember-canary
|
|
93
100
|
- ember-default-no-prototype-extensions
|
|
94
101
|
|
|
95
102
|
steps:
|
|
96
|
-
-
|
|
97
|
-
|
|
98
|
-
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
103
|
+
- uses: actions/checkout@v4
|
|
104
|
+
- uses: pnpm/action-setup@v4
|
|
105
|
+
- uses: actions/setup-node@v4
|
|
106
|
+
with:
|
|
107
|
+
node-version: 22
|
|
108
|
+
cache: pnpm
|
|
109
|
+
- run: pnpm install
|
|
102
110
|
- name: Set NO_EXTEND_PROTOTYPES
|
|
103
111
|
if: matrix.scenario == 'ember-default-no-prototype-extensions'
|
|
104
112
|
run: echo "NO_EXTEND_PROTOTYPES==true" >> .GITHUB_ENV
|
|
@@ -117,12 +125,13 @@ jobs:
|
|
|
117
125
|
env:
|
|
118
126
|
CI: 'true'
|
|
119
127
|
steps:
|
|
120
|
-
-
|
|
121
|
-
|
|
122
|
-
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
128
|
+
- uses: actions/checkout@v4
|
|
129
|
+
- uses: pnpm/action-setup@v4
|
|
130
|
+
- uses: actions/setup-node@v4
|
|
131
|
+
with:
|
|
132
|
+
node-version: 22
|
|
133
|
+
cache: pnpm
|
|
134
|
+
- run: pnpm install
|
|
126
135
|
- name: Download panes
|
|
127
136
|
run: node scripts/download-panes.js
|
|
128
137
|
env:
|
|
@@ -193,7 +202,7 @@ jobs:
|
|
|
193
202
|
env:
|
|
194
203
|
PR: ${{ github.event.pull_request.number }}
|
|
195
204
|
- name: Build
|
|
196
|
-
run: pnpm
|
|
205
|
+
run: pnpm build:production
|
|
197
206
|
- name: Pack
|
|
198
207
|
run: |
|
|
199
208
|
VERSION="$(jq -r '.version' package.json)"
|
|
@@ -222,31 +231,6 @@ jobs:
|
|
|
222
231
|
name: npm
|
|
223
232
|
path: dist/npm
|
|
224
233
|
|
|
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
234
|
publish-chrome:
|
|
251
235
|
name: Publish Chrome extension
|
|
252
236
|
needs:
|
|
@@ -266,74 +250,11 @@ jobs:
|
|
|
266
250
|
path: chrome
|
|
267
251
|
- name: Set Environment Variables
|
|
268
252
|
run: |
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
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
|
|
253
|
+
echo "EXTENSION_ID=ibdbkmdgflhglikhjdbogjjflkialpfi" >> $GITHUB_ENV
|
|
254
|
+
echo "CLIENT_ID=${{ secrets.GOOGLE_NIGHTLY_CLIENT_ID }}" >> $GITHUB_ENV
|
|
255
|
+
echo "CLIENT_SECRET=${{ secrets.GOOGLE_NIGHTLY_CLIENT_SECRET }}" >> $GITHUB_ENV
|
|
256
|
+
echo "REFRESH_TOKEN=${{ secrets.GOOGLE_NIGHTLY_REFRESH_TOKEN }}" >> $GITHUB_ENV
|
|
278
257
|
- name: Upload to Chrome Web Store
|
|
279
258
|
if: >-
|
|
280
|
-
github.event_name == 'schedule'
|
|
281
|
-
(github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v'))
|
|
259
|
+
github.event_name == 'schedule'
|
|
282
260
|
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,80 +1,58 @@
|
|
|
1
|
-
name:
|
|
1
|
+
name: Plan Release
|
|
2
2
|
on:
|
|
3
|
+
workflow_dispatch:
|
|
3
4
|
push:
|
|
4
5
|
branches:
|
|
5
6
|
- main
|
|
6
7
|
- master
|
|
7
|
-
|
|
8
|
+
pull_request_target: # This workflow has permissions on the repo, do NOT run code from PRs in this workflow. See https://securitylab.github.com/research/github-actions-preventing-pwn-requests/
|
|
8
9
|
types:
|
|
9
10
|
- labeled
|
|
11
|
+
- unlabeled
|
|
10
12
|
|
|
11
13
|
concurrency:
|
|
12
14
|
group: plan-release # only the latest one of these should ever be running
|
|
13
15
|
cancel-in-progress: true
|
|
14
16
|
|
|
15
17
|
jobs:
|
|
16
|
-
|
|
17
|
-
name:
|
|
18
|
+
should-run-release-plan-prepare:
|
|
19
|
+
name: Should we run release-plan prepare?
|
|
18
20
|
runs-on: ubuntu-latest
|
|
19
21
|
outputs:
|
|
20
|
-
|
|
21
|
-
|
|
22
|
+
should-prepare: ${{ steps.should-prepare.outputs.should-prepare }}
|
|
22
23
|
steps:
|
|
23
|
-
- uses: actions/
|
|
24
|
+
- uses: release-plan/actions/should-prepare-release@v1
|
|
24
25
|
with:
|
|
25
|
-
fetch-depth: 0
|
|
26
26
|
ref: 'main'
|
|
27
|
-
|
|
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
|
|
27
|
+
id: should-prepare
|
|
31
28
|
|
|
32
|
-
|
|
33
|
-
name: Prepare Release
|
|
29
|
+
create-prepare-release-pr:
|
|
30
|
+
name: Create Prepare Release PR
|
|
34
31
|
runs-on: ubuntu-latest
|
|
35
32
|
timeout-minutes: 5
|
|
36
|
-
needs:
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
if:
|
|
42
|
-
|
|
33
|
+
needs: should-run-release-plan-prepare
|
|
34
|
+
permissions:
|
|
35
|
+
contents: write
|
|
36
|
+
issues: read
|
|
37
|
+
pull-requests: write
|
|
38
|
+
if: needs.should-run-release-plan-prepare.outputs.should-prepare == 'true'
|
|
43
39
|
steps:
|
|
44
|
-
- uses: actions/
|
|
45
|
-
|
|
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
|
|
40
|
+
- uses: release-plan/actions/prepare@v1
|
|
41
|
+
name: Run release-plan prepare
|
|
54
42
|
with:
|
|
55
|
-
|
|
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
|
|
43
|
+
ref: 'main'
|
|
68
44
|
env:
|
|
69
45
|
GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }}
|
|
46
|
+
id: explanation
|
|
70
47
|
|
|
71
|
-
- uses: peter-evans/create-pull-request@
|
|
48
|
+
- uses: peter-evans/create-pull-request@v7
|
|
49
|
+
name: Create Prepare Release PR
|
|
72
50
|
with:
|
|
73
|
-
commit-message: "Prepare Release using 'release-plan'"
|
|
74
|
-
author: "github-actions[bot] <github-actions-bot@users.noreply.github.com>"
|
|
51
|
+
commit-message: "Prepare Release ${{ steps.explanation.outputs.new-version}} using 'release-plan'"
|
|
75
52
|
labels: "internal"
|
|
53
|
+
sign-commits: true
|
|
76
54
|
branch: release-preview
|
|
77
|
-
title: Prepare Release
|
|
55
|
+
title: Prepare Release ${{ steps.explanation.outputs.new-version }}
|
|
78
56
|
body: |
|
|
79
57
|
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
58
|
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
# For every push to the
|
|
2
|
-
#
|
|
3
|
-
# release plan
|
|
1
|
+
# For every push to the primary branch with .release-plan.json modified,
|
|
2
|
+
# runs release-plan.
|
|
4
3
|
|
|
5
4
|
name: Publish Stable
|
|
6
5
|
|
|
@@ -10,51 +9,150 @@ on:
|
|
|
10
9
|
branches:
|
|
11
10
|
- main
|
|
12
11
|
- master
|
|
12
|
+
paths:
|
|
13
|
+
- '.release-plan.json'
|
|
13
14
|
|
|
14
15
|
concurrency:
|
|
15
16
|
group: publish-${{ github.head_ref || github.ref }}
|
|
16
17
|
cancel-in-progress: true
|
|
17
18
|
|
|
18
19
|
jobs:
|
|
19
|
-
check-plan:
|
|
20
|
-
name: "Check Release Plan"
|
|
21
|
-
runs-on: ubuntu-latest
|
|
22
|
-
outputs:
|
|
23
|
-
command: ${{ steps.check-release.outputs.command }}
|
|
24
20
|
|
|
21
|
+
build:
|
|
22
|
+
name: Build extensions
|
|
23
|
+
runs-on: ubuntu-latest
|
|
25
24
|
steps:
|
|
26
25
|
- uses: actions/checkout@v4
|
|
26
|
+
- uses: pnpm/action-setup@v4
|
|
27
|
+
- uses: actions/setup-node@v4
|
|
28
|
+
with:
|
|
29
|
+
node-version: 22
|
|
30
|
+
cache: pnpm
|
|
31
|
+
- run: pnpm install
|
|
32
|
+
- name: Download panes
|
|
33
|
+
run: node scripts/download-panes.js
|
|
34
|
+
env:
|
|
35
|
+
EMBER_ENV: production
|
|
36
|
+
- name: Build
|
|
37
|
+
run: pnpm build:production
|
|
38
|
+
- name: Pack
|
|
39
|
+
run: |
|
|
40
|
+
VERSION="$(jq -r '.version' package.json)"
|
|
41
|
+
|
|
42
|
+
pnpm pack
|
|
43
|
+
mkdir -p dist/npm
|
|
44
|
+
tar xvzf "ember-inspector-$VERSION.tgz" -C dist/npm --strip-components 1
|
|
45
|
+
- name: Upload artifacts (bookmarklet)
|
|
46
|
+
uses: actions/upload-artifact@v4
|
|
47
|
+
with:
|
|
48
|
+
name: bookmarklet
|
|
49
|
+
path: dist/bookmarklet
|
|
50
|
+
- name: Upload artifacts (Chrome)
|
|
51
|
+
uses: actions/upload-artifact@v4
|
|
52
|
+
with:
|
|
53
|
+
name: chrome
|
|
54
|
+
path: dist/chrome
|
|
55
|
+
- name: Upload artifacts (Firefox)
|
|
56
|
+
uses: actions/upload-artifact@v4
|
|
57
|
+
with:
|
|
58
|
+
name: firefox
|
|
59
|
+
path: dist/firefox
|
|
60
|
+
- name: Upload artifacts (npm)
|
|
61
|
+
uses: actions/upload-artifact@v4
|
|
62
|
+
with:
|
|
63
|
+
name: npm
|
|
64
|
+
path: dist/npm
|
|
65
|
+
|
|
66
|
+
publish-bookmarklet:
|
|
67
|
+
name: Publish bookmarklet
|
|
68
|
+
needs:
|
|
69
|
+
- build
|
|
70
|
+
runs-on: ubuntu-latest
|
|
71
|
+
steps:
|
|
72
|
+
- name: Download artifacts (bookmarklet)
|
|
73
|
+
uses: actions/download-artifact@v4
|
|
74
|
+
with:
|
|
75
|
+
name: bookmarklet
|
|
76
|
+
path: bookmarklet
|
|
77
|
+
- name: Upload to S3
|
|
78
|
+
uses: jakejarvis/s3-sync-action@v0.5.1
|
|
27
79
|
with:
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
80
|
+
args: --acl public-read --cache-control "max-age=86400000,public"
|
|
81
|
+
env:
|
|
82
|
+
AWS_S3_BUCKET: ember-extension
|
|
83
|
+
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
|
84
|
+
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
|
85
|
+
SOURCE_DIR: bookmarklet
|
|
86
|
+
DEST_DIR: dist_bookmarklet
|
|
87
|
+
|
|
88
|
+
publish-chrome:
|
|
89
|
+
name: Publish Chrome extension
|
|
90
|
+
needs:
|
|
91
|
+
- build
|
|
92
|
+
runs-on: ubuntu-latest
|
|
93
|
+
steps:
|
|
94
|
+
- name: Set up node
|
|
95
|
+
uses: actions/setup-node@v4
|
|
96
|
+
- name: Install dependencies (chrome-webstore-upload-cli)
|
|
97
|
+
run: npm install -g chrome-webstore-upload-cli
|
|
98
|
+
- name: Download artifacts (Chrome)
|
|
99
|
+
uses: actions/download-artifact@v4
|
|
100
|
+
with:
|
|
101
|
+
name: chrome
|
|
102
|
+
path: chrome
|
|
103
|
+
- name: Set Environment Variables
|
|
104
|
+
run: |
|
|
105
|
+
echo "EXTENSION_ID=bmdblncegkenkacieihfhpjfppoconhi" >> $GITHUB_ENV
|
|
106
|
+
echo "CLIENT_ID=${{ secrets.GOOGLE_NIGHTLY_CLIENT_ID }}" >> $GITHUB_ENV
|
|
107
|
+
echo "CLIENT_SECRET=${{ secrets.GOOGLE_NIGHTLY_CLIENT_SECRET }}" >> $GITHUB_ENV
|
|
108
|
+
echo "REFRESH_TOKEN=${{ secrets.GOOGLE_NIGHTLY_REFRESH_TOKEN }}" >> $GITHUB_ENV
|
|
109
|
+
- name: Upload to Chrome Web Store
|
|
110
|
+
run: chrome-webstore-upload upload --source chrome --auto-publish
|
|
111
|
+
|
|
112
|
+
publish-firefox:
|
|
113
|
+
name: Publish Firefox extension
|
|
114
|
+
needs:
|
|
115
|
+
- build
|
|
116
|
+
runs-on: ubuntu-latest
|
|
117
|
+
steps:
|
|
118
|
+
- name: Set up nod
|
|
119
|
+
uses: actions/setup-node@v4
|
|
120
|
+
- name: Install dependencies (web-ext)
|
|
121
|
+
run: |
|
|
122
|
+
npm install -g web-ext
|
|
123
|
+
# https://github.com/mozilla/web-ext/issues/804
|
|
124
|
+
npm install -g web-ext-submit
|
|
125
|
+
- name: Download artifacts (Firefox)
|
|
126
|
+
uses: actions/download-artifact@v4
|
|
127
|
+
with:
|
|
128
|
+
name: firefox
|
|
129
|
+
path: firefox
|
|
130
|
+
- name: Upload to AMO
|
|
131
|
+
working-directory: firefox
|
|
132
|
+
run: web-ext-submit --channel=listed
|
|
133
|
+
env:
|
|
134
|
+
WEB_EXT_API_KEY: ${{ secrets.FIREFOX_API_KEY }}
|
|
135
|
+
WEB_EXT_API_SECRET: ${{ secrets.FIREFOX_API_SECRET }}
|
|
35
136
|
|
|
36
137
|
publish:
|
|
37
138
|
name: "NPM Publish"
|
|
38
139
|
runs-on: ubuntu-latest
|
|
39
|
-
|
|
40
|
-
|
|
140
|
+
permissions:
|
|
141
|
+
contents: write
|
|
142
|
+
id-token: write
|
|
143
|
+
attestations: write
|
|
41
144
|
|
|
42
145
|
steps:
|
|
43
|
-
- uses: actions/checkout@
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
- uses: actions/setup-node@v4
|
|
146
|
+
- uses: actions/checkout@v5
|
|
147
|
+
- uses: pnpm/action-setup@v4
|
|
148
|
+
- uses: actions/setup-node@v6
|
|
47
149
|
with:
|
|
48
|
-
node-version:
|
|
49
|
-
# This creates an .npmrc that reads the NODE_AUTH_TOKEN environment variable
|
|
150
|
+
node-version: 22
|
|
50
151
|
registry-url: 'https://registry.npmjs.org'
|
|
51
|
-
|
|
52
|
-
- uses: pnpm/action-setup@v2
|
|
53
|
-
with:
|
|
54
|
-
version: 8
|
|
152
|
+
cache: pnpm
|
|
55
153
|
- run: pnpm install --frozen-lockfile
|
|
56
|
-
-
|
|
57
|
-
|
|
154
|
+
- run: npm install -g npm@latest # ensure that the globally installed npm is new enough to support OIDC
|
|
155
|
+
- name: Publish to NPM
|
|
156
|
+
run: NPM_CONFIG_PROVENANCE=true pnpm release-plan publish
|
|
58
157
|
env:
|
|
59
|
-
GITHUB_AUTH: ${{ secrets.
|
|
60
|
-
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
|
|
158
|
+
GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }}
|
package/.prettierignore
CHANGED
|
@@ -1,25 +1,14 @@
|
|
|
1
1
|
# unconventional js
|
|
2
2
|
/blueprints/*/files/
|
|
3
|
-
/vendor/
|
|
4
3
|
|
|
5
4
|
# compiled output
|
|
6
5
|
/dist/
|
|
7
|
-
/
|
|
8
|
-
|
|
9
|
-
# dependencies
|
|
10
|
-
/bower_components/
|
|
11
|
-
/node_modules/
|
|
6
|
+
/ember_debug/dist/
|
|
12
7
|
|
|
13
8
|
# misc
|
|
14
9
|
/coverage/
|
|
15
10
|
!.*
|
|
16
|
-
|
|
17
|
-
.lint-todo/
|
|
11
|
+
.*/
|
|
18
12
|
|
|
19
13
|
# ember-try
|
|
20
14
|
/.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
|
package/.prettierrc.js
CHANGED
|
@@ -1,13 +1,19 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
module.exports = {
|
|
4
|
-
|
|
4
|
+
plugins: ['prettier-plugin-ember-template-tag'],
|
|
5
5
|
overrides: [
|
|
6
6
|
{
|
|
7
|
-
files: '
|
|
7
|
+
files: '*.{js,gjs,ts,gts,mjs,mts,cjs,cts}',
|
|
8
8
|
options: {
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
singleQuote: true,
|
|
10
|
+
},
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
files: '*.{gjs,gts}',
|
|
14
|
+
options: {
|
|
15
|
+
singleQuote: true,
|
|
16
|
+
templateSingleQuote: false,
|
|
11
17
|
},
|
|
12
18
|
},
|
|
13
19
|
],
|
package/.release-plan.json
CHANGED
|
@@ -1,17 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"solution": {
|
|
3
3
|
"ember-inspector": {
|
|
4
|
-
"impact": "
|
|
5
|
-
"oldVersion": "4.
|
|
6
|
-
"newVersion": "4.
|
|
4
|
+
"impact": "minor",
|
|
5
|
+
"oldVersion": "4.14.2",
|
|
6
|
+
"newVersion": "4.15.0",
|
|
7
|
+
"tagName": "latest",
|
|
7
8
|
"constraints": [
|
|
9
|
+
{
|
|
10
|
+
"impact": "minor",
|
|
11
|
+
"reason": "Appears in changelog section :rocket: Enhancement"
|
|
12
|
+
},
|
|
8
13
|
{
|
|
9
14
|
"impact": "patch",
|
|
10
15
|
"reason": "Appears in changelog section :bug: Bug Fix"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"impact": "patch",
|
|
19
|
+
"reason": "Appears in changelog section :house: Internal"
|
|
11
20
|
}
|
|
12
21
|
],
|
|
13
22
|
"pkgJSONPath": "./package.json"
|
|
14
23
|
}
|
|
15
24
|
},
|
|
16
|
-
"description": "## Release (
|
|
25
|
+
"description": "## Release (2025-11-19)\n\n* ember-inspector 4.15.0 (minor)\n\n#### :rocket: Enhancement\n* `ember-inspector`\n * [#2694](https://github.com/emberjs/ember-inspector/pull/2694) link to legacy inspector support docs ([@patricklx](https://github.com/patricklx))\n\n#### :bug: Bug Fix\n* `ember-inspector`\n * [#2691](https://github.com/emberjs/ember-inspector/pull/2691) fix data tab not showing models ([@patricklx](https://github.com/patricklx))\n * [#2703](https://github.com/emberjs/ember-inspector/pull/2703) regression: fix _backburner access ([@patricklx](https://github.com/patricklx))\n * [#2705](https://github.com/emberjs/ember-inspector/pull/2705) fix whats new for nightly ([@patricklx](https://github.com/patricklx))\n * [#2689](https://github.com/emberjs/ember-inspector/pull/2689) fix loading race condition ([@patricklx](https://github.com/patricklx))\n * [#2700](https://github.com/emberjs/ember-inspector/pull/2700) add a optional chaining operator for accessing getOwner on application ([@mansona](https://github.com/mansona))\n * [#2702](https://github.com/emberjs/ember-inspector/pull/2702) add back iframe (without src) support ([@patricklx](https://github.com/patricklx))\n * [#2692](https://github.com/emberjs/ember-inspector/pull/2692) fix whats new ([@patricklx](https://github.com/patricklx))\n\n#### :house: Internal\n* `ember-inspector`\n * [#2708](https://github.com/emberjs/ember-inspector/pull/2708) update release-plan workflows to new format ([@mansona](https://github.com/mansona))\n\n#### Committers: 2\n- Chris Manson ([@mansona](https://github.com/mansona))\n- Patrick Pircher ([@patricklx](https://github.com/patricklx))\n"
|
|
17
26
|
}
|
package/.stylelintignore
ADDED
package/.stylelintrc.js
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
1
3
|
module.exports = {
|
|
2
|
-
extends: 'stylelint-config-
|
|
4
|
+
extends: ['stylelint-config-standard-scss', 'stylelint-prettier/recommended'],
|
|
5
|
+
rules: {
|
|
6
|
+
'color-hex-length': null,
|
|
7
|
+
'no-descending-specificity': null,
|
|
8
|
+
'no-invalid-position-at-import-rule': null,
|
|
9
|
+
'number-max-precision': null,
|
|
10
|
+
'property-no-vendor-prefix': null,
|
|
11
|
+
},
|
|
3
12
|
};
|
package/.template-lintrc.js
CHANGED
|
@@ -3,10 +3,11 @@
|
|
|
3
3
|
module.exports = {
|
|
4
4
|
extends: 'recommended',
|
|
5
5
|
rules: {
|
|
6
|
-
'no-
|
|
6
|
+
'no-at-ember-render-modifiers': false,
|
|
7
7
|
'no-negated-condition': false,
|
|
8
8
|
|
|
9
9
|
// TODO: enable these rules
|
|
10
|
+
'no-builtin-form-components': false,
|
|
10
11
|
'no-positive-tabindex': false,
|
|
11
12
|
},
|
|
12
13
|
};
|
package/.tool-versions
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
nodejs 18.
|
|
2
|
-
pnpm
|
|
1
|
+
nodejs 18.20.4
|
|
2
|
+
pnpm 9.12.1
|
package/.watchmanconfig
CHANGED