DEV: Update linting (#184)
This commit is contained in:
parent
6be4dcf9ff
commit
c74323869f
|
@ -37,14 +37,14 @@ export default Component.extend({
|
|||
didInsertElement() {
|
||||
this._super(...arguments);
|
||||
|
||||
document.querySelector("body").classList.add("archetype-docs-topic");
|
||||
document.body.classList.add("archetype-docs-topic");
|
||||
document.addEventListener("scroll", this.debounceScrollEvent);
|
||||
},
|
||||
|
||||
willDestroyElement() {
|
||||
this._super(...arguments);
|
||||
|
||||
document.querySelector("body").classList.remove("archetype-docs-topic");
|
||||
document.body.classList.remove("archetype-docs-topic");
|
||||
document.removeEventListener("scroll", this.debounceScrollEvent);
|
||||
},
|
||||
});
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
<a
|
||||
href
|
||||
{{action this.selectCategory}}
|
||||
class="docs-item docs-category {{if category.active 'selected'}}"
|
||||
class="docs-item docs-category {{if this.category.active 'selected'}}"
|
||||
>
|
||||
{{d-icon (if category.active "times-circle" "far-circle")}}
|
||||
{{d-icon (if this.category.active "times-circle" "far-circle")}}
|
||||
|
||||
<span class="docs-item-id category-id">{{categoryName}}</span>
|
||||
<span class="docs-item-count category-count">{{category.count}}</span>
|
||||
<span class="docs-item-id category-id">{{this.categoryName}}</span>
|
||||
<span class="docs-item-count category-count">{{this.category.count}}</span>
|
||||
</a>
|
|
@ -1,7 +1,7 @@
|
|||
<span class="docs-search-wrapper">
|
||||
<Input
|
||||
@type="text"
|
||||
@value={{readonly searchTerm}}
|
||||
@value={{readonly this.searchTerm}}
|
||||
class="no-blur docs-search-bar"
|
||||
autocorrect="off"
|
||||
placeholder={{i18n "docs.search.placeholder"}}
|
||||
|
@ -9,7 +9,7 @@
|
|||
{{on "keydown" this.onKeyDown}}
|
||||
/>
|
||||
|
||||
{{#if searchTerm}}
|
||||
{{#if this.searchTerm}}
|
||||
<DButton
|
||||
@action={{action "clearSearch"}}
|
||||
class="clear-search"
|
||||
|
|
|
@ -1,16 +1,17 @@
|
|||
<a
|
||||
href
|
||||
{{action this.selectTag}}
|
||||
class="docs-item docs-tag {{if tag.active 'selected'}} {{if subtag 'subtag'}}"
|
||||
class="docs-item docs-tag
|
||||
{{if this.tag.active 'selected'}}{{if this.subtag 'subtag'}}"
|
||||
>
|
||||
{{#unless tag.active}}
|
||||
{{#unless this.tag.active}}
|
||||
{{d-icon "plus"}}
|
||||
{{/unless}}
|
||||
|
||||
{{#if tag.active}}
|
||||
{{#if this.tag.active}}
|
||||
{{d-icon "times-circle"}}
|
||||
{{/if}}
|
||||
|
||||
<span class="docs-item-id tag-id">{{tag.id}}</span>
|
||||
<span class="docs-item-count tag-count">{{tag.count}}</span>
|
||||
<span class="docs-item-id tag-id">{{this.tag.id}}</span>
|
||||
<span class="docs-item-count tag-count">{{this.tag.count}}</span>
|
||||
</a>
|
|
@ -1,11 +1,11 @@
|
|||
<LoadMore @selector=".topic-list tr" @action={{loadMore}}>
|
||||
<LoadMore @selector=".topic-list tr" @action={{this.loadMore}}>
|
||||
<table class="topic-list">
|
||||
<thead class="topic-list-header">
|
||||
<th role="button" class="topic-list-data" {{action "sortListTitle"}}>
|
||||
{{i18n "docs.column_titles.topic"}}
|
||||
|
||||
{{#if sortTitle}}
|
||||
{{#if ascending}}
|
||||
{{#if this.sortTitle}}
|
||||
{{#if this.ascending}}
|
||||
{{d-icon "angle-up"}}
|
||||
{{else}}
|
||||
{{d-icon "angle-down"}}
|
||||
|
@ -16,8 +16,8 @@
|
|||
<th role="button" class="topic-list-data" {{action "sortListActivity"}}>
|
||||
{{i18n "docs.column_titles.activity"}}
|
||||
|
||||
{{#if sortActivity}}
|
||||
{{#if ascending}}
|
||||
{{#if this.sortActivity}}
|
||||
{{#if this.ascending}}
|
||||
{{d-icon "angle-up"}}
|
||||
{{else}}
|
||||
{{d-icon "angle-down"}}
|
||||
|
@ -27,15 +27,15 @@
|
|||
</thead>
|
||||
|
||||
<tbody class="topic-list-body">
|
||||
{{#each topics as |topic|}}
|
||||
{{#each this.topics as |topic|}}
|
||||
{{docs-topic-list-item
|
||||
topic=topic
|
||||
urlPath=urlPath
|
||||
showExcerpt=showExcerpts
|
||||
urlPath=this.urlPath
|
||||
showExcerpt=this.showExcerpts
|
||||
}}
|
||||
{{/each}}
|
||||
</tbody>
|
||||
</table>
|
||||
</LoadMore>
|
||||
|
||||
<ConditionalLoadingSpinner @condition={{loading}} />
|
||||
<ConditionalLoadingSpinner @condition={{this.loading}} />
|
|
@ -1,17 +1,17 @@
|
|||
<DButton
|
||||
@label="docs.topic.back"
|
||||
class="docs-nav-link return"
|
||||
@action={{return}}
|
||||
@action={{this.return}}
|
||||
/>
|
||||
|
||||
<div class="topic-content">
|
||||
<h1>{{html-safe topic.fancyTitle}}</h1>
|
||||
<h1>{{html-safe this.topic.fancyTitle}}</h1>
|
||||
|
||||
{{! template-lint-disable no-capital-arguments }}
|
||||
<MountWidget @widget="post" @model={{model}} @args={{post}} />
|
||||
<MountWidget @widget="post" @model={{this.model}} @args={{this.post}} />
|
||||
</div>
|
||||
|
||||
<a class="docs-nav-link more" href="/t/{{topic.id}}">
|
||||
<a class="docs-nav-link more" href="/t/{{this.topic.id}}">
|
||||
{{d-icon "far-comment"}}
|
||||
{{i18n "docs.topic.navigate_to_topic"}}
|
||||
</a>
|
||||
|
|
|
@ -1,13 +1,16 @@
|
|||
<ConditionalLoadingSpinner @condition={{isLoading}}>
|
||||
{{#if noContent}}
|
||||
<EmptyState @title={{emptyState.title}} @body={{emptyState.body}} />
|
||||
<ConditionalLoadingSpinner @condition={{this.isLoading}}>
|
||||
{{#if this.noContent}}
|
||||
<EmptyState
|
||||
@title={{this.emptyState.title}}
|
||||
@body={{this.emptyState.body}}
|
||||
/>
|
||||
{{else}}
|
||||
<div class="docs-browse">
|
||||
{{#if site.mobileView}}
|
||||
{{#unless selectedTopic}}
|
||||
{{#if this.site.mobileView}}
|
||||
{{#unless this.selectedTopic}}
|
||||
<DButton
|
||||
class="docs-expander"
|
||||
@icon={{if expandedFilters "angle-up" "angle-down"}}
|
||||
@icon={{if this.expandedFilters "angle-up" "angle-down"}}
|
||||
@action={{action "toggleFilters"}}
|
||||
@label="docs.filter_button"
|
||||
/>
|
||||
|
@ -15,13 +18,13 @@
|
|||
{{/if}}
|
||||
|
||||
<div class="docs-filters">
|
||||
{{#if expandedFilters}}
|
||||
{{#if canFilterSolved}}
|
||||
{{#if this.expandedFilters}}
|
||||
{{#if this.canFilterSolved}}
|
||||
<div class="docs-items docs-solved">
|
||||
<label class="checkbox-label docs-item">
|
||||
<Input
|
||||
@type="checkbox"
|
||||
@checked={{readonly filterSolved}}
|
||||
@checked={{readonly this.filterSolved}}
|
||||
{{on
|
||||
"input"
|
||||
(action "onChangeFilterSolved" value="target.checked")
|
||||
|
@ -33,7 +36,7 @@
|
|||
</div>
|
||||
{{/if}}
|
||||
|
||||
{{#if categories}}
|
||||
{{#if this.categories}}
|
||||
<div class="docs-items docs-categories">
|
||||
<section class="item-controls">
|
||||
<h3>
|
||||
|
@ -42,36 +45,36 @@
|
|||
<div class="item-controls-buttons">
|
||||
<DButton
|
||||
class={{if
|
||||
(eq categorySort.type "alpha")
|
||||
(eq this.categorySort.type "alpha")
|
||||
"categories-alphabet active"
|
||||
"categories-alphabet"
|
||||
}}
|
||||
@icon={{this.categorySortAlphaIcon}}
|
||||
@action={{toggleCategorySort}}
|
||||
@action={{this.toggleCategorySort}}
|
||||
@actionParam="alpha"
|
||||
/>
|
||||
<DButton
|
||||
class={{if
|
||||
(eq categorySort.type "numeric")
|
||||
(eq this.categorySort.type "numeric")
|
||||
"categories-amount active"
|
||||
"categories-amount"
|
||||
}}
|
||||
@icon={{this.categorySortNumericIcon}}
|
||||
@action={{toggleCategorySort}}
|
||||
@action={{this.toggleCategorySort}}
|
||||
@actionParam="numeric"
|
||||
/>
|
||||
<PluginOutlet @name="categories-controls-buttons-bottom" />
|
||||
</div>
|
||||
</section>
|
||||
{{#if showCategoryFilter}}
|
||||
{{#if this.showCategoryFilter}}
|
||||
<Input
|
||||
@value={{categoryFilter}}
|
||||
@value={{this.categoryFilter}}
|
||||
class="filter"
|
||||
placeholder={{i18n "docs.categories_filter_placeholder"}}
|
||||
/>
|
||||
{{/if}}
|
||||
<ul>
|
||||
{{#each sortedCategories as |category|}}
|
||||
{{#each this.sortedCategories as |category|}}
|
||||
<li>
|
||||
<DocsCategory
|
||||
@category={{category}}
|
||||
|
@ -86,7 +89,7 @@
|
|||
</div>
|
||||
{{/if}}
|
||||
|
||||
{{#if (and tags shouldShowTags)}}
|
||||
{{#if (and this.tags this.shouldShowTags)}}
|
||||
<div class="docs-items docs-tags">
|
||||
<section class="item-controls">
|
||||
<h3>
|
||||
|
@ -95,30 +98,30 @@
|
|||
<div class="item-controls-buttons">
|
||||
<DButton
|
||||
class={{if
|
||||
(eq tagSort.type "alpha")
|
||||
(eq this.tagSort.type "alpha")
|
||||
"tags-alphabet active"
|
||||
"tags-alphabet"
|
||||
}}
|
||||
@icon={{this.tagSortAlphaIcon}}
|
||||
@action={{toggleTagSort}}
|
||||
@action={{this.toggleTagSort}}
|
||||
@actionParam="alpha"
|
||||
/>
|
||||
<DButton
|
||||
class={{if
|
||||
(eq tagSort.type "numeric")
|
||||
(eq this.tagSort.type "numeric")
|
||||
"tags-amount active"
|
||||
"tags-amount"
|
||||
}}
|
||||
@icon={{this.tagSortNumericIcon}}
|
||||
@action={{toggleTagSort}}
|
||||
@action={{this.toggleTagSort}}
|
||||
@actionParam="numeric"
|
||||
/>
|
||||
<PluginOutlet @name="tags-controls-buttons-bottom" />
|
||||
</div>
|
||||
</section>
|
||||
{{#if showTagFilter}}
|
||||
{{#if this.showTagFilter}}
|
||||
<Input
|
||||
@value={{tagFilter}}
|
||||
@value={{this.tagFilter}}
|
||||
class="filter"
|
||||
placeholder={{i18n "docs.tags_filter_placeholder"}}
|
||||
/>
|
||||
|
@ -127,12 +130,12 @@
|
|||
@name="before-docs-tag-list"
|
||||
@connectorTagName="div"
|
||||
@outletArgs={{hash
|
||||
tags=tags
|
||||
updateSelectedTags=updateSelectedTags
|
||||
tags=this.tags
|
||||
updateSelectedTags=this.updateSelectedTags
|
||||
}}
|
||||
/>
|
||||
<ul>
|
||||
{{#each sortedTags as |tag|}}
|
||||
{{#each this.sortedTags as |tag|}}
|
||||
<li class="docs-filter-tag-{{tag.id}}">
|
||||
<DocsTag
|
||||
@tag={{tag}}
|
||||
|
@ -143,7 +146,7 @@
|
|||
</ul>
|
||||
</div>
|
||||
{{/if}}
|
||||
{{#if (and tagGroups shouldShowTagsByGroup)}}
|
||||
{{#if (and this.tagGroups this.shouldShowTagsByGroup)}}
|
||||
<div class="docs-items docs-tags">
|
||||
<section class="item-controls">
|
||||
<h3>
|
||||
|
@ -152,30 +155,30 @@
|
|||
<div class="item-controls-buttons">
|
||||
<DButton
|
||||
class={{if
|
||||
(eq tagSort.type "alpha")
|
||||
(eq this.tagSort.type "alpha")
|
||||
"tags-alphabet active"
|
||||
"tags-alphabet"
|
||||
}}
|
||||
@icon={{this.tagSortAlphaIcon}}
|
||||
@action={{toggleTagSort}}
|
||||
@action={{this.toggleTagSort}}
|
||||
@actionParam="alpha"
|
||||
/>
|
||||
<DButton
|
||||
class={{if
|
||||
(eq tagSort.type "numeric")
|
||||
(eq this.tagSort.type "numeric")
|
||||
"tags-amount active"
|
||||
"tags-amount"
|
||||
}}
|
||||
@icon={{this.tagSortNumericIcon}}
|
||||
@action={{toggleTagSort}}
|
||||
@action={{this.toggleTagSort}}
|
||||
@actionParam="numeric"
|
||||
/>
|
||||
<PluginOutlet @name="tags-controls-buttons-bottom" />
|
||||
</div>
|
||||
</section>
|
||||
{{#if showTagFilter}}
|
||||
{{#if this.showTagFilter}}
|
||||
<Input
|
||||
@value={{tagFilter}}
|
||||
@value={{this.tagFilter}}
|
||||
class="filter"
|
||||
placeholder={{i18n "docs.tags_filter_placeholder"}}
|
||||
/>
|
||||
|
@ -184,17 +187,17 @@
|
|||
@name="before-docs-tag-list"
|
||||
@connectorTagName="div"
|
||||
@outletArgs={{hash
|
||||
tags=tags
|
||||
updateSelectedTags=updateSelectedTags
|
||||
tags=this.tags
|
||||
updateSelectedTags=this.updateSelectedTags
|
||||
}}
|
||||
/>
|
||||
<ul>
|
||||
{{#each sortedTagGroups as |tagGroup|}}
|
||||
{{#each this.sortedTagGroups as |tagGroup|}}
|
||||
<li class="docs-filter-tag-group-{{tagGroup.id}}">
|
||||
{{tagGroup.name}}
|
||||
<ul>
|
||||
{{#each tagGroup.tags as |tag|}}
|
||||
<li class="docs-filter-tag-{{id}}">
|
||||
<li class="docs-filter-tag-{{this.id}}">
|
||||
<DocsTag
|
||||
@tag={{tag}}
|
||||
@selectTag={{action "updateSelectedTags" tag}}
|
||||
|
@ -210,19 +213,19 @@
|
|||
{{/if}}
|
||||
</div>
|
||||
|
||||
{{#if selectedTopic}}
|
||||
<ConditionalLoadingSpinner @condition={{isTopicLoading}}>
|
||||
<DocsTopic @topic={{topic}} @return={{action "returnToList"}} />
|
||||
{{#if this.selectedTopic}}
|
||||
<ConditionalLoadingSpinner @condition={{this.isTopicLoading}}>
|
||||
<DocsTopic @topic={{this.topic}} @return={{action "returnToList"}} />
|
||||
<PluginOutlet
|
||||
@name="below-docs-topic"
|
||||
@connectorTagName="div"
|
||||
@outletArgs={{hash topic=topic}}
|
||||
@outletArgs={{hash topic=this.topic}}
|
||||
/>
|
||||
</ConditionalLoadingSpinner>
|
||||
{{else}}
|
||||
<div class="docs-results">
|
||||
{{#if isSearchingOrFiltered}}
|
||||
{{#if emptyResults}}
|
||||
{{#if this.isSearchingOrFiltered}}
|
||||
{{#if this.emptyResults}}
|
||||
<div class="result-count no-result">
|
||||
{{i18n "search.no_results"}}
|
||||
</div>
|
||||
|
@ -234,20 +237,20 @@
|
|||
</span>
|
||||
{{else}}
|
||||
<div class="result-count">
|
||||
{{i18n "docs.search.results" count=topicCount}}
|
||||
{{i18n "docs.search.results" count=this.topicCount}}
|
||||
</div>
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
|
||||
{{#unless emptyResults}}
|
||||
{{#unless this.emptyResults}}
|
||||
<DocsTopicList
|
||||
@topics={{topics}}
|
||||
@showExcerpts={{showExcerpts}}
|
||||
@ascending={{ascending}}
|
||||
@order={{orderColumn}}
|
||||
@topics={{this.topics}}
|
||||
@showExcerpts={{this.showExcerpts}}
|
||||
@ascending={{this.ascending}}
|
||||
@order={{this.orderColumn}}
|
||||
@sortBy={{action "sortBy"}}
|
||||
@loadMore={{action "loadMore"}}
|
||||
@loading={{isLoadingMore}}
|
||||
@loading={{this.isLoadingMore}}
|
||||
/>
|
||||
{{/unless}}
|
||||
</div>
|
||||
|
|
|
@ -6,14 +6,14 @@
|
|||
@outletArgs={{hash
|
||||
selectCategory=(action "updateSelectedCategories")
|
||||
selectTag=(action "updateSelectedTags")
|
||||
tags=indexController.tags
|
||||
categories=indexController.categories
|
||||
tags=this.indexController.tags
|
||||
categories=this.indexController.categories
|
||||
}}
|
||||
/>
|
||||
</span>
|
||||
|
||||
<DocsSearch
|
||||
@searchTerm={{readonly indexController.searchTerm}}
|
||||
@searchTerm={{readonly this.indexController.searchTerm}}
|
||||
@onSearch={{action "performSearch"}}
|
||||
/>
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"private": true,
|
||||
"devDependencies": {
|
||||
"@discourse/lint-configs": "2.0.1",
|
||||
"@discourse/lint-configs": "2.2.0",
|
||||
"ember-template-lint": "6.0.0",
|
||||
"eslint": "9.14.0",
|
||||
"prettier": "2.8.8"
|
||||
|
|
497
pnpm-lock.yaml
497
pnpm-lock.yaml
|
@ -9,8 +9,8 @@ importers:
|
|||
.:
|
||||
devDependencies:
|
||||
'@discourse/lint-configs':
|
||||
specifier: 2.0.1
|
||||
version: 2.0.1(ember-template-lint@6.0.0)(eslint@9.14.0)(prettier@2.8.8)
|
||||
specifier: 2.2.0
|
||||
version: 2.2.0(ember-template-lint@6.0.0)(eslint@9.14.0)(prettier@2.8.8)
|
||||
ember-template-lint:
|
||||
specifier: 6.0.0
|
||||
version: 6.0.0
|
||||
|
@ -27,130 +27,122 @@ packages:
|
|||
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
|
||||
engines: {node: '>=6.0.0'}
|
||||
|
||||
'@babel/code-frame@7.25.7':
|
||||
resolution: {integrity: sha512-0xZJFNE5XMpENsgfHYTw8FbX4kv53mFLn2i3XPoq69LyhYSCBJtitaHx9QnsVTrsogI4Z3+HtEfZ2/GFPOtf5g==}
|
||||
'@babel/code-frame@7.26.2':
|
||||
resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
|
||||
'@babel/compat-data@7.25.8':
|
||||
resolution: {integrity: sha512-ZsysZyXY4Tlx+Q53XdnOFmqwfB9QDTHYxaZYajWRoBLuLEAwI2UIbtxOjWh/cFaa9IKUlcB+DDuoskLuKu56JA==}
|
||||
'@babel/compat-data@7.26.2':
|
||||
resolution: {integrity: sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
|
||||
'@babel/core@7.25.8':
|
||||
resolution: {integrity: sha512-Oixnb+DzmRT30qu9d3tJSQkxuygWm32DFykT4bRoORPa9hZ/L4KhVB/XiRm6KG+roIEM7DBQlmg27kw2HZkdZg==}
|
||||
'@babel/core@7.26.0':
|
||||
resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
|
||||
'@babel/eslint-parser@7.25.8':
|
||||
resolution: {integrity: sha512-Po3VLMN7fJtv0nsOjBDSbO1J71UhzShE9MuOSkWEV9IZQXzhZklYtzKZ8ZD/Ij3a0JBv1AG3Ny2L3jvAHQVOGg==}
|
||||
'@babel/eslint-parser@7.25.9':
|
||||
resolution: {integrity: sha512-5UXfgpK0j0Xr/xIdgdLEhOFxaDZ0bRPWJJchRpqOSur/3rZoPbqqki5mm0p4NE2cs28krBEiSM2MB7//afRSQQ==}
|
||||
engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.11.0
|
||||
eslint: ^7.5.0 || ^8.0.0 || ^9.0.0
|
||||
|
||||
'@babel/generator@7.25.7':
|
||||
resolution: {integrity: sha512-5Dqpl5fyV9pIAD62yK9P7fcA768uVPUyrQmqpqstHWgMma4feF1x/oFysBCVZLY5wJ2GkMUCdsNDnGZrPoR6rA==}
|
||||
'@babel/generator@7.26.2':
|
||||
resolution: {integrity: sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
|
||||
'@babel/helper-annotate-as-pure@7.25.7':
|
||||
resolution: {integrity: sha512-4xwU8StnqnlIhhioZf1tqnVWeQ9pvH/ujS8hRfw/WOza+/a+1qv69BWNy+oY231maTCWgKWhfBU7kDpsds6zAA==}
|
||||
'@babel/helper-annotate-as-pure@7.25.9':
|
||||
resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
|
||||
'@babel/helper-compilation-targets@7.25.7':
|
||||
resolution: {integrity: sha512-DniTEax0sv6isaw6qSQSfV4gVRNtw2rte8HHM45t9ZR0xILaufBRNkpMifCRiAPyvL4ACD6v0gfCwCmtOQaV4A==}
|
||||
'@babel/helper-compilation-targets@7.25.9':
|
||||
resolution: {integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
|
||||
'@babel/helper-create-class-features-plugin@7.25.7':
|
||||
resolution: {integrity: sha512-bD4WQhbkx80mAyj/WCm4ZHcF4rDxkoLFO6ph8/5/mQ3z4vAzltQXAmbc7GvVJx5H+lk5Mi5EmbTeox5nMGCsbw==}
|
||||
'@babel/helper-create-class-features-plugin@7.25.9':
|
||||
resolution: {integrity: sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0
|
||||
|
||||
'@babel/helper-member-expression-to-functions@7.25.7':
|
||||
resolution: {integrity: sha512-O31Ssjd5K6lPbTX9AAYpSKrZmLeagt9uwschJd+Ixo6QiRyfpvgtVQp8qrDR9UNFjZ8+DO34ZkdrN+BnPXemeA==}
|
||||
'@babel/helper-member-expression-to-functions@7.25.9':
|
||||
resolution: {integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
|
||||
'@babel/helper-module-imports@7.25.7':
|
||||
resolution: {integrity: sha512-o0xCgpNmRohmnoWKQ0Ij8IdddjyBFE4T2kagL/x6M3+4zUgc+4qTOUBoNe4XxDskt1HPKO007ZPiMgLDq2s7Kw==}
|
||||
'@babel/helper-module-imports@7.25.9':
|
||||
resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
|
||||
'@babel/helper-module-transforms@7.25.7':
|
||||
resolution: {integrity: sha512-k/6f8dKG3yDz/qCwSM+RKovjMix563SLxQFo0UhRNo239SP6n9u5/eLtKD6EAjwta2JHJ49CsD8pms2HdNiMMQ==}
|
||||
'@babel/helper-module-transforms@7.26.0':
|
||||
resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0
|
||||
|
||||
'@babel/helper-optimise-call-expression@7.25.7':
|
||||
resolution: {integrity: sha512-VAwcwuYhv/AT+Vfr28c9y6SHzTan1ryqrydSTFGjU0uDJHw3uZ+PduI8plCLkRsDnqK2DMEDmwrOQRsK/Ykjng==}
|
||||
'@babel/helper-optimise-call-expression@7.25.9':
|
||||
resolution: {integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
|
||||
'@babel/helper-plugin-utils@7.25.7':
|
||||
resolution: {integrity: sha512-eaPZai0PiqCi09pPs3pAFfl/zYgGaE6IdXtYvmf0qlcDTd3WCtO7JWCcRd64e0EQrcYgiHibEZnOGsSY4QSgaw==}
|
||||
'@babel/helper-plugin-utils@7.25.9':
|
||||
resolution: {integrity: sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
|
||||
'@babel/helper-replace-supers@7.25.7':
|
||||
resolution: {integrity: sha512-iy8JhqlUW9PtZkd4pHM96v6BdJ66Ba9yWSE4z0W4TvSZwLBPkyDsiIU3ENe4SmrzRBs76F7rQXTy1lYC49n6Lw==}
|
||||
'@babel/helper-replace-supers@7.25.9':
|
||||
resolution: {integrity: sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0
|
||||
|
||||
'@babel/helper-simple-access@7.25.7':
|
||||
resolution: {integrity: sha512-FPGAkJmyoChQeM+ruBGIDyrT2tKfZJO8NcxdC+CWNJi7N8/rZpSxK7yvBJ5O/nF1gfu5KzN7VKG3YVSLFfRSxQ==}
|
||||
'@babel/helper-skip-transparent-expression-wrappers@7.25.9':
|
||||
resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
|
||||
'@babel/helper-skip-transparent-expression-wrappers@7.25.7':
|
||||
resolution: {integrity: sha512-pPbNbchZBkPMD50K0p3JGcFMNLVUCuU/ABybm/PGNj4JiHrpmNyqqCphBk4i19xXtNV0JhldQJJtbSW5aUvbyA==}
|
||||
'@babel/helper-string-parser@7.25.9':
|
||||
resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
|
||||
'@babel/helper-string-parser@7.25.7':
|
||||
resolution: {integrity: sha512-CbkjYdsJNHFk8uqpEkpCvRs3YRp9tY6FmFY7wLMSYuGYkrdUi7r2lc4/wqsvlHoMznX3WJ9IP8giGPq68T/Y6g==}
|
||||
'@babel/helper-validator-identifier@7.25.9':
|
||||
resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
|
||||
'@babel/helper-validator-identifier@7.25.7':
|
||||
resolution: {integrity: sha512-AM6TzwYqGChO45oiuPqwL2t20/HdMC1rTPAesnBCgPCSF1x3oN9MVUwQV2iyz4xqWrctwK5RNC8LV22kaQCNYg==}
|
||||
'@babel/helper-validator-option@7.25.9':
|
||||
resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
|
||||
'@babel/helper-validator-option@7.25.7':
|
||||
resolution: {integrity: sha512-ytbPLsm+GjArDYXJ8Ydr1c/KJuutjF2besPNbIZnZ6MKUxi/uTA22t2ymmA4WFjZFpjiAMO0xuuJPqK2nvDVfQ==}
|
||||
'@babel/helpers@7.26.0':
|
||||
resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
|
||||
'@babel/helpers@7.25.7':
|
||||
resolution: {integrity: sha512-Sv6pASx7Esm38KQpF/U/OXLwPPrdGHNKoeblRxgZRLXnAtnkEe4ptJPDtAZM7fBLadbc1Q07kQpSiGQ0Jg6tRA==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
|
||||
'@babel/highlight@7.25.7':
|
||||
resolution: {integrity: sha512-iYyACpW3iW8Fw+ZybQK+drQre+ns/tKpXbNESfrhNnPLIklLbXr7MYJ6gPEd0iETGLOK+SxMjVvKb/ffmk+FEw==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
|
||||
'@babel/parser@7.25.8':
|
||||
resolution: {integrity: sha512-HcttkxzdPucv3nNFmfOOMfFf64KgdJVqm1KaCm25dPGMLElo9nsLvXeJECQg8UzPuBGLyTSA0ZzqCtDSzKTEoQ==}
|
||||
'@babel/parser@7.26.2':
|
||||
resolution: {integrity: sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==}
|
||||
engines: {node: '>=6.0.0'}
|
||||
hasBin: true
|
||||
|
||||
'@babel/plugin-proposal-decorators@7.25.7':
|
||||
resolution: {integrity: sha512-q1mqqqH0e1lhmsEQHV5U8OmdueBC2y0RFr2oUzZoFRtN3MvPmt2fsFRcNQAoGLTSNdHBFUYGnlgcRFhkBbKjPw==}
|
||||
'@babel/plugin-proposal-decorators@7.25.9':
|
||||
resolution: {integrity: sha512-smkNLL/O1ezy9Nhy4CNosc4Va+1wo5w4gzSZeLe6y6dM4mmHfYOCPolXQPHQxonZCF+ZyebxN9vqOolkYrSn5g==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
|
||||
'@babel/plugin-syntax-decorators@7.25.7':
|
||||
resolution: {integrity: sha512-oXduHo642ZhstLVYTe2z2GSJIruU0c/W3/Ghr6A5yGMsVrvdnxO1z+3pbTcT7f3/Clnt+1z8D/w1r1f1SHaCHw==}
|
||||
'@babel/plugin-syntax-decorators@7.25.9':
|
||||
resolution: {integrity: sha512-ryzI0McXUPJnRCvMo4lumIKZUzhYUO/ScI+Mz4YVaTLt04DHNSjEUjKVvbzQjZFLuod/cYEc07mJWhzl6v4DPg==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
|
||||
'@babel/template@7.25.7':
|
||||
resolution: {integrity: sha512-wRwtAgI3bAS+JGU2upWNL9lSlDcRCqD05BZ1n3X2ONLH1WilFP6O1otQjeMK/1g0pvYcXC7b/qVUB1keofjtZA==}
|
||||
'@babel/template@7.25.9':
|
||||
resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
|
||||
'@babel/traverse@7.25.7':
|
||||
resolution: {integrity: sha512-jatJPT1Zjqvh/1FyJs6qAHL+Dzb7sTb+xr7Q+gM1b+1oBsMsQQ4FkVKb6dFlJvLlVssqkRzV05Jzervt9yhnzg==}
|
||||
'@babel/traverse@7.25.9':
|
||||
resolution: {integrity: sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
|
||||
'@babel/types@7.25.8':
|
||||
resolution: {integrity: sha512-JWtuCu8VQsMladxVz/P4HzHUGCAwpuqacmowgXFs5XjxIgKuNjnLokQzuVjlTvIzODaDmpjT3oxcC48vyk9EWg==}
|
||||
'@babel/types@7.26.0':
|
||||
resolution: {integrity: sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
|
||||
'@discourse/lint-configs@2.0.1':
|
||||
resolution: {integrity: sha512-4AKSzX4EYIEAtTCj+1+VKx0ziQ5XbYJZuQQ8cxhE7/amRloWyuM3YuDpa5x1r2zaLRbfEHXjlveVk+obMRLPqw==}
|
||||
'@discourse/lint-configs@2.2.0':
|
||||
resolution: {integrity: sha512-lj13X+3/DRV2ZBQe3eJvxOO23e87DPfUSSqm0UPfP04VJ7141BHwWn9VVF0rOr+bMe2eiirsqlg2AbMn7gMb+A==}
|
||||
peerDependencies:
|
||||
ember-template-lint: 6.0.0
|
||||
eslint: ^9.14.0
|
||||
|
@ -162,8 +154,8 @@ packages:
|
|||
'@ember/edition-utils@1.2.0':
|
||||
resolution: {integrity: sha512-VmVq/8saCaPdesQmftPqbFtxJWrzxNGSQ+e8x8LLe3Hjm36pJ04Q8LeORGZkAeOhldoUX9seLGmSaHeXkIqoog==}
|
||||
|
||||
'@eslint-community/eslint-utils@4.4.0':
|
||||
resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
|
||||
'@eslint-community/eslint-utils@4.4.1':
|
||||
resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==}
|
||||
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
||||
peerDependencies:
|
||||
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
|
||||
|
@ -296,6 +288,12 @@ packages:
|
|||
resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==}
|
||||
engines: {node: '>=18'}
|
||||
|
||||
'@stylistic/eslint-plugin-js@2.11.0':
|
||||
resolution: {integrity: sha512-btchD0P3iij6cIk5RR5QMdEhtCCV0+L6cNheGhGCd//jaHILZMTi/EOqgEDAf1s4ZoViyExoToM+S2Iwa3U9DA==}
|
||||
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||
peerDependencies:
|
||||
eslint: '>=8.40.0'
|
||||
|
||||
'@types/eslint@8.56.12':
|
||||
resolution: {integrity: sha512-03ruubjWyOHlmljCVoxSuNDdmfZDzsrrz0P2LeJsOXr+ZwFQ+0yQIwNCwt/GYhV7Z31fgtXJTAEs+FYlEL851g==}
|
||||
|
||||
|
@ -470,8 +468,8 @@ packages:
|
|||
resolution: {integrity: sha512-NXfi+Vas24n3Ivo21GvENTI55qxKu7OwKRnCLWXld8MiLiQKQlWIq28eoARaFj0lTUFwUa4jKZeA7fW9PiWQeg==}
|
||||
engines: {node: 8.* || >= 10.*}
|
||||
|
||||
browserslist@4.24.0:
|
||||
resolution: {integrity: sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==}
|
||||
browserslist@4.24.2:
|
||||
resolution: {integrity: sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==}
|
||||
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
||||
hasBin: true
|
||||
|
||||
|
@ -490,8 +488,8 @@ packages:
|
|||
resolution: {integrity: sha512-RbsNrFyhwkx+6psk/0fK/Q9orOUr9VMxohGd8vTa4djf4TGLfblBgUfqZChrZuW0Q+mz2eBPFLusw9Jfukzmhg==}
|
||||
hasBin: true
|
||||
|
||||
caniuse-lite@1.0.30001668:
|
||||
resolution: {integrity: sha512-nWLrdxqCdblixUO+27JtGJJE/txpJlyUy5YN1u53wLZkP0emYCo5zgS6QYft7VUYR42LGgi/S5hdLZTrnyIddw==}
|
||||
caniuse-lite@1.0.30001680:
|
||||
resolution: {integrity: sha512-rPQy70G6AGUMnbwS1z6Xg+RkHYPAi18ihs47GH0jcxIG7wArmPgY3XbS2sRdBbxJljp3thdT8BIqv9ccCypiPA==}
|
||||
|
||||
chalk@2.4.2:
|
||||
resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
|
||||
|
@ -505,8 +503,8 @@ packages:
|
|||
resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==}
|
||||
engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
|
||||
|
||||
ci-info@4.0.0:
|
||||
resolution: {integrity: sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==}
|
||||
ci-info@4.1.0:
|
||||
resolution: {integrity: sha512-HutrvTNsF48wnxkzERIXOe5/mlcfFcbfCmwcg6CJnizbSue78AbDt+1cgl26zwn61WFxhcPykPfZrbqjGmBb4A==}
|
||||
engines: {node: '>=8'}
|
||||
|
||||
clean-up-path@1.0.0:
|
||||
|
@ -552,14 +550,14 @@ packages:
|
|||
concat-map@0.0.1:
|
||||
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
|
||||
|
||||
content-tag@2.0.2:
|
||||
resolution: {integrity: sha512-qHRyTp02dgzRK2tsCFxZ1H289bZOuSLNpupr6prvnSFq4SFPmNlBKbbE5PCMb+8+Z1a1z+yCVtXvQIGUCCa3lQ==}
|
||||
content-tag@2.0.3:
|
||||
resolution: {integrity: sha512-htLIdtfhhKW2fHlFLnZH7GFzHSdSpHhDLrWVswkNiiPMZ5uXq5JfrGboQKFhNQuAAFF8VNB2EYUj3MsdJrKKpg==}
|
||||
|
||||
convert-source-map@2.0.0:
|
||||
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
|
||||
|
||||
core-js@3.38.1:
|
||||
resolution: {integrity: sha512-OP35aUorbU3Zvlx7pjsFdu1rGNnD4pgw/CWoYzRY3t2EzoVT7shKHY1dlAy3f41cGIO7ZDPQimhGFTlEYkG/Hw==}
|
||||
core-js@3.39.0:
|
||||
resolution: {integrity: sha512-raM0ew0/jJUqkJ0E6e8UDtl+y/7ktFivgWvqw8dNSQeNWoSDLvQ1H/RN3aPXB9tBd4/FhyR4RDPGhsNIMsAn7g==}
|
||||
|
||||
cross-spawn@7.0.6:
|
||||
resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
|
||||
|
@ -630,8 +628,8 @@ packages:
|
|||
resolution: {integrity: sha512-ptGvkwTvGdGfC0hfhKg0MT+TRLRKGtUiWGBInxOm5pz7ssADezahjCUaYuZ8Dr+C05FW0AECIIPt4WBxVINEhA==}
|
||||
engines: {node: '>=0.8'}
|
||||
|
||||
electron-to-chromium@1.5.36:
|
||||
resolution: {integrity: sha512-HYTX8tKge/VNp6FGO+f/uVDmUkq+cEfcxYhKf15Akc4M5yxt5YmorwlAitKWjWhWQnKcDRBAQKXkhqqXMqcrjw==}
|
||||
electron-to-chromium@1.5.63:
|
||||
resolution: {integrity: sha512-ddeXKuY9BHo/mw145axlyWjlJ1UBt4WK3AlvkT7W2AbqfRQoacVoRUCF6wL3uIx/8wT9oLKXzI+rFqHHscByaA==}
|
||||
|
||||
ember-cli-babel-plugin-helpers@1.1.1:
|
||||
resolution: {integrity: sha512-sKvOiPNHr5F/60NLd7SFzMpYPte/nnGkq/tMIfXejfKHIhaiIkYFqX8Z9UFTKWLLn+V7NOaby6niNPZUdvKCRw==}
|
||||
|
@ -682,8 +680,8 @@ packages:
|
|||
resolution: {integrity: sha512-e64Qj9+4aZzjzzFpZC7p5kmm/ccCrbLhAJplhsDXQFs87XTsXwOpH4s1Io2s90Tau/8r2j9f4l/thhDevRjzxw==}
|
||||
engines: {node: '>=0.8'}
|
||||
|
||||
es-abstract@1.23.3:
|
||||
resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==}
|
||||
es-abstract@1.23.5:
|
||||
resolution: {integrity: sha512-vlmniQ0WNPwXqA0BnmwV3Ng7HxiGlh6r5U6JcTMNx8OilcAGqVJBHJcPjqOMaczU9fRuRK5Px2BdVyPRnKMMVQ==}
|
||||
engines: {node: '>= 0.4'}
|
||||
|
||||
es-define-property@1.0.0:
|
||||
|
@ -750,8 +748,8 @@ packages:
|
|||
peerDependencies:
|
||||
eslint: '>=5.0.0'
|
||||
|
||||
eslint-plugin-sort-class-members@1.20.0:
|
||||
resolution: {integrity: sha512-xNaik4GQ/pRwd1soIVI28HEXZbrWoLR5krau2+E8YcHj7N09UviPg5mYhf/rELG29bIFJdXDOFJazN90+luMOw==}
|
||||
eslint-plugin-sort-class-members@1.21.0:
|
||||
resolution: {integrity: sha512-QKV4jvGMu/ge1l4s1TUBC6rqqV/fbABWY7q2EeNpV3FRikoX6KuLhiNvS8UuMi+EERe0hKGrNU9e6ukFDxNnZQ==}
|
||||
engines: {node: '>=4.0.0'}
|
||||
peerDependencies:
|
||||
eslint: '>=0.8.0'
|
||||
|
@ -859,8 +857,8 @@ packages:
|
|||
resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
|
||||
engines: {node: '>=16'}
|
||||
|
||||
flatted@3.3.1:
|
||||
resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
|
||||
flatted@3.3.2:
|
||||
resolution: {integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==}
|
||||
|
||||
for-each@0.3.3:
|
||||
resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
|
||||
|
@ -948,8 +946,8 @@ packages:
|
|||
resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
|
||||
engines: {node: '>=18'}
|
||||
|
||||
globals@15.11.0:
|
||||
resolution: {integrity: sha512-yeyNSjdbyVaWurlwCpcA6XNBrHTMIeDdj0/hnvX/OLJ9ekOXYbLsLinH/MucQyGvNnXhidTdNhTtJaffL2sMfw==}
|
||||
globals@15.12.0:
|
||||
resolution: {integrity: sha512-1+gLErljJFhbOVyaetcwJiJ4+eLe45S2E7P5UiZ9xGfeq3ATQf5DOv9G7MH3gGbKQLkzmNh2DxfZwLdw+j6oTQ==}
|
||||
engines: {node: '>=18'}
|
||||
|
||||
globalthis@1.0.4:
|
||||
|
@ -1286,8 +1284,8 @@ packages:
|
|||
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
|
||||
object-inspect@1.13.2:
|
||||
resolution: {integrity: sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==}
|
||||
object-inspect@1.13.3:
|
||||
resolution: {integrity: sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==}
|
||||
engines: {node: '>= 0.4'}
|
||||
|
||||
object-keys@1.1.1:
|
||||
|
@ -1378,8 +1376,8 @@ packages:
|
|||
resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==}
|
||||
engines: {node: '>=12'}
|
||||
|
||||
picocolors@1.1.0:
|
||||
resolution: {integrity: sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==}
|
||||
picocolors@1.1.1:
|
||||
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
|
||||
|
||||
picomatch@2.3.1:
|
||||
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
|
||||
|
@ -1627,10 +1625,6 @@ packages:
|
|||
resolution: {integrity: sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==}
|
||||
engines: {node: '>=14.14'}
|
||||
|
||||
to-fast-properties@2.0.0:
|
||||
resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
|
||||
engines: {node: '>=4'}
|
||||
|
||||
to-regex-range@5.0.1:
|
||||
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
|
||||
engines: {node: '>=8.0'}
|
||||
|
@ -1641,8 +1635,8 @@ packages:
|
|||
ts-replace-all@1.0.0:
|
||||
resolution: {integrity: sha512-6uBtdkw3jHXkPtx/e9xB/5vcngMm17CyJYsS2YZeQ+9FdRnt6Ev5g931Sg2p+dxbtMGoCm13m3ax/obicTZIkQ==}
|
||||
|
||||
tslib@2.7.0:
|
||||
resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==}
|
||||
tslib@2.8.1:
|
||||
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
|
||||
|
||||
type-check@0.4.0:
|
||||
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
|
||||
|
@ -1781,25 +1775,26 @@ snapshots:
|
|||
'@jridgewell/gen-mapping': 0.3.5
|
||||
'@jridgewell/trace-mapping': 0.3.25
|
||||
|
||||
'@babel/code-frame@7.25.7':
|
||||
'@babel/code-frame@7.26.2':
|
||||
dependencies:
|
||||
'@babel/highlight': 7.25.7
|
||||
picocolors: 1.1.0
|
||||
'@babel/helper-validator-identifier': 7.25.9
|
||||
js-tokens: 4.0.0
|
||||
picocolors: 1.1.1
|
||||
|
||||
'@babel/compat-data@7.25.8': {}
|
||||
'@babel/compat-data@7.26.2': {}
|
||||
|
||||
'@babel/core@7.25.8':
|
||||
'@babel/core@7.26.0':
|
||||
dependencies:
|
||||
'@ampproject/remapping': 2.3.0
|
||||
'@babel/code-frame': 7.25.7
|
||||
'@babel/generator': 7.25.7
|
||||
'@babel/helper-compilation-targets': 7.25.7
|
||||
'@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.8)
|
||||
'@babel/helpers': 7.25.7
|
||||
'@babel/parser': 7.25.8
|
||||
'@babel/template': 7.25.7
|
||||
'@babel/traverse': 7.25.7
|
||||
'@babel/types': 7.25.8
|
||||
'@babel/code-frame': 7.26.2
|
||||
'@babel/generator': 7.26.2
|
||||
'@babel/helper-compilation-targets': 7.25.9
|
||||
'@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
|
||||
'@babel/helpers': 7.26.0
|
||||
'@babel/parser': 7.26.2
|
||||
'@babel/template': 7.25.9
|
||||
'@babel/traverse': 7.25.9
|
||||
'@babel/types': 7.26.0
|
||||
convert-source-map: 2.0.0
|
||||
debug: 4.3.7
|
||||
gensync: 1.0.0-beta.2
|
||||
|
@ -1808,172 +1803,158 @@ snapshots:
|
|||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
'@babel/eslint-parser@7.25.8(@babel/core@7.25.8)(eslint@9.14.0)':
|
||||
'@babel/eslint-parser@7.25.9(@babel/core@7.26.0)(eslint@9.14.0)':
|
||||
dependencies:
|
||||
'@babel/core': 7.25.8
|
||||
'@babel/core': 7.26.0
|
||||
'@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1
|
||||
eslint: 9.14.0
|
||||
eslint-visitor-keys: 2.1.0
|
||||
semver: 6.3.1
|
||||
|
||||
'@babel/generator@7.25.7':
|
||||
'@babel/generator@7.26.2':
|
||||
dependencies:
|
||||
'@babel/types': 7.25.8
|
||||
'@babel/parser': 7.26.2
|
||||
'@babel/types': 7.26.0
|
||||
'@jridgewell/gen-mapping': 0.3.5
|
||||
'@jridgewell/trace-mapping': 0.3.25
|
||||
jsesc: 3.0.2
|
||||
|
||||
'@babel/helper-annotate-as-pure@7.25.7':
|
||||
'@babel/helper-annotate-as-pure@7.25.9':
|
||||
dependencies:
|
||||
'@babel/types': 7.25.8
|
||||
'@babel/types': 7.26.0
|
||||
|
||||
'@babel/helper-compilation-targets@7.25.7':
|
||||
'@babel/helper-compilation-targets@7.25.9':
|
||||
dependencies:
|
||||
'@babel/compat-data': 7.25.8
|
||||
'@babel/helper-validator-option': 7.25.7
|
||||
browserslist: 4.24.0
|
||||
'@babel/compat-data': 7.26.2
|
||||
'@babel/helper-validator-option': 7.25.9
|
||||
browserslist: 4.24.2
|
||||
lru-cache: 5.1.1
|
||||
semver: 6.3.1
|
||||
|
||||
'@babel/helper-create-class-features-plugin@7.25.7(@babel/core@7.25.8)':
|
||||
'@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.26.0)':
|
||||
dependencies:
|
||||
'@babel/core': 7.25.8
|
||||
'@babel/helper-annotate-as-pure': 7.25.7
|
||||
'@babel/helper-member-expression-to-functions': 7.25.7
|
||||
'@babel/helper-optimise-call-expression': 7.25.7
|
||||
'@babel/helper-replace-supers': 7.25.7(@babel/core@7.25.8)
|
||||
'@babel/helper-skip-transparent-expression-wrappers': 7.25.7
|
||||
'@babel/traverse': 7.25.7
|
||||
'@babel/core': 7.26.0
|
||||
'@babel/helper-annotate-as-pure': 7.25.9
|
||||
'@babel/helper-member-expression-to-functions': 7.25.9
|
||||
'@babel/helper-optimise-call-expression': 7.25.9
|
||||
'@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0)
|
||||
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
|
||||
'@babel/traverse': 7.25.9
|
||||
semver: 6.3.1
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
'@babel/helper-member-expression-to-functions@7.25.7':
|
||||
'@babel/helper-member-expression-to-functions@7.25.9':
|
||||
dependencies:
|
||||
'@babel/traverse': 7.25.7
|
||||
'@babel/types': 7.25.8
|
||||
'@babel/traverse': 7.25.9
|
||||
'@babel/types': 7.26.0
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
'@babel/helper-module-imports@7.25.7':
|
||||
'@babel/helper-module-imports@7.25.9':
|
||||
dependencies:
|
||||
'@babel/traverse': 7.25.7
|
||||
'@babel/types': 7.25.8
|
||||
'@babel/traverse': 7.25.9
|
||||
'@babel/types': 7.26.0
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
'@babel/helper-module-transforms@7.25.7(@babel/core@7.25.8)':
|
||||
'@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0)':
|
||||
dependencies:
|
||||
'@babel/core': 7.25.8
|
||||
'@babel/helper-module-imports': 7.25.7
|
||||
'@babel/helper-simple-access': 7.25.7
|
||||
'@babel/helper-validator-identifier': 7.25.7
|
||||
'@babel/traverse': 7.25.7
|
||||
'@babel/core': 7.26.0
|
||||
'@babel/helper-module-imports': 7.25.9
|
||||
'@babel/helper-validator-identifier': 7.25.9
|
||||
'@babel/traverse': 7.25.9
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
'@babel/helper-optimise-call-expression@7.25.7':
|
||||
'@babel/helper-optimise-call-expression@7.25.9':
|
||||
dependencies:
|
||||
'@babel/types': 7.25.8
|
||||
'@babel/types': 7.26.0
|
||||
|
||||
'@babel/helper-plugin-utils@7.25.7': {}
|
||||
'@babel/helper-plugin-utils@7.25.9': {}
|
||||
|
||||
'@babel/helper-replace-supers@7.25.7(@babel/core@7.25.8)':
|
||||
'@babel/helper-replace-supers@7.25.9(@babel/core@7.26.0)':
|
||||
dependencies:
|
||||
'@babel/core': 7.25.8
|
||||
'@babel/helper-member-expression-to-functions': 7.25.7
|
||||
'@babel/helper-optimise-call-expression': 7.25.7
|
||||
'@babel/traverse': 7.25.7
|
||||
'@babel/core': 7.26.0
|
||||
'@babel/helper-member-expression-to-functions': 7.25.9
|
||||
'@babel/helper-optimise-call-expression': 7.25.9
|
||||
'@babel/traverse': 7.25.9
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
'@babel/helper-simple-access@7.25.7':
|
||||
'@babel/helper-skip-transparent-expression-wrappers@7.25.9':
|
||||
dependencies:
|
||||
'@babel/traverse': 7.25.7
|
||||
'@babel/types': 7.25.8
|
||||
'@babel/traverse': 7.25.9
|
||||
'@babel/types': 7.26.0
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
'@babel/helper-skip-transparent-expression-wrappers@7.25.7':
|
||||
'@babel/helper-string-parser@7.25.9': {}
|
||||
|
||||
'@babel/helper-validator-identifier@7.25.9': {}
|
||||
|
||||
'@babel/helper-validator-option@7.25.9': {}
|
||||
|
||||
'@babel/helpers@7.26.0':
|
||||
dependencies:
|
||||
'@babel/traverse': 7.25.7
|
||||
'@babel/types': 7.25.8
|
||||
'@babel/template': 7.25.9
|
||||
'@babel/types': 7.26.0
|
||||
|
||||
'@babel/parser@7.26.2':
|
||||
dependencies:
|
||||
'@babel/types': 7.26.0
|
||||
|
||||
'@babel/plugin-proposal-decorators@7.25.9(@babel/core@7.26.0)':
|
||||
dependencies:
|
||||
'@babel/core': 7.26.0
|
||||
'@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
|
||||
'@babel/helper-plugin-utils': 7.25.9
|
||||
'@babel/plugin-syntax-decorators': 7.25.9(@babel/core@7.26.0)
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
'@babel/helper-string-parser@7.25.7': {}
|
||||
|
||||
'@babel/helper-validator-identifier@7.25.7': {}
|
||||
|
||||
'@babel/helper-validator-option@7.25.7': {}
|
||||
|
||||
'@babel/helpers@7.25.7':
|
||||
'@babel/plugin-syntax-decorators@7.25.9(@babel/core@7.26.0)':
|
||||
dependencies:
|
||||
'@babel/template': 7.25.7
|
||||
'@babel/types': 7.25.8
|
||||
'@babel/core': 7.26.0
|
||||
'@babel/helper-plugin-utils': 7.25.9
|
||||
|
||||
'@babel/highlight@7.25.7':
|
||||
'@babel/template@7.25.9':
|
||||
dependencies:
|
||||
'@babel/helper-validator-identifier': 7.25.7
|
||||
chalk: 2.4.2
|
||||
js-tokens: 4.0.0
|
||||
picocolors: 1.1.0
|
||||
'@babel/code-frame': 7.26.2
|
||||
'@babel/parser': 7.26.2
|
||||
'@babel/types': 7.26.0
|
||||
|
||||
'@babel/parser@7.25.8':
|
||||
'@babel/traverse@7.25.9':
|
||||
dependencies:
|
||||
'@babel/types': 7.25.8
|
||||
|
||||
'@babel/plugin-proposal-decorators@7.25.7(@babel/core@7.25.8)':
|
||||
dependencies:
|
||||
'@babel/core': 7.25.8
|
||||
'@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.8)
|
||||
'@babel/helper-plugin-utils': 7.25.7
|
||||
'@babel/plugin-syntax-decorators': 7.25.7(@babel/core@7.25.8)
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
'@babel/plugin-syntax-decorators@7.25.7(@babel/core@7.25.8)':
|
||||
dependencies:
|
||||
'@babel/core': 7.25.8
|
||||
'@babel/helper-plugin-utils': 7.25.7
|
||||
|
||||
'@babel/template@7.25.7':
|
||||
dependencies:
|
||||
'@babel/code-frame': 7.25.7
|
||||
'@babel/parser': 7.25.8
|
||||
'@babel/types': 7.25.8
|
||||
|
||||
'@babel/traverse@7.25.7':
|
||||
dependencies:
|
||||
'@babel/code-frame': 7.25.7
|
||||
'@babel/generator': 7.25.7
|
||||
'@babel/parser': 7.25.8
|
||||
'@babel/template': 7.25.7
|
||||
'@babel/types': 7.25.8
|
||||
'@babel/code-frame': 7.26.2
|
||||
'@babel/generator': 7.26.2
|
||||
'@babel/parser': 7.26.2
|
||||
'@babel/template': 7.25.9
|
||||
'@babel/types': 7.26.0
|
||||
debug: 4.3.7
|
||||
globals: 11.12.0
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
'@babel/types@7.25.8':
|
||||
'@babel/types@7.26.0':
|
||||
dependencies:
|
||||
'@babel/helper-string-parser': 7.25.7
|
||||
'@babel/helper-validator-identifier': 7.25.7
|
||||
to-fast-properties: 2.0.0
|
||||
'@babel/helper-string-parser': 7.25.9
|
||||
'@babel/helper-validator-identifier': 7.25.9
|
||||
|
||||
'@discourse/lint-configs@2.0.1(ember-template-lint@6.0.0)(eslint@9.14.0)(prettier@2.8.8)':
|
||||
'@discourse/lint-configs@2.2.0(ember-template-lint@6.0.0)(eslint@9.14.0)(prettier@2.8.8)':
|
||||
dependencies:
|
||||
'@babel/core': 7.25.8
|
||||
'@babel/eslint-parser': 7.25.8(@babel/core@7.25.8)(eslint@9.14.0)
|
||||
'@babel/plugin-proposal-decorators': 7.25.7(@babel/core@7.25.8)
|
||||
'@babel/core': 7.26.0
|
||||
'@babel/eslint-parser': 7.25.9(@babel/core@7.26.0)(eslint@9.14.0)
|
||||
'@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.26.0)
|
||||
'@stylistic/eslint-plugin-js': 2.11.0(eslint@9.14.0)
|
||||
ember-template-lint: 6.0.0
|
||||
eslint: 9.14.0
|
||||
eslint-plugin-decorator-position: 6.0.0(@babel/eslint-parser@7.25.8(@babel/core@7.25.8)(eslint@9.14.0))(eslint@9.14.0)
|
||||
eslint-plugin-ember: 12.3.1(@babel/core@7.25.8)(eslint@9.14.0)
|
||||
eslint-plugin-decorator-position: 6.0.0(@babel/eslint-parser@7.25.9(@babel/core@7.26.0)(eslint@9.14.0))(eslint@9.14.0)
|
||||
eslint-plugin-ember: 12.3.1(@babel/core@7.26.0)(eslint@9.14.0)
|
||||
eslint-plugin-qunit: 8.1.2(eslint@9.14.0)
|
||||
eslint-plugin-simple-import-sort: 12.1.1(eslint@9.14.0)
|
||||
eslint-plugin-sort-class-members: 1.20.0(eslint@9.14.0)
|
||||
globals: 15.11.0
|
||||
eslint-plugin-sort-class-members: 1.21.0(eslint@9.14.0)
|
||||
globals: 15.12.0
|
||||
prettier: 2.8.8
|
||||
prettier-plugin-ember-template-tag: 0.3.2
|
||||
typescript: 5.6.3
|
||||
|
@ -1985,7 +1966,7 @@ snapshots:
|
|||
|
||||
'@ember/edition-utils@1.2.0': {}
|
||||
|
||||
'@eslint-community/eslint-utils@4.4.0(eslint@9.14.0)':
|
||||
'@eslint-community/eslint-utils@4.4.1(eslint@9.14.0)':
|
||||
dependencies:
|
||||
eslint: 9.14.0
|
||||
eslint-visitor-keys: 3.4.3
|
||||
|
@ -2121,7 +2102,7 @@ snapshots:
|
|||
fs-extra: 9.1.0
|
||||
proper-lockfile: 4.1.2
|
||||
slash: 3.0.0
|
||||
tslib: 2.7.0
|
||||
tslib: 2.8.1
|
||||
upath: 2.0.1
|
||||
|
||||
'@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1':
|
||||
|
@ -2144,6 +2125,12 @@ snapshots:
|
|||
|
||||
'@sindresorhus/merge-streams@2.3.0': {}
|
||||
|
||||
'@stylistic/eslint-plugin-js@2.11.0(eslint@9.14.0)':
|
||||
dependencies:
|
||||
eslint: 9.14.0
|
||||
eslint-visitor-keys: 4.2.0
|
||||
espree: 10.3.0
|
||||
|
||||
'@types/eslint@8.56.12':
|
||||
dependencies:
|
||||
'@types/estree': 1.0.6
|
||||
|
@ -2198,7 +2185,7 @@ snapshots:
|
|||
array-buffer-byte-length: 1.0.1
|
||||
call-bind: 1.0.7
|
||||
define-properties: 1.2.1
|
||||
es-abstract: 1.23.3
|
||||
es-abstract: 1.23.5
|
||||
es-errors: 1.3.0
|
||||
get-intrinsic: 1.2.4
|
||||
is-array-buffer: 3.0.4
|
||||
|
@ -2422,12 +2409,12 @@ snapshots:
|
|||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
browserslist@4.24.0:
|
||||
browserslist@4.24.2:
|
||||
dependencies:
|
||||
caniuse-lite: 1.0.30001668
|
||||
electron-to-chromium: 1.5.36
|
||||
caniuse-lite: 1.0.30001680
|
||||
electron-to-chromium: 1.5.63
|
||||
node-releases: 2.0.18
|
||||
update-browserslist-db: 1.1.1(browserslist@4.24.0)
|
||||
update-browserslist-db: 1.1.1(browserslist@4.24.2)
|
||||
|
||||
buffer@5.7.1:
|
||||
dependencies:
|
||||
|
@ -2448,7 +2435,7 @@ snapshots:
|
|||
dependencies:
|
||||
tmp: 0.0.28
|
||||
|
||||
caniuse-lite@1.0.30001668: {}
|
||||
caniuse-lite@1.0.30001680: {}
|
||||
|
||||
chalk@2.4.2:
|
||||
dependencies:
|
||||
|
@ -2463,7 +2450,7 @@ snapshots:
|
|||
|
||||
chalk@5.3.0: {}
|
||||
|
||||
ci-info@4.0.0: {}
|
||||
ci-info@4.1.0: {}
|
||||
|
||||
clean-up-path@1.0.0: {}
|
||||
|
||||
|
@ -2499,11 +2486,11 @@ snapshots:
|
|||
|
||||
concat-map@0.0.1: {}
|
||||
|
||||
content-tag@2.0.2: {}
|
||||
content-tag@2.0.3: {}
|
||||
|
||||
convert-source-map@2.0.0: {}
|
||||
|
||||
core-js@3.38.1: {}
|
||||
core-js@3.39.0: {}
|
||||
|
||||
cross-spawn@7.0.6:
|
||||
dependencies:
|
||||
|
@ -2569,7 +2556,7 @@ snapshots:
|
|||
dot-case@3.0.4:
|
||||
dependencies:
|
||||
no-case: 3.0.4
|
||||
tslib: 2.7.0
|
||||
tslib: 2.8.1
|
||||
|
||||
editions@1.3.4: {}
|
||||
|
||||
|
@ -2578,7 +2565,7 @@ snapshots:
|
|||
errlop: 2.2.0
|
||||
semver: 6.3.1
|
||||
|
||||
electron-to-chromium@1.5.36: {}
|
||||
electron-to-chromium@1.5.63: {}
|
||||
|
||||
ember-cli-babel-plugin-helpers@1.1.1: {}
|
||||
|
||||
|
@ -2609,12 +2596,12 @@ snapshots:
|
|||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
ember-eslint-parser@0.5.3(@babel/core@7.25.8)(eslint@9.14.0):
|
||||
ember-eslint-parser@0.5.3(@babel/core@7.26.0)(eslint@9.14.0):
|
||||
dependencies:
|
||||
'@babel/core': 7.25.8
|
||||
'@babel/eslint-parser': 7.25.8(@babel/core@7.25.8)(eslint@9.14.0)
|
||||
'@babel/core': 7.26.0
|
||||
'@babel/eslint-parser': 7.25.9(@babel/core@7.26.0)(eslint@9.14.0)
|
||||
'@glimmer/syntax': 0.92.3
|
||||
content-tag: 2.0.2
|
||||
content-tag: 2.0.3
|
||||
eslint-scope: 7.2.2
|
||||
html-tags: 3.3.1
|
||||
transitivePeerDependencies:
|
||||
|
@ -2641,7 +2628,7 @@ snapshots:
|
|||
'@lint-todo/utils': 13.1.1
|
||||
aria-query: 5.3.2
|
||||
chalk: 5.3.0
|
||||
ci-info: 4.0.0
|
||||
ci-info: 4.1.0
|
||||
date-fns: 3.6.0
|
||||
ember-template-imports: 3.4.2
|
||||
ember-template-recast: 6.1.5
|
||||
|
@ -2681,7 +2668,7 @@ snapshots:
|
|||
|
||||
errlop@2.2.0: {}
|
||||
|
||||
es-abstract@1.23.3:
|
||||
es-abstract@1.23.5:
|
||||
dependencies:
|
||||
array-buffer-byte-length: 1.0.1
|
||||
arraybuffer.prototype.slice: 1.0.3
|
||||
|
@ -2714,7 +2701,7 @@ snapshots:
|
|||
is-string: 1.0.7
|
||||
is-typed-array: 1.1.13
|
||||
is-weakref: 1.0.2
|
||||
object-inspect: 1.13.2
|
||||
object-inspect: 1.13.3
|
||||
object-keys: 1.1.1
|
||||
object.assign: 4.1.5
|
||||
regexp.prototype.flags: 1.5.3
|
||||
|
@ -2760,24 +2747,24 @@ snapshots:
|
|||
|
||||
eslint-formatter-kakoune@1.0.0: {}
|
||||
|
||||
eslint-plugin-decorator-position@6.0.0(@babel/eslint-parser@7.25.8(@babel/core@7.25.8)(eslint@9.14.0))(eslint@9.14.0):
|
||||
eslint-plugin-decorator-position@6.0.0(@babel/eslint-parser@7.25.9(@babel/core@7.26.0)(eslint@9.14.0))(eslint@9.14.0):
|
||||
dependencies:
|
||||
'@babel/core': 7.25.8
|
||||
'@babel/plugin-proposal-decorators': 7.25.7(@babel/core@7.25.8)
|
||||
'@babel/core': 7.26.0
|
||||
'@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.26.0)
|
||||
'@ember-data/rfc395-data': 0.0.4
|
||||
ember-rfc176-data: 0.3.18
|
||||
eslint: 9.14.0
|
||||
snake-case: 3.0.4
|
||||
optionalDependencies:
|
||||
'@babel/eslint-parser': 7.25.8(@babel/core@7.25.8)(eslint@9.14.0)
|
||||
'@babel/eslint-parser': 7.25.9(@babel/core@7.26.0)(eslint@9.14.0)
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
||||
eslint-plugin-ember@12.3.1(@babel/core@7.25.8)(eslint@9.14.0):
|
||||
eslint-plugin-ember@12.3.1(@babel/core@7.26.0)(eslint@9.14.0):
|
||||
dependencies:
|
||||
'@ember-data/rfc395-data': 0.0.4
|
||||
css-tree: 2.3.1
|
||||
ember-eslint-parser: 0.5.3(@babel/core@7.25.8)(eslint@9.14.0)
|
||||
ember-eslint-parser: 0.5.3(@babel/core@7.26.0)(eslint@9.14.0)
|
||||
ember-rfc176-data: 0.3.18
|
||||
eslint: 9.14.0
|
||||
eslint-utils: 3.0.0(eslint@9.14.0)
|
||||
|
@ -2800,7 +2787,7 @@ snapshots:
|
|||
dependencies:
|
||||
eslint: 9.14.0
|
||||
|
||||
eslint-plugin-sort-class-members@1.20.0(eslint@9.14.0):
|
||||
eslint-plugin-sort-class-members@1.21.0(eslint@9.14.0):
|
||||
dependencies:
|
||||
eslint: 9.14.0
|
||||
|
||||
|
@ -2832,7 +2819,7 @@ snapshots:
|
|||
|
||||
eslint@9.14.0:
|
||||
dependencies:
|
||||
'@eslint-community/eslint-utils': 4.4.0(eslint@9.14.0)
|
||||
'@eslint-community/eslint-utils': 4.4.1(eslint@9.14.0)
|
||||
'@eslint-community/regexpp': 4.12.1
|
||||
'@eslint/config-array': 0.18.0
|
||||
'@eslint/core': 0.7.0
|
||||
|
@ -2933,10 +2920,10 @@ snapshots:
|
|||
|
||||
flat-cache@4.0.1:
|
||||
dependencies:
|
||||
flatted: 3.3.1
|
||||
flatted: 3.3.2
|
||||
keyv: 4.5.4
|
||||
|
||||
flatted@3.3.1: {}
|
||||
flatted@3.3.2: {}
|
||||
|
||||
for-each@0.3.3:
|
||||
dependencies:
|
||||
|
@ -3002,7 +2989,7 @@ snapshots:
|
|||
dependencies:
|
||||
call-bind: 1.0.7
|
||||
define-properties: 1.2.1
|
||||
es-abstract: 1.23.3
|
||||
es-abstract: 1.23.5
|
||||
functions-have-names: 1.2.3
|
||||
|
||||
functions-have-names@1.2.3: {}
|
||||
|
@ -3058,7 +3045,7 @@ snapshots:
|
|||
|
||||
globals@14.0.0: {}
|
||||
|
||||
globals@15.11.0: {}
|
||||
globals@15.12.0: {}
|
||||
|
||||
globalthis@1.0.4:
|
||||
dependencies:
|
||||
|
@ -3325,7 +3312,7 @@ snapshots:
|
|||
|
||||
lower-case@2.0.2:
|
||||
dependencies:
|
||||
tslib: 2.7.0
|
||||
tslib: 2.8.1
|
||||
|
||||
lru-cache@5.1.1:
|
||||
dependencies:
|
||||
|
@ -3383,13 +3370,13 @@ snapshots:
|
|||
no-case@3.0.4:
|
||||
dependencies:
|
||||
lower-case: 2.0.2
|
||||
tslib: 2.7.0
|
||||
tslib: 2.8.1
|
||||
|
||||
node-releases@2.0.18: {}
|
||||
|
||||
object-assign@4.1.1: {}
|
||||
|
||||
object-inspect@1.13.2: {}
|
||||
object-inspect@1.13.3: {}
|
||||
|
||||
object-keys@1.1.1: {}
|
||||
|
||||
|
@ -3475,7 +3462,7 @@ snapshots:
|
|||
|
||||
path-type@5.0.0: {}
|
||||
|
||||
picocolors@1.1.0: {}
|
||||
picocolors@1.1.1: {}
|
||||
|
||||
picomatch@2.3.1: {}
|
||||
|
||||
|
@ -3485,7 +3472,7 @@ snapshots:
|
|||
|
||||
prettier-plugin-ember-template-tag@0.3.2:
|
||||
dependencies:
|
||||
'@babel/core': 7.25.8
|
||||
'@babel/core': 7.26.0
|
||||
'@glimmer/syntax': 0.84.3
|
||||
ember-cli-htmlbars: 6.3.0
|
||||
ember-template-imports: 3.4.2
|
||||
|
@ -3626,7 +3613,7 @@ snapshots:
|
|||
call-bind: 1.0.7
|
||||
es-errors: 1.3.0
|
||||
get-intrinsic: 1.2.4
|
||||
object-inspect: 1.13.2
|
||||
object-inspect: 1.13.3
|
||||
|
||||
signal-exit@3.0.7: {}
|
||||
|
||||
|
@ -3645,7 +3632,7 @@ snapshots:
|
|||
snake-case@3.0.4:
|
||||
dependencies:
|
||||
dot-case: 3.0.4
|
||||
tslib: 2.7.0
|
||||
tslib: 2.8.1
|
||||
|
||||
source-map-js@1.2.1: {}
|
||||
|
||||
|
@ -3663,7 +3650,7 @@ snapshots:
|
|||
dependencies:
|
||||
call-bind: 1.0.7
|
||||
define-properties: 1.2.1
|
||||
es-abstract: 1.23.3
|
||||
es-abstract: 1.23.5
|
||||
es-errors: 1.3.0
|
||||
es-object-atoms: 1.0.0
|
||||
get-intrinsic: 1.2.4
|
||||
|
@ -3678,7 +3665,7 @@ snapshots:
|
|||
dependencies:
|
||||
call-bind: 1.0.7
|
||||
define-properties: 1.2.1
|
||||
es-abstract: 1.23.3
|
||||
es-abstract: 1.23.5
|
||||
es-object-atoms: 1.0.0
|
||||
|
||||
string.prototype.trimend@1.0.8:
|
||||
|
@ -3745,8 +3732,6 @@ snapshots:
|
|||
|
||||
tmp@0.2.3: {}
|
||||
|
||||
to-fast-properties@2.0.0: {}
|
||||
|
||||
to-regex-range@5.0.1:
|
||||
dependencies:
|
||||
is-number: 7.0.0
|
||||
|
@ -3763,9 +3748,9 @@ snapshots:
|
|||
|
||||
ts-replace-all@1.0.0:
|
||||
dependencies:
|
||||
core-js: 3.38.1
|
||||
core-js: 3.39.0
|
||||
|
||||
tslib@2.7.0: {}
|
||||
tslib@2.8.1: {}
|
||||
|
||||
type-check@0.4.0:
|
||||
dependencies:
|
||||
|
@ -3825,11 +3810,11 @@ snapshots:
|
|||
|
||||
upath@2.0.1: {}
|
||||
|
||||
update-browserslist-db@1.1.1(browserslist@4.24.0):
|
||||
update-browserslist-db@1.1.1(browserslist@4.24.2):
|
||||
dependencies:
|
||||
browserslist: 4.24.0
|
||||
browserslist: 4.24.2
|
||||
escalade: 3.2.0
|
||||
picocolors: 1.1.0
|
||||
picocolors: 1.1.1
|
||||
|
||||
uri-js@4.4.1:
|
||||
dependencies:
|
||||
|
|
Loading…
Reference in New Issue