Skip to content

Commit 470c9ab

Browse files
committed
Update misc dependencies
1 parent 507282d commit 470c9ab

File tree

6 files changed

+250
-338
lines changed

6 files changed

+250
-338
lines changed

ember-add-listener-helper/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -48,16 +48,16 @@
4848
"@glint/template": "^1.0.2",
4949
"@rollup/plugin-babel": "^6.0.3",
5050
"@tsconfig/ember": "^3.0.0",
51-
"@typescript-eslint/eslint-plugin": "^5.30.5",
52-
"@typescript-eslint/parser": "^5.30.5",
51+
"@typescript-eslint/eslint-plugin": "^6.1.0",
52+
"@typescript-eslint/parser": "^6.1.0",
5353
"concurrently": "^8.0.1",
5454
"ember-template-lint": "^5.7.3",
5555
"eslint": "^8.33.0",
5656
"eslint-config-prettier": "^8.3.0",
5757
"eslint-plugin-ember": "^11.6.0",
5858
"eslint-plugin-n": "^16.0.0",
59-
"eslint-plugin-prettier": "^4.0.0",
60-
"prettier": "^2.5.1",
59+
"eslint-plugin-prettier": "^5.0.0",
60+
"prettier": "^3.0.0",
6161
"rollup": "^3.21.8",
6262
"rollup-plugin-copy": "^3.4.0",
6363
"typescript": "^5.0.4"

ember-add-listener-helper/src/helpers/add-listener.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ type PositionalArgs = [
1111
target?: object | Function | null,
1212
// eslint-disable-next-line @typescript-eslint/ban-types
1313
method?: Function,
14-
sync?: boolean
14+
sync?: boolean,
1515
];
1616

1717
interface AddListenerHelperSignature {

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@
2020
"test": "yarn workspaces run test"
2121
},
2222
"devDependencies": {
23-
"@release-it-plugins/lerna-changelog": "^5.0.0",
24-
"@release-it-plugins/workspaces": "^3.2.0",
25-
"concurrently": "^7.2.1",
26-
"prettier": "^2.5.1",
27-
"release-it": "^15.5.0"
23+
"@release-it-plugins/lerna-changelog": "^6.0.0",
24+
"@release-it-plugins/workspaces": "^4.0.0",
25+
"concurrently": "^8.2.0",
26+
"prettier": "^3.0.0",
27+
"release-it": "^16.1.3"
2828
},
2929
"publishConfig": {
3030
"registry": "https://registry.npmjs.org"

test-app/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@
2929
"@ember/optional-features": "^2.0.0",
3030
"@ember/string": "^3.0.1",
3131
"@ember/test-helpers": "^3.2.0",
32-
"@embroider/test-setup": "^1.7.1",
32+
"@embroider/test-setup": "^3.0.1",
3333
"@glimmer/component": "^1.1.2",
3434
"@glimmer/tracking": "^1.1.2",
3535
"@tsconfig/ember": "^3.0.0",
3636
"@types/qunit": "^2.19.6",
3737
"@types/rsvp": "^4.0.4",
3838
"@types/sinon": "^10.0.15",
39-
"@typescript-eslint/eslint-plugin": "^5.57.1",
40-
"@typescript-eslint/parser": "^5.57.1",
39+
"@typescript-eslint/eslint-plugin": "^6.1.0",
40+
"@typescript-eslint/parser": "^6.1.0",
4141
"broccoli-asset-rev": "^3.0.0",
4242
"concurrently": "^8.0.1",
4343
"ember-add-listener-helper": "*",
@@ -63,16 +63,16 @@
6363
"eslint-config-prettier": "^8.8.0",
6464
"eslint-plugin-ember": "^11.9.0",
6565
"eslint-plugin-n": "^16.0.1",
66-
"eslint-plugin-prettier": "^4.2.1",
66+
"eslint-plugin-prettier": "^5.0.0",
6767
"eslint-plugin-qunit": "^8.0.0",
6868
"loader.js": "^4.7.0",
69-
"prettier": "^2.8.8",
69+
"prettier": "^3.0.0",
7070
"qunit": "^2.19.4",
7171
"qunit-dom": "^2.0.0",
7272
"sinon": "^15.2.0",
7373
"stylelint": "^15.9.0",
74-
"stylelint-config-standard": "^33.0.0",
75-
"stylelint-prettier": "^3.0.0",
74+
"stylelint-config-standard": "^34.0.0",
75+
"stylelint-prettier": "^4.0.0",
7676
"typescript": "^5.1.6",
7777
"webpack": "^5.88.1"
7878
},

test-app/tests/integration/helpers/add-listener-test.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ module('Integration | Helpers | add-listener', function (hooks) {
3434
context.callback = callback;
3535

3636
await render<ThisContext>(
37-
hbs`{{add-listener this.context.obj 'thing' this.context.callback}}`
37+
hbs`{{add-listener this.context.obj 'thing' this.context.callback}}`,
3838
);
3939
assert.strictEqual(callback.callCount, 0);
4040

@@ -61,7 +61,7 @@ module('Integration | Helpers | add-listener', function (hooks) {
6161
context.callback = callback;
6262

6363
await render<ThisContext>(
64-
hbs`{{add-listener this.context.obj 'thing' this.context.callback}}`
64+
hbs`{{add-listener this.context.obj 'thing' this.context.callback}}`,
6565
);
6666
assert.strictEqual(callback.callCount, 0);
6767

@@ -90,7 +90,7 @@ module('Integration | Helpers | add-listener', function (hooks) {
9090
context.callback = callback;
9191

9292
await render<ThisContext>(
93-
hbs`{{add-listener this.context.obj this.context.event this.context.callback}}`
93+
hbs`{{add-listener this.context.obj this.context.event this.context.callback}}`,
9494
);
9595
assert.strictEqual(callback.callCount, 0);
9696

@@ -119,7 +119,7 @@ module('Integration | Helpers | add-listener', function (hooks) {
119119
context.callback = callback1;
120120

121121
await render<ThisContext>(
122-
hbs`{{add-listener this.context.obj 'thing' this.context.callback}}`
122+
hbs`{{add-listener this.context.obj 'thing' this.context.callback}}`,
123123
);
124124
assert.strictEqual(callback1.callCount, 0);
125125

@@ -138,7 +138,7 @@ module('Integration | Helpers | add-listener', function (hooks) {
138138
test('it handles un-set arguments', async function (assert) {
139139
// Render with nothing set
140140
await render<ThisContext>(
141-
hbs`{{add-listener this.context.obj this.context.event this.context.callback}}`
141+
hbs`{{add-listener this.context.obj this.context.event this.context.callback}}`,
142142
);
143143

144144
// No callback -- make sure no errors are thrown when sending event

0 commit comments

Comments
 (0)