Skip to content

Commit 568521e

Browse files
authored
chore: bump prettier-eslint v17.0.0-alpha.1 (#463)
1 parent 3859d9f commit 568521e

File tree

4 files changed

+150
-132
lines changed

4 files changed

+150
-132
lines changed

.changeset/wet-forks-sneeze.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"prettier-eslint-cli": patch
3+
---
4+
5+
chore: bump prettier-eslint v17.0.0-alpha.1

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,15 +51,15 @@
5151
"dependencies": {
5252
"@esm2cjs/indent-string": "^5.0.0",
5353
"@messageformat/core": "^3.4.0",
54-
"@prettier/eslint": "npm:prettier-eslint@^17.0.0-alpha.0",
54+
"@prettier/eslint": "npm:prettier-eslint@^17.0.0-alpha.1",
5555
"camelcase-keys": "^9.1.3",
5656
"chalk-cjs": "^5.2.0",
5757
"common-tags": "^1.8.2",
5858
"core-js": "^3.42.0",
5959
"eslint": "^9.26.0",
6060
"find-up": "^5.0.0",
6161
"get-stdin": "^8.0.0",
62-
"glob": "^10.3.10",
62+
"glob": "^10.4.5",
6363
"ignore": "^7.0.4",
6464
"lodash.memoize": "^4.1.2",
6565
"loglevel-colored-level-prefix": "^1.0.0",
@@ -74,7 +74,7 @@
7474
"@babel/node": "^7.27.1",
7575
"@babel/preset-env": "^7.27.2",
7676
"@changesets/changelog-github": "^0.5.1",
77-
"@changesets/cli": "^2.29.3",
77+
"@changesets/cli": "^2.29.4",
7878
"@types/jest": "^29.5.14",
7979
"@unts/patch-package": "^8.1.1",
8080
"all-contributors-cli": "^6.26.1",
@@ -90,7 +90,7 @@
9090
"rimraf": "^6.0.1",
9191
"simple-git-hooks": "^2.13.0",
9292
"spawn-command": "1.0.0",
93-
"typescript-eslint": "^8.32.0",
93+
"typescript-eslint": "^8.32.1",
9494
"yarn-berry-deduplicate": "^6.1.3"
9595
},
9696
"nano-staged": {

test/tests/cli.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ test('list different files with the --list-different option', async () => {
105105
test('accepts stdin of code', async () => {
106106
const stdin = 'echo "console.log( window.baz , typeof [] ) "';
107107
const stdout = await runPrettierESLintCLI('--stdin --parser babel', stdin);
108-
expect(stdout).toEqual('console.log(globalThis.baz, typeof []);\n');
108+
expect(stdout).toEqual('console.log(window.baz, typeof []);\n');
109109
});
110110

111111
const writeCommand =

0 commit comments

Comments
 (0)