Skip to content

Commit

Permalink
Update dependency prettier to v3
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored and mrloop committed Dec 17, 2023
1 parent 6451aa7 commit e0e2ceb
Show file tree
Hide file tree
Showing 5 changed files with 58 additions and 24 deletions.
4 changes: 2 additions & 2 deletions ember-metrics-simple-analytics/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-ember": "^11.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"rollup": "^4.0.0",
"rollup-plugin-copy": "^3.4.0"
},
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
},
"devDependencies": {
"concurrently": "^8.0.0",
"prettier": "^2.5.1",
"prettier": "^3.0.0",
"release-it": "17.0.1",
"@release-it-plugins/lerna-changelog": "6.0.0",
"@release-it-plugins/workspaces": "4.0.0"
Expand Down
66 changes: 50 additions & 16 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions test-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,11 @@
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-ember": "^11.2.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-qunit": "^8.0.0",
"loader.js": "^4.7.0",
"npm-run-all": "4.1.5",
"prettier": "^2.8.1",
"prettier": "^3.0.0",
"qunit": "^2.19.3",
"qunit-dom": "^3.0.0",
"webpack": "^5.75.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ module('Unit | Adapter | simple-analytics', function (hooks) {
assert.strictEqual(scriptElement().dataset.hostname, 'picturewham.com');
assert.strictEqual(
scriptElement().dataset.ignoreMetrics,
'timeonpage,scrolled'
'timeonpage,scrolled',
);
});

Expand Down Expand Up @@ -127,7 +127,7 @@ module('Unit | Adapter | simple-analytics', function (hooks) {
assert.deepEqual(
this.adapter.queue,
[{ fncName: 'trackEvent', options: { name: 'turnip' } }],
'queue is populated'
'queue is populated',
);
await waitUntil(() => this.adapter.loaded);
assert.deepEqual(this.adapter.queue, [], 'queue is emptied');
Expand All @@ -140,7 +140,7 @@ module('Unit | Adapter | simple-analytics', function (hooks) {
assert.deepEqual(
this.adapter.queue,
[{ fncName: 'trackPage', options: { path: '/veg' } }],
'queue is populated'
'queue is populated',
);
await waitUntil(() => this.adapter.loaded);

Expand Down

0 comments on commit e0e2ceb

Please sign in to comment.