Skip to content

Commit 15141d2

Browse files
committed
chore: bump dev dependencies
1 parent 22b6685 commit 15141d2

4 files changed

Lines changed: 1216 additions & 1280 deletions

File tree

.remarkrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"plugins": [
3-
"@1stg/remark-config"
3+
"@1stg/preset"
44
]
55
}

package.json

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
"description": "Runs prettier as an eslint rule",
55
"repository": "git+https://github.com/prettier/eslint-plugin-prettier.git",
66
"homepage": "https://github.com/prettier/eslint-plugin-prettier#readme",
7-
"funding": "https://opencollective.com/prettier",
87
"author": "Teddy Katz",
98
"contributors": [
109
"JounQin (https://github.com/JounQin) <[email protected]>"
1110
],
11+
"funding": "https://opencollective.com/prettier",
1212
"license": "MIT",
1313
"packageManager": "[email protected]",
1414
"engines": {
@@ -27,7 +27,7 @@
2727
"scripts": {
2828
"format": "yarn prettier '**/*.{js,json,md,yml}' --write && yarn lint --fix",
2929
"lint": "eslint . --cache -f friendly --max-warnings 10",
30-
"prepare": "patch-package && simple-git-hooks && yarn-deduplicate --strategy fewer || exit 0",
30+
"prepare": "simple-git-hooks && yarn-deduplicate --strategy fewer || exit 0",
3131
"prerelease": "yarn format && yarn test",
3232
"release": "changeset publish",
3333
"test": "yarn lint && mocha"
@@ -42,30 +42,29 @@
4242
}
4343
},
4444
"dependencies": {
45+
"eslint-plugin-prettier": "link:.",
4546
"prettier-linter-helpers": "^1.0.0"
4647
},
4748
"devDependencies": {
48-
"@1stg/common-config": "^6.0.0",
49-
"@changesets/changelog-github": "^0.4.5",
50-
"@changesets/cli": "^2.23.1",
51-
"@graphql-eslint/eslint-plugin": "^3.10.4",
52-
"@typescript-eslint/parser": "^5.30.5",
49+
"@1stg/common-config": "^7.1.1",
50+
"@changesets/changelog-github": "^0.4.6",
51+
"@changesets/cli": "^2.24.4",
52+
"@graphql-eslint/eslint-plugin": "^3.10.7",
53+
"@typescript-eslint/parser": "^5.36.1",
5354
"eslint-config-prettier": "^8.5.0",
54-
"eslint-mdx": "^2.0.1",
55-
"eslint-plugin-eslint-plugin": "^4.4.0",
56-
"eslint-plugin-mdx": "^2.0.1",
55+
"eslint-mdx": "^2.0.2",
56+
"eslint-plugin-eslint-plugin": "^5.0.6",
57+
"eslint-plugin-mdx": "^2.0.2",
5758
"eslint-plugin-self": "^1.2.1",
58-
"eslint-plugin-svelte": "^2.2.0",
59+
"eslint-plugin-svelte": "^2.7.0",
5960
"eslint-plugin-svelte3": "^4.0.0",
60-
"graphql": "^16.5.0",
61+
"graphql": "^16.6.0",
6162
"mocha": "^10.0.0",
62-
"patch-package": "^6.4.7",
6363
"svelte": "^3.49.0",
6464
"vue-eslint-parser": "^9.0.3",
65-
"yarn-deduplicate": "^5.0.0"
65+
"yarn-deduplicate": "^6.0.0"
6666
},
6767
"resolutions": {
68-
"@babel/traverse": "^7.18.6",
6968
"eslint-plugin-prettier": "link:.",
7069
"prettier": "^2.7.1"
7170
}

test/prettier.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,10 @@ eslintPluginGraphqlRuleTester.run('eslint-plugin-graphql', rule, {
201201

202202
const mdxRuleTester = new RuleTester({
203203
parser: require.resolve('eslint-mdx'),
204-
parserOptions: require('eslint-mdx').DEFAULT_PARSER_OPTIONS,
204+
parserOptions: {
205+
sourceType: 'module',
206+
ecmaVersion: 'latest',
207+
},
205208
});
206209

207210
mdxRuleTester.run('eslint-plugin-mdx', rule, {

0 commit comments

Comments
 (0)