ember-freestyle 0.17.0 → 0.18.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.
Files changed (28) hide show
  1. package/CHANGELOG.md +21 -1
  2. package/addon/components/freestyle/usage/number/index.ts +0 -2
  3. package/addon/components/freestyle/usage/object/index.ts +0 -2
  4. package/addon/components/freestyle/usage/string/index.ts +0 -2
  5. package/addon/components/freestyle-dynamic-input/index.ts +0 -2
  6. package/addon/components/freestyle-dynamic-input-select-option/index.ts +0 -2
  7. package/addon/components/freestyle-focus-button/index.ts +0 -3
  8. package/addon/components/freestyle-palette-item/index.ts +0 -2
  9. package/addon/components/freestyle-typeface/index.ts +0 -2
  10. package/addon/components/freestyle-usage-controls/index.ts +1 -7
  11. package/addon/components/freestyle-variant-list/index.ts +0 -2
  12. package/addon/modifiers/freestyle-highlight.ts +1 -6
  13. package/components/freestyle/usage/array/index.d.ts +1 -1
  14. package/components/freestyle/usage/number/index.d.ts +0 -2
  15. package/components/freestyle/usage/object/index.d.ts +0 -2
  16. package/components/freestyle/usage/string/index.d.ts +0 -2
  17. package/components/freestyle-dynamic/index.d.ts +4 -4
  18. package/components/freestyle-dynamic-input/index.d.ts +0 -2
  19. package/components/freestyle-dynamic-input-select-option/index.d.ts +0 -2
  20. package/components/freestyle-focus-button/index.d.ts +0 -3
  21. package/components/freestyle-palette/index.d.ts +2 -2
  22. package/components/freestyle-palette-item/index.d.ts +0 -2
  23. package/components/freestyle-typeface/index.d.ts +0 -2
  24. package/components/freestyle-usage-controls/index.d.ts +1 -7
  25. package/components/freestyle-variant-list/index.d.ts +0 -2
  26. package/index.js +1 -1
  27. package/modifiers/freestyle-highlight.d.ts +1 -6
  28. package/package.json +22 -22
package/CHANGELOG.md CHANGED
@@ -3,11 +3,31 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
5
 
6
+ ## v0.18.0 (2023-07-18)
6
7
 
