Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/wet-forks-sneeze.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"prettier-eslint-cli": patch
---

chore: bump prettier-eslint v17.0.0-alpha.1
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,15 @@
"dependencies": {
"@esm2cjs/indent-string": "^5.0.0",
"@messageformat/core": "^3.4.0",
"@prettier/eslint": "npm:prettier-eslint@^17.0.0-alpha.0",
"@prettier/eslint": "npm:prettier-eslint@^17.0.0-alpha.1",
"camelcase-keys": "^9.1.3",
"chalk-cjs": "^5.2.0",
"common-tags": "^1.8.2",
"core-js": "^3.42.0",
"eslint": "^9.26.0",
"find-up": "^5.0.0",
"get-stdin": "^8.0.0",
"glob": "^10.3.10",
"glob": "^10.4.5",
"ignore": "^7.0.4",
"lodash.memoize": "^4.1.2",
"loglevel-colored-level-prefix": "^1.0.0",
Expand All @@ -74,7 +74,7 @@
"@babel/node": "^7.27.1",
"@babel/preset-env": "^7.27.2",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.3",
"@changesets/cli": "^2.29.4",
"@types/jest": "^29.5.14",
"@unts/patch-package": "^8.1.1",
"all-contributors-cli": "^6.26.1",
Expand All @@ -90,7 +90,7 @@
"rimraf": "^6.0.1",
"simple-git-hooks": "^2.13.0",
"spawn-command": "1.0.0",
"typescript-eslint": "^8.32.0",
"typescript-eslint": "^8.32.1",
"yarn-berry-deduplicate": "^6.1.3"
},
"nano-staged": {
Expand Down
2 changes: 1 addition & 1 deletion test/tests/cli.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ test('list different files with the --list-different option', async () => {
test('accepts stdin of code', async () => {
const stdin = 'echo "console.log( window.baz , typeof [] ) "';
const stdout = await runPrettierESLintCLI('--stdin --parser babel', stdin);
expect(stdout).toEqual('console.log(globalThis.baz, typeof []);\n');
expect(stdout).toEqual('console.log(window.baz, typeof []);\n');
});

const writeCommand =
Expand Down
Loading