-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #150 from solidjs-community/turbo-monorepo
Restructure to turbo monorepo
- Loading branch information
Showing
186 changed files
with
2,088 additions
and
564 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
pnpm build | ||
git add README.md docs/* | ||
pnpm run docs | ||
git add README.md packages/eslint-plugin-solid/README.md packages/eslint-plugin-solid/docs/* | ||
pnpm lint-staged |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
auto-install-peers=true | ||
link-workspace-packages=true | ||
disallow-workspace-cycles=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,92 +1,50 @@ | ||
{ | ||
"name": "eslint-plugin-solid", | ||
"version": "0.14.2", | ||
"description": "Solid-specific linting rules for ESLint.", | ||
"keywords": [ | ||
"eslint", | ||
"eslintplugin", | ||
"solid", | ||
"solidjs", | ||
"reactivity" | ||
], | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"repository": "https://github.com/solidjs-community/eslint-plugin-solid", | ||
"author": "Josh Wilson <[email protected]>", | ||
"name": "eslint-plugin-solid-monorepo", | ||
"private": true, | ||
"license": "MIT", | ||
"engines": { | ||
"node": ">=12.0.0" | ||
}, | ||
"scripts": { | ||
"build": "turbo run turbo:build", | ||
"ci": "PARSER=all turbo run turbo:build turbo:test turbo:docs turbo:lint turbo:tsc", | ||
"docs": "turbo run turbo:docs", | ||
"lint": "turbo run turbo:lint", | ||
"prepare": "husky install", | ||
"prepublishOnly": "pnpm build && pnpm lint && prettier --check src && pnpm test:all", | ||
"build": "tsc -p tsconfig.build.json && pnpm run docs", | ||
"eslint": "node node_modules/eslint/bin/eslint.js", | ||
"lint": "pnpm eslint --ignore-pattern test/fixture/invalid", | ||
"docs": "PARSER=none tsx scripts/docs.ts", | ||
"test": "vitest", | ||
"test:ts": "PARSER=ts pnpm test", | ||
"test:babel": "PARSER=babel pnpm test", | ||
"test:v6": "PARSER=v6 pnpm test", | ||
"test:v7": "PARSER=v7 pnpm test", | ||
"test:all": "PARSER=all pnpm test" | ||
"test": "turbo run turbo:test", | ||
"tsc": "turbo run turbo:tsc", | ||
"turbo:docs": "cp packages/eslint-plugin-solid/README.md README.md", | ||
"turbo:lint": "eslint --max-warnings=0", | ||
"turbo:tsc": "tsc" | ||
}, | ||
"lint-staged": { | ||
"*.{js,jsx,ts,tsx}": [ | ||
"pnpm lint -- --no-warn-ignored --fix", | ||
"prettier --write" | ||
] | ||
}, | ||
"files": [ | ||
"src", | ||
"dist", | ||
"configs", | ||
"README.md" | ||
], | ||
"dependencies": { | ||
"@typescript-eslint/utils": "^7.13.1 || ^8.0.0", | ||
"estraverse": "^5.3.0", | ||
"is-html": "^2.0.0", | ||
"kebab-case": "^1.0.2", | ||
"known-css-properties": "^0.30.0", | ||
"style-to-object": "^1.0.6" | ||
"prettier": { | ||
"plugins": [ | ||
"prettier-plugin-packagejson" | ||
], | ||
"printWidth": 100 | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.24.4", | ||
"@babel/eslint-parser": "^7.24.7", | ||
"@tsconfig/node20": "^20.1.4", | ||
"@types/eslint": "^8.56.10", | ||
"@types/eslint-v6": "npm:@types/eslint@6", | ||
"@types/eslint-v7": "npm:@types/eslint@7", | ||
"@types/eslint-v8": "npm:@types/eslint@8", | ||
"@types/eslint__js": "^8.42.3", | ||
"@types/estraverse": "^5.1.7", | ||
"@types/is-html": "^2.0.2", | ||
"@types/node": "^20", | ||
"@types/prettier": "^2.7.3", | ||
"@typescript-eslint/eslint-plugin": "^8.0.0", | ||
"@typescript-eslint/parser": "^8.0.0", | ||
"eslint": "^9.5.0", | ||
"eslint-plugin-eslint-plugin": "^6.1.0", | ||
"eslint-plugin-solid": "link:", | ||
"eslint-v6": "npm:eslint@6", | ||
"eslint-v7": "npm:eslint@7", | ||
"eslint-v8": "npm:eslint@8", | ||
"globals": "^15.6.0", | ||
"husky": "^8.0.3", | ||
"lint-staged": "^13.3.0", | ||
"markdown-magic": "^3.3.0", | ||
"prettier": "^2.8.8", | ||
"tsx": "^4.7.3", | ||
"prettier-plugin-packagejson": "^2.5.1", | ||
"turbo": "^2.0.14", | ||
"typescript": "^5.5.4", | ||
"typescript-eslint": "^8.1.0", | ||
"vitest": "^1.5.2" | ||
}, | ||
"peerDependencies": { | ||
"eslint": "^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0" | ||
}, | ||
"lint-staged": { | ||
"*!(test).{js,jsx,ts,tsx}": [ | ||
"pnpm lint --fix", | ||
"prettier --write" | ||
] | ||
}, | ||
"prettier": { | ||
"printWidth": 100 | ||
"typescript-eslint": "^8.1.0" | ||
}, | ||
"packageManager": "[email protected]" | ||
"packageManager": "[email protected]", | ||
"pnpm": { | ||
"patchedDependencies": { | ||
"[email protected]": "patches/[email protected]" | ||
} | ||
} | ||
} |
Oops, something went wrong.