8
+ #### :rocket: Enhancement
9
+ * [#929](https://github.com/chrislopresto/ember-freestyle/pull/929) Support `ember-modifier` v4 ([@bertdeblock](https://github.com/bertdeblock))
10
+
11
+ #### :bug: Bug Fix
12
+ * [#928](https://github.com/chrislopresto/ember-freestyle/pull/928) Fix compatibility with `ember-cli` v5 ([@bertdeblock](https://github.com/bertdeblock))
13
+
14
+ #### :house: Internal
15
+ * [#950](https://github.com/chrislopresto/ember-freestyle/pull/950) Update versions of ember-qunit and ember-test-helpers ([@lukemelia](https://github.com/lukemelia))
16
+ * [#949](https://github.com/chrislopresto/ember-freestyle/pull/949) Fix type errors ([@bertdeblock](https://github.com/bertdeblock))
17
+
18
+ #### Committers: 2
19
+ - Bert De Block ([@bertdeblock](https://github.com/bertdeblock))
20
+ - Luke Melia ([@lukemelia](https://github.com/lukemelia))
7
21
 
8
22
  ## v0.17.0 (2022-10-18)
9
23
 
10
- ## v0.17.0-alpha-css-vars-api.0 (2022-10-17)
24
+ #### :rocket: Enhancement
25
+ * [#856](https://github.com/chrislopresto/ember-freestyle/pull/856) Make the navigation menu sticky ([@bertdeblock](https://github.com/bertdeblock))
26
+ * [#867](https://github.com/chrislopresto/ember-freestyle/pull/867) Add an optional "CSS Variables" block to Freestyle::Usage ([@lukemelia](https://github.com/lukemelia))
27
+
28
+ #### Committers: 1
29
+ - Bert De Block ([@bertdeblock](https://github.com/bertdeblock))
30
+ - Luke Melia ([@lukemelia](https://github.com/lukemelia))
11
31
 
12
32
  #### :rocket: Enhancement
13
33
  * [#856](https://github.com/chrislopresto/ember-freestyle/pull/856) Make the navigation menu sticky ([@bertdeblock](https://github.com/bertdeblock))
@@ -1,5 +1,4 @@
1
1
  import templateOnlyComponent from '@ember/component/template-only';
2
- import { type EmptyObject } from '@ember/component/helper';
3
2
 
4
3
  interface Signature {
5
4
  Args: {
@@ -14,7 +13,6 @@ interface Signature {
14
13
  step?: number;
15
14
  onInput: (val: number) => void;
16
15
  };
17
- Blocks: EmptyObject;
18
16
  }
19
17
  const FreestyleUsageNumberComponent = templateOnlyComponent<Signature>();
20
18
  export default FreestyleUsageNumberComponent;
@@ -1,5 +1,4 @@
1
1
  import templateOnlyComponent from '@ember/component/template-only';
2
- import { type EmptyObject } from '@ember/component/helper';
3
2
 
4
3
  interface Signature {
5
4
  Args: {
@@ -13,7 +12,6 @@ interface Signature {
13
12
  hideControls?: boolean;
14
13
  jsonCollapseDepth?: number;
15
14
  };
16
- Blocks: EmptyObject;
17
15
  }
18
16
  const FreestyleUsageObjectComponent = templateOnlyComponent<Signature>();
19
17
  export default FreestyleUsageObjectComponent;
@@ -1,5 +1,4 @@
1
1
  import templateOnlyComponent from '@ember/component/template-only';
2
- import { type EmptyObject } from '@ember/component/helper';
3
2
 
4
3
  interface Signature {
5
4
  Args: {
@@ -12,7 +11,6 @@ interface Signature {
12
11
  options?: string[];
13
12
  onInput: (val: string | null | undefined) => void;
14
13
  };
15
- Blocks: EmptyObject;
16
14
  }
17
15
  const FreestyleUsageStringComponent = templateOnlyComponent<Signature>();
18
16
  export default FreestyleUsageStringComponent;
@@ -1,6 +1,5 @@
1
1
  import Component from '@glimmer/component';
2
2
  import { guidFor } from '@ember/object/internals';
3
- import { type EmptyObject } from '@ember/component/helper';
4
3
  import { InputType, SupportedValue } from '../freestyle-dynamic';
5
4
  /* eslint-disable @typescript-eslint/no-unused-vars */
6
5
  import { action } from '@ember/object';
@@ -19,7 +18,6 @@ interface Signature {
19
18
  max?: number;
20
19
  changeValueTo: (val: SupportedValue) => void;
21
20
  };
22
- Blocks: EmptyObject;
23
21
  }
24
22
 
25
23
  export default class FreestyleDynamicInput extends Component<Signature> {
@@ -1,5 +1,4 @@
1
1
  import Component from '@glimmer/component';
2
- import { type EmptyObject } from '@ember/component/helper';
3
2
  import { AttrValue } from '@glint/template';
4
3
 
5
4
  interface Signature {
@@ -8,7 +7,6 @@ interface Signature {
8
7
  optionValue: AttrValue;
9
8
  selectedValue: AttrValue;
10
9
  };
11
- Blocks: EmptyObject;
12
10
  }
13
11
 
14
12
  export default class FreestyleDynamicInputSelectOption extends Component<Signature> {
@@ -1,10 +1,7 @@
1
1
  import templateOnlyComponent from '@ember/component/template-only';
2
- import { type EmptyObject } from '@ember/component/helper';
3
2
 
4
3
  interface Signature {
5
4
  Element: HTMLSpanElement;
6
- Args: EmptyObject;
7
- Blocks: EmptyObject;
8
5
  }
9
6
 
10
7
  const FreestyleFocusButton = templateOnlyComponent<Signature>();
@@ -1,6 +1,5 @@
1
1
  import Component from '@glimmer/component';
2
2
  import { htmlSafe } from '@ember/template';
3
- import { type EmptyObject } from '@ember/component/helper';
4
3
  import { SafeString } from '@ember/template/-private/handlebars';
5
4
  import { PaletteItem } from '../freestyle-palette';
6
5
 
@@ -9,7 +8,6 @@ interface Signature {
9
8
  Args: {
10
9
  color: PaletteItem;
11
10
  };
12
- Blocks: EmptyObject;
13
11
  }
14
12
 
15
13
  export default class FreestylePaletteItem extends Component<Signature> {
@@ -1,13 +1,11 @@
1
1
  import Component from '@glimmer/component';
2
2
  import { htmlSafe } from '@ember/template';
3
- import { type EmptyObject } from '@ember/component/helper';
4
3
 
5
4
  interface Signature {
6
5
  Element: HTMLDivElement;
7
6
  Args: {
8
7
  fontFamily: string;
9
8
  };
10
- Blocks: EmptyObject;
11
9
  }
12
10
 
13
11
  export default class FreestyleTypeface extends Component<Signature> {
@@ -2,19 +2,13 @@ import Component from '@glimmer/component';
2
2
  import { schedule } from '@ember/runloop';
3
3
  import { capitalize } from '@ember/string';
4
4
  import type EmberFreestyleService from '../../services/ember-freestyle';
5
- import { type EmptyObject } from '@ember/component/helper';
6
5
  /* eslint-disable @typescript-eslint/no-unused-vars */
7
6
  import { inject as service } from '@ember/service';
8
7
  import { action, get, set } from '@ember/object';
9
8
  import { tracked } from '@glimmer/tracking';
10
9
  /* eslint-enable @typescript-eslint/no-unused-vars */
11
10
 
12
- interface Signature {
13
- Args: EmptyObject;
14
- Blocks: EmptyObject;
15
- }
16
-
17
- export default class FreestyleUsageControls extends Component<Signature> {
11
+ export default class FreestyleUsageControls extends Component {
18
12
  @service('ember-freestyle') declare emberFreestyle: EmberFreestyleService;
19
13
 
20
14
  get showLabels(): boolean {
@@ -1,5 +1,4 @@
1
1
  import templateOnlyComponent from '@ember/component/template-only';
2
- import { type EmptyObject } from '@ember/component/helper';
3
2
 
4
3
  interface Signature {
5
4
  Element: HTMLUListElement;
@@ -8,7 +7,6 @@ interface Signature {
8
7
  activeKey: string;
9
8
  onClickVariant: (key: string) => void;
10
9
  };
11
- Blocks: EmptyObject;
12
10
  }
13
11
 
14
12
  const FreestyleVariantList = templateOnlyComponent<Signature>();
@@ -1,14 +1,9 @@
1
1
  import Modifier from 'ember-modifier';
2
2
  // eslint-disable-next-line @typescript-eslint/no-unused-vars
3
3
  import { inject as service } from '@ember/service';
4
- import { type EmptyObject } from '@ember/component/helper';
5
4
  import type EmberFreestyleService from '../services/ember-freestyle';
6
5
 
7
- interface Signature {
8
- Args: EmptyObject;
9
- }
10
-
11
- export default class FreestyleHighlight extends Modifier<Signature> {
6
+ export default class FreestyleHighlight extends Modifier {
12
7
  @service declare emberFreestyle: EmberFreestyleService;
13
8
 
14
9
  modify(element: HTMLElement): void {
@@ -1,6 +1,6 @@
1
1
  import Component from '@glimmer/component';
2
2
  import MutableArray from '@ember/array/mutable';
3
- declare type ItemArray = MutableArray<any>;
3
+ type ItemArray = MutableArray<any>;
4
4
  interface Signature {
5
5
  Args: {
6
6
  items: ItemArray;
@@ -1,4 +1,3 @@
1
- import { type EmptyObject } from '@ember/component/helper';
2
1
  interface Signature {
3
2
  Args: {
4
3
  name?: string;
@@ -12,7 +11,6 @@ interface Signature {
12
11
  step?: number;
13
12
  onInput: (val: number) => void;
14
13
  };
15
- Blocks: EmptyObject;
16
14
  }
17
15
  declare const FreestyleUsageNumberComponent: import("@ember/component/template-only").TemplateOnlyComponent<Signature>;
18
16
  export default FreestyleUsageNumberComponent;
@@ -1,4 +1,3 @@
1
- import { type EmptyObject } from '@ember/component/helper';
2
1
  interface Signature {
3
2
  Args: {
4
3
  name?: string;
@@ -9,7 +8,6 @@ interface Signature {
9
8
  hideControls?: boolean;
10
9
  jsonCollapseDepth?: number;
11
10
  };
12
- Blocks: EmptyObject;
13
11
  }
14
12
  declare const FreestyleUsageObjectComponent: import("@ember/component/template-only").TemplateOnlyComponent<Signature>;
15
13
  export default FreestyleUsageObjectComponent;
@@ -1,4 +1,3 @@
1
- import { type EmptyObject } from '@ember/component/helper';
2
1
  interface Signature {
3
2
  Args: {
4
3
  name?: string;
@@ -10,7 +9,6 @@ interface Signature {
10
9
  options?: string[];
11
10
  onInput: (val: string | null | undefined) => void;
12
11
  };
13
- Blocks: EmptyObject;
14
12
  }
15
13
  declare const FreestyleUsageStringComponent: import("@ember/component/template-only").TemplateOnlyComponent<Signature>;
16
14
  export default FreestyleUsageStringComponent;
@@ -1,8 +1,8 @@
1
1
  import Component from '@glimmer/component';
2
2
  import Owner from '@ember/owner';
3
3
  import { AttrValue } from '@glint/template';
4
- export declare type SupportedValue = boolean | string | AttrValue | number;
5
- export declare type InputType = 'checkbox' | 'textarea' | 'select' | 'number' | 'range';
4
+ export type SupportedValue = boolean | string | AttrValue | number;
5
+ export type InputType = 'checkbox' | 'textarea' | 'select' | 'number' | 'range';
6
6
  interface PropertyHash {
7
7
  value?: SupportedValue;
8
8
  options?: SupportedValue[];
@@ -11,8 +11,8 @@ interface PropertyHash {
11
11
  min?: number;
12
12
  max?: number;
13
13
  }
14
- export declare type DynamicProperties = Record<string, PropertyHash>;
15
- declare type DynamicPropertyValues = Record<string, SupportedValue>;
14
+ export type DynamicProperties = Record<string, PropertyHash>;
15
+ type DynamicPropertyValues = Record<string, SupportedValue>;
16
16
  interface ComponentArgs {
17
17
  slug: string;
18
18
  dynamicProperties: DynamicProperties;
@@ -1,5 +1,4 @@
1
1
  import Component from '@glimmer/component';
2
- import { type EmptyObject } from '@ember/component/helper';
3
2
  import { InputType, SupportedValue } from '../freestyle-dynamic';
4
3
  interface Signature {
5
4
  Element: HTMLDivElement;
@@ -13,7 +12,6 @@ interface Signature {
13
12
  max?: number;
14
13
  changeValueTo: (val: SupportedValue) => void;
15
14
  };
16
- Blocks: EmptyObject;
17
15
  }
18
16
  export default class FreestyleDynamicInput extends Component<Signature> {
19
17
  isCheckbox: boolean;
@@ -1,5 +1,4 @@
1
1
  import Component from '@glimmer/component';
2
- import { type EmptyObject } from '@ember/component/helper';
3
2
  import { AttrValue } from '@glint/template';
4
3
  interface Signature {
5
4
  Element: HTMLOptionElement;
@@ -7,7 +6,6 @@ interface Signature {
7
6
  optionValue: AttrValue;
8
7
  selectedValue: AttrValue;
9
8
  };
10
- Blocks: EmptyObject;
11
9
  }
12
10
  export default class FreestyleDynamicInputSelectOption extends Component<Signature> {
13
11
  get selected(): boolean;
@@ -1,8 +1,5 @@
1
- import { type EmptyObject } from '@ember/component/helper';
2
1
  interface Signature {
3
2
  Element: HTMLSpanElement;
4
- Args: EmptyObject;
5
- Blocks: EmptyObject;
6
3
  }
7
4
  declare const FreestyleFocusButton: import("@ember/component/template-only").TemplateOnlyComponent<Signature>;
8
5
  export default FreestyleFocusButton;
@@ -1,5 +1,5 @@
1
1
  import Component from '@glimmer/component';
2
- declare type Color = string;
2
+ type Color = string;
3
3
  export interface PaletteItem {
4
4
  name: string;
5
5
  description?: string;
@@ -7,7 +7,7 @@ export interface PaletteItem {
7
7
  light?: Color;
8
8
  dark?: Color;
9
9
  }
10
- export declare type ColorPalette = Record<string, PaletteItem>;
10
+ export type ColorPalette = Record<string, PaletteItem>;
11
11
  interface Signature {
12
12
  Element: HTMLDivElement;
13
13
  Args: {
@@ -1,5 +1,4 @@
1
1
  import Component from '@glimmer/component';
2
- import { type EmptyObject } from '@ember/component/helper';
3
2
  import { SafeString } from '@ember/template/-private/handlebars';
4
3
  import { PaletteItem } from '../freestyle-palette';
5
4
  interface Signature {
@@ -7,7 +6,6 @@ interface Signature {
7
6
  Args: {
8
7
  color: PaletteItem;
9
8
  };
10
- Blocks: EmptyObject;
11
9
  }
12
10
  export default class FreestylePaletteItem extends Component<Signature> {
13
11
  get paletteStyle(): SafeString;
@@ -1,12 +1,10 @@
1
1
  import Component from '@glimmer/component';
2
2
  import { htmlSafe } from '@ember/template';
3
- import { type EmptyObject } from '@ember/component/helper';
4
3
  interface Signature {
5
4
  Element: HTMLDivElement;
6
5
  Args: {
7
6
  fontFamily: string;
8
7
  };
9
- Blocks: EmptyObject;
10
8
  }
11
9
  export default class FreestyleTypeface extends Component<Signature> {
12
10
  get fontFamilyStyle(): ReturnType<typeof htmlSafe>;
@@ -1,11 +1,6 @@
1
1
  import Component from '@glimmer/component';
2
2
  import type EmberFreestyleService from '../../services/ember-freestyle';
3
- import { type EmptyObject } from '@ember/component/helper';
4
- interface Signature {
5
- Args: EmptyObject;
6
- Blocks: EmptyObject;
7
- }
8
- export default class FreestyleUsageControls extends Component<Signature> {
3
+ export default class FreestyleUsageControls extends Component {
9
4
  emberFreestyle: EmberFreestyleService;
10
5
  get showLabels(): boolean;
11
6
  set showLabels(val: boolean);
@@ -22,4 +17,3 @@ export default class FreestyleUsageControls extends Component<Signature> {
22
17
  toggleUsage(usageType: 'labels' | 'notes' | 'code' | 'api'): void;
23
18
  setFocus(): void;
24
19
  }
25
- export {};
@@ -1,4 +1,3 @@
1
- import { type EmptyObject } from '@ember/component/helper';
2
1
  interface Signature {
3
2
  Element: HTMLUListElement;
4
3
  Args: {
@@ -6,7 +5,6 @@ interface Signature {
6
5
  activeKey: string;
7
6
  onClickVariant: (key: string) => void;
8
7
  };
9
- Blocks: EmptyObject;
10
8
  }
11
9
  declare const FreestyleVariantList: import("@ember/component/template-only").TemplateOnlyComponent<Signature>;
12
10
  export default FreestyleVariantList;
package/index.js CHANGED
@@ -32,7 +32,7 @@ module.exports = {
32
32
  },
33
33
 
34
34
  setupPreprocessorRegistry(type, registry) {
35
- if (type === 'self' && registry.app.name === 'ember-freestyle') {
35
+ if (type !== 'parent') {
36
36
  return;
37
37
  }
38
38
  let pluginObj = this._buildPlugin();
@@ -1,11 +1,6 @@
1
1
  import Modifier from 'ember-modifier';
2
- import { type EmptyObject } from '@ember/component/helper';
3
2
  import type EmberFreestyleService from '../services/ember-freestyle';
4
- interface Signature {
5
- Args: EmptyObject;
6
- }
7
- export default class FreestyleHighlight extends Modifier<Signature> {
3
+ export default class FreestyleHighlight extends Modifier {
8
4
  emberFreestyle: EmberFreestyleService;
9
5
  modify(element: HTMLElement): void;
10
6
  }
11
- export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ember-freestyle",
3
- "version": "0.17.0",
3
+ "version": "0.18.0",
4
4
  "description": "Create a living styleguide for your Ember app.",
5
5
  "keywords": [
6
6
  "ember-addon"
@@ -38,12 +38,12 @@
38
38
  "@ember/render-modifiers": "^2.0.4",
39
39
  "@glimmer/component": "^1.1.2",
40
40
  "@glimmer/tracking": "^1.1.2",
41
- "ember-auto-import": "^2.4.2",
41
+ "ember-auto-import": "^2.4.3",
42
42
  "ember-cli-babel": "^7.26.11",
43
43
  "ember-cli-htmlbars": "^6.1.1",
44
44
  "ember-cli-typescript": "^5.1.1",
45
45
  "ember-focus-trap": "^1.0.1",
46
- "ember-modifier": "^3.2.7",
46
+ "ember-modifier": "^3.2.7 || ^4.0.0",
47
47
  "ember-named-blocks-polyfill": "^0.2.5",
48
48
  "ember-truth-helpers": "^3.1.1",
49
49
  "json-formatter-js": "^2.3.4",
@@ -53,22 +53,22 @@
53
53
  },
54
54
  "devDependencies": {
55
55
  "@ember/optional-features": "^2.0.0",
56
- "@ember/test-helpers": "^2.8.1",
56
+ "@ember/string": "^3.1.1",
57
+ "@ember/test-helpers": "^3.2.0",
57
58
  "@embroider/test-setup": "^1.8.3",
58
59
  "@glint/core": "^0.9.4",
59
- "@glint/environment-ember-loose": "^0.9.4",
60
+ "@glint/environment-ember-loose": "^0.9.7",
60
61
  "@release-it-plugins/lerna-changelog": "^5.0.0",
61
62
  "@tsconfig/ember": "^1.0.1",
62
63
  "@types/ember": "^4.0.1",
63
- "@types/ember-qunit": "^5.0.2",
64
64
  "@types/ember-resolver": "^5.0.11",
65
65
  "@types/ember__application": "^4.0.2",
66
66
  "@types/ember__array": "^4.0.2",
67
67
  "@types/ember__component": "^4.0.10",
68
- "@types/ember__controller": "^4.0.1",
68
+ "@types/ember__controller": "^4.0.4",
69
69
  "@types/ember__debug": "^4.0.1",
70
- "@types/ember__engine": "^4.0.2",
71
- "@types/ember__error": "^4.0.0",
70
+ "@types/ember__engine": "^4.0.4",
71
+ "@types/ember__error": "^4.0.3",
72
72
  "@types/ember__helper": "^4.0.0",
73
73
  "@types/ember__modifier": "^4.0.2",
74
74
  "@types/ember__object": "^4.0.4",
@@ -79,7 +79,6 @@
79
79
  "@types/ember__string": "^3.0.9",
80
80
  "@types/ember__template": "^4.0.0",
81
81
  "@types/ember__test": "^4.0.0",
82
- "@types/ember__test-helpers": "^2.8.1",
83
82
  "@types/ember__utils": "^4.0.1",
84
83
  "@types/qunit": "^2.19.3",
85
84
  "@types/remarkable": "^2.0.3",
@@ -88,7 +87,7 @@
88
87
  "@typescript-eslint/parser": "^5.40.1",
89
88
  "all-contributors-cli": "^6.24.0",
90
89
  "broccoli-asset-rev": "^3.0.0",
91
- "ember-cli": "~4.7.0",
90
+ "ember-cli": "~4.11.0",
92
91
  "ember-cli-autoprefixer": "^2.0.0",
93
92
  "ember-cli-dependency-checker": "^3.3.1",
94
93
  "ember-cli-deploy": "^1.0.2",
@@ -103,18 +102,18 @@
103
102
  "ember-code-snippet": "^3.0.0",
104
103
  "ember-load-initializers": "^2.1.2",
105
104
  "ember-page-title": "^7.0.0",
106
- "ember-qunit": "^5.1.5",
105
+ "ember-qunit": "^7.0.0",
107
106
  "ember-resolver": "^8.0.3",
108
- "ember-source": "~4.7.0",
107
+ "ember-source": "~4.12.3",
109
108
  "ember-source-channel-url": "^3.0.0",
110
109
  "ember-style-modifier": "^0.8.0",
111
- "ember-template-imports": "^3.1.1",
110
+ "ember-template-imports": "^3.3.1",
112
111
  "ember-template-lint": "^4.14.0",
113
112
  "ember-try": "^2.0.0",
114
- "eslint": "^8.25.0",
113
+ "eslint": "^8.35.0",
115
114
  "eslint-config-ember": "0.3.0",
116
115
  "eslint-config-prettier": "^8.5.0",
117
- "eslint-plugin-ember": "^11.0.6",
116
+ "eslint-plugin-ember": "^11.10.0",
118
117
  "eslint-plugin-node": "^11.1.0",
119
118
  "eslint-plugin-prettier": "^4.2.1",
120
119
  "eslint-plugin-qunit": "^7.3.1",
@@ -122,24 +121,25 @@
122
121
  "loader.js": "^4.7.0",
123
122
  "npm-run-all": "^4.1.5",
124
123
  "prettier": "^2.7.1",
125
- "qunit": "^2.19.1",
124
+ "prettier-plugin-ember-template-tag": "^0.3.2",
125
+ "qunit": "^2.19.3",
126
126
  "qunit-dom": "^2.0.0",
127
- "release-it": "^15.5.0",
127
+ "release-it": "^14.10.0",
128
128
  "remarkable": "^2.0.1",
129
129
  "sass": "^1.55.0",
130
- "stylelint": "^14.14.0",
130
+ "stylelint": "^15.10.1",
131
131
  "stylelint-config-prettier": "^9.0.3",
132
132
  "stylelint-config-recommended-scss": "^7.0.0",
133
133
  "stylelint-prettier": "^2.0.0",
134
134
  "stylelint-scss": "^4.3.0",
135
- "typescript": "^4.8.3",
136
- "webpack": "^5.74.0"
135
+ "typescript": "^4.9.5",
136
+ "webpack": "^5.76.0"
137
137
  },
138
138
  "engines": {
139
139
  "node": "14.* || >= 16"
140
140
  },
141
141
  "volta": {
142
- "node": "14.19.3",
142
+ "node": "16.20.1",
143
143
  "yarn": "1.22.19"
144
144
  },
145
145
  "publishConfig": {