Skip to content

Commit f2ee1cb

Browse files
committed
refactor!: migrate to 1.0.0-beta.0
1 parent 7746447 commit f2ee1cb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+508
-213
lines changed

.github/CONTRIBUTING.md

Lines changed: 1 addition & 0 deletions

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.10.12
1+
1.0.0-beta.0

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
{
22
"name": "@eslint-react/monorepo",
3-
"version": "0.10.12",
4-
"description": "ESLint React's monorepo. A platform for creating ESLint rules for not just for ReactDOM but also other libraries and frameworks that use React as a runtime.",
3+
"version": "1.0.0-beta.0",
4+
"description": "A platform for creating ESLint rules for not just for ReactDOM but also other libraries and frameworks that use React as a runtime.",
55
"keywords": [
66
"eslint",
77
"eslint-plugin",
88
"eslint-react",
9-
"eslint-plugin-react",
109
"react",
1110
"ts",
1211
"tsx",

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint-react/core",
3-
"version": "0.10.12",
3+
"version": "1.0.0-beta.0",
44
"description": "ESLint React's ESLint utility module for static analysis of React core APIs and Patterns.",
55
"homepage": "https://github.com/rel1cx/eslint-react",
66
"bugs": {

packages/plugins/eslint-plugin-debug/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint-react/eslint-plugin-debug",
3-
"version": "0.10.12",
3+
"version": "1.0.0-beta.0",
44
"description": "ESLint React's ESLint plugin for debugging related rules.",
55
"homepage": "https://github.com/rel1cx/eslint-react",
66
"bugs": {

packages/plugins/eslint-plugin-jsx/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint-react/eslint-plugin-jsx",
3-
"version": "0.10.12",
3+
"version": "1.0.0-beta.0",
44
"description": "ESLint React's ESLint plugin for JSX related rules.",
55
"homepage": "https://github.com/rel1cx/eslint-react",
66
"bugs": {

packages/plugins/eslint-plugin-naming-convention/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint-react/eslint-plugin-naming-convention",
3-
"version": "0.10.12",
3+
"version": "1.0.0-beta.0",
44
"description": "ESLint React's ESLint plugin for naming convention related rules.",
55
"homepage": "https://github.com/rel1cx/eslint-react",
66
"bugs": {
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false.
Lines changed: 42 additions & 0 deletions
Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
{
2+
"name": "@eslint-react/eslint-plugin-react-dom",
3+
"version": "1.0.0-beta.0",
4+
"description": "ESLint React's ESLint plugin for React DOM related rules.",
5+
"homepage": "https://github.com/rel1cx/eslint-react",
6+
"bugs": {
7+
"url": "https://github.com/rel1cx/eslint-react/issues"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "https://github.com/Rel1cx/eslint-react",
12+
"directory": "packages/plugins/eslint-plugin-react-dom"
13+
},
14+
"license": "MIT",
15+
"author": "Eva1ent<[email protected]>",
16+
"sideEffects": false,
17+
"exports": {
18+
".": {
19+
"import": {
20+
"types": "./dist/index.d.mts",
21+
"default": "./dist/index.mjs"
22+
},
23+
"require": {
24+
"types": "./dist/index.d.ts",
25+
"default": "./dist/index.js"
26+
}
27+
},
28+
"./package.json": "./package.json"
29+
},
30+
"main": "dist/index.js",
31+
"module": "dist/index.mjs",
32+
"types": "dist/index.d.ts",
33+
"files": [
34+
"./dist",
35+
"./package.json"
36+
],
37+
"scripts": {
38+
"build": "rollup -c rollup.config.ts --configPlugin swc3 && cp dist/index.d.ts dist/index.d.mts",
39+
"build:docs": "typedoc",
40+
"lint:publish": "publint",
41+
"lint:type": "tsc --noEmit",
42+
"publish": "pnpm run build && pnpm run lint:publish"
43+
},
44+
"dependencies": {
45+
"@eslint-react/ast": "workspace:*",
46+
"@eslint-react/core": "workspace:*",
47+
"@eslint-react/jsx": "workspace:*",
48+
"@eslint-react/shared": "workspace:*",
49+
"@eslint-react/tools": "workspace:*",
50+
"@eslint-react/types": "workspace:*",
51+
"@eslint-react/var": "workspace:*",
52+
"@typescript-eslint/parser": ">=6.19.1",
53+
"@typescript-eslint/scope-manager": ">=6.19.1",
54+
"@typescript-eslint/type-utils": ">=6.19.1",
55+
"@typescript-eslint/types": ">=6.19.1",
56+
"@typescript-eslint/utils": ">=6.19.1",
57+
"string-ts": "2.0.0"
58+
},
59+
"peerDependencies": {
60+
"@typescript-eslint/parser": ">=6.19.1",
61+
"eslint": ">=8.56.0",
62+
"typescript": ">=5.3.3"
63+
},
64+
"engines": {
65+
"bun": ">=1.0.15",
66+
"node": ">=18.18.0"
67+
},
68+
"publishConfig": {
69+
"access": "public"
70+
}
71+
}

0 commit comments

Comments
 (0)