Skip to content

Commit

Permalink
chore: fix lowercase README.md references
Browse files Browse the repository at this point in the history
  • Loading branch information
icidasset committed Feb 19, 2024
1 parent ccf2b9a commit ff2de87
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 53 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

"customizations": {
"codespaces": {
"openFiles": ["readme.md"]
"openFiles": ["README.md"]
},
"vscode": {
"extensions": [
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

A layer around the `wnfs` package that provides a `FileSystem` class, a root tree, mounts, transactions and some other essentials.

_More info in the [package readme](https://github.com/wnfs-wg/nest/tree/main/packages/nest/readme.md)._
_More info in the [package readme](https://github.com/wnfs-wg/nest/tree/main/packages/nest/README.md)._

## Packages

Expand Down
68 changes: 17 additions & 51 deletions packages/nest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,44 +62,21 @@
},
"typesVersions": {
"*": {
".": [
"dist/src/index"
],
"app-info": [
"dist/src/app-info"
],
"class": [
"dist/src/class"
],
"crypto": [
"dist/src/crypto"
],
"errors": [
"dist/src/errors"
],
"events": [
"dist/src/events"
],
"path": [
"dist/src/path"
],
"transaction": [
"dist/src/transaction"
],
"types": [
"dist/src/types"
],
"version": [
"dist/src/version"
]
".": ["dist/src/index"],
"app-info": ["dist/src/app-info"],
"class": ["dist/src/class"],
"crypto": ["dist/src/crypto"],
"errors": ["dist/src/errors"],
"events": ["dist/src/events"],
"path": ["dist/src/path"],
"transaction": ["dist/src/transaction"],
"types": ["dist/src/types"],
"version": ["dist/src/version"]
}
},
"files": [
"dist",
"src"
],
"files": ["dist", "src"],
"scripts": {
"lint": "tsc --build && eslint . --quiet --ignore-pattern='readme.md' && prettier --check '**/*.{js,ts,yml,json}' --ignore-path ../../.gitignore",
"lint": "tsc --build && eslint . --quiet --ignore-pattern='README.md' && prettier --check '**/*.{js,ts,yml,json}' --ignore-path ../../.gitignore",
"build": "tsc --build",
"test": "pnpm run test:node && pnpm run test:browser",
"test:node": "mocha 'test/**/!(*.browser).test.ts' --bail --timeout 30000",
Expand Down Expand Up @@ -135,15 +112,11 @@
"provenance": true
},
"eslintConfig": {
"extends": [
"@fission-codes"
],
"extends": ["@fission-codes"],
"env": {
"mocha": true
},
"ignorePatterns": [
"dist"
],
"ignorePatterns": ["dist"],
"rules": {
"@typescript-eslint/no-unused-vars": [
"error",
Expand All @@ -153,18 +126,11 @@
"varsIgnorePattern": "^_"
}
],
"unicorn/no-array-reduce": [
"off"
]
"unicorn/no-array-reduce": ["off"]
}
},
"depcheck": {
"specials": [
"bin"
],
"ignores": [
"@types/*",
"assert"
]
"specials": ["bin"],
"ignores": ["@types/*", "assert"]
}
}

0 comments on commit ff2de87

Please sign in to comment.