Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: small updates #43

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
3 changes: 2 additions & 1 deletion packages/swarm/.eslintrc.json → .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
},
"extends": [
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
"plugin:prettier/recommended",
"plugin:workspaces/recommended"
],
"plugins": [
"@typescript-eslint",
Expand Down
139 changes: 139 additions & 0 deletions .pnp.cjs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
30 changes: 16 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"@mxssfd/typedoc-theme": "^1.1.3",
"@types/is-ci": "^3",
"@types/license-checker": "^25",
"eslint-plugin-workspaces": "^0.10.0",
"fixpack": "^4.0.0",
"husky": "^8.0.0",
"is-ci": "^3.0.1",
Expand All @@ -41,26 +42,27 @@
"packageManager": "[email protected]",
"private": true,
"scripts": {
"build": "yarn workspaces foreach -Apt run build",
"clean": "yarn workspaces foreach -Apt run clean",
"build": "yarn workspaces foreach -Aptv run build",
"clean": "yarn workspaces foreach -Aptv run clean",
"docs:all": "yarn docs:build; yarn docs:bundle:markdown && yarn docs:bundle:html",
"docs:build": "yarn workspaces foreach -Apt run docs",
"docs:build": "yarn workspaces foreach -Aptv run docs",
"docs:bundle:html": "typedoc --out docs/html --plugin @mxssfd/typedoc-theme --theme my-theme --plugin typedoc-plugin-markdown --readme ./README.md --entryPointStrategy merge \"./**/docs/*.json\"",
"docs:bundle:markdown": "typedoc --plugin typedoc-plugin-markdown --plugin typedoc-github-wiki-theme --out docs/markdown --readme ./README.md --entryPointStrategy merge \"./**/docs/*.json\"",
"fixpack": "fixpack && yarn workspaces foreach -Apt run fixpack",
"format": "yarn workspaces foreach -Apt run format",
"format:fix": "yarn workspaces foreach -Apt run format:fix",
"fixpack": "fixpack && yarn workspaces foreach -Aptv run fixpack",
"format": "yarn workspaces foreach -Aptv run format",
"format:fix": "yarn workspaces foreach -Aptv run format:fix",
"husky:install": "is-ci || husky install",
"license:report": "yarn workspaces foreach -Apt run license:report",
"lint": "yarn workspaces foreach -Apt run lint",
"lint:fix": "yarn workspaces foreach -Apt run lint:fix",
"lint:report": "yarn workspaces foreach -Apt run lint:report",
"prepare": "yarn husky:install && yarn workspaces foreach -Apt run prepare",
"license:report": "yarn workspaces foreach -Aptv run license:report",
"lint": "yarn workspaces foreach -Aptv run lint",
"lint:fix": "yarn workspaces foreach -Aptv run lint:fix",
"lint:report": "yarn workspaces foreach -Aptv run lint:report",
"prepare": "yarn husky:install && yarn workspaces foreach -Aptv run prepare",
"prepublish": "yarn build",
"publish": "yarn workspaces foreach -Apt run publish",
"readme": "yarn readme:build && yarn workspaces foreach -Apt run readme:build",
"publish": "yarn workspaces foreach -Aptv run publish",
"readme": "yarn readme:build && yarn workspaces foreach -Aptv run readme:build",
"readme:build": "pkg-to-readme -f -t ./_readme.md",
"test": "yarn workspaces foreach -Apt run test"
"test": "yarn workspaces foreach -Aptv run test",
"doctor": "yarn dlx @yarnpkg/doctor packages/"
},
"workspaces": [
"packages/*"
Expand Down
3 changes: 2 additions & 1 deletion packages/assert/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
},
"extends": [
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
"plugin:prettier/recommended",
"plugin:workspaces/recommended"
],
"plugins": [
"@typescript-eslint",
Expand Down
19 changes: 19 additions & 0 deletions packages/fswatcher/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json",
"sourceType": "module",
"ecmaVersion": 2022
},
"extends": [
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"plugins": [
"@typescript-eslint",
"prettier"
],
"rules": {
"prettier/prettier": "error"
}
}
File renamed without changes.
2 changes: 2 additions & 0 deletions packages/fswatcher/licenses.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
"module name","license","repository"
"@ralphschuler/[email protected]","MIT","https://github.com/ralphschuler/ts-libs"
Loading
Loading