Skip to content

Commit

Permalink
fix: missed README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
IKatsuba committed Dec 30, 2020
1 parent db173da commit c99a9a1
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 13 deletions.
8 changes: 4 additions & 4 deletions SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

* [Rxnode](README.md)
* [Libraries](libs/README.md)
* [child\_process](libs/child-process.md)
* [core](libs/core.md)
* [http](libs/http.md)
* [fs](libs/fs.md)
* [child\_process](libs/child-process/README.md)
* [core](libs/core/README.md)
* [http](libs/http/README.md)
* [fs](libs/fs/README.md)
* [License](license.md)
* [Contributor Covenant Code of Conduct](code_of_conduct.md)
* [Contributing](contributing.md)
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
37 changes: 28 additions & 9 deletions workspace.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
"lint": {
"builder": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": ["libs/core/**/*.ts"]
"lintFilePatterns": [
"libs/core/**/*.ts"
]
}
},
"test": {
Expand All @@ -27,7 +29,9 @@
"tsConfig": "libs/core/tsconfig.lib.json",
"packageJson": "libs/core/package.json",
"main": "libs/core/src/index.ts",
"assets": ["libs/core/*.md", "libs/core.md"]
"assets": [
"libs/core/*.md"
]
}
},
"release": {
Expand All @@ -49,7 +53,9 @@
"lint": {
"builder": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": ["libs/fs/**/*.ts"]
"lintFilePatterns": [
"libs/fs/**/*.ts"
]
}
},
"test": {
Expand All @@ -66,7 +72,10 @@
"tsConfig": "libs/fs/tsconfig.lib.json",
"packageJson": "libs/fs/package.json",
"main": "libs/fs/src/index.ts",
"assets": ["libs/fs/*.md", "libs/fs.md", "libs/fs/.npmignore"]
"assets": [
"libs/fs/*.md",
"libs/fs/.npmignore"
]
}
},
"release": {
Expand All @@ -88,7 +97,9 @@
"lint": {
"builder": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": ["libs/child-process/**/*.ts"]
"lintFilePatterns": [
"libs/child-process/**/*.ts"
]
}
},
"test": {
Expand Down Expand Up @@ -131,7 +142,9 @@
"lint": {
"builder": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": ["libs/http/**/*.ts"]
"lintFilePatterns": [
"libs/http/**/*.ts"
]
}
},
"test": {
Expand All @@ -148,7 +161,9 @@
"tsConfig": "libs/http/tsconfig.lib.json",
"packageJson": "libs/http/package.json",
"main": "libs/http/src/index.ts",
"assets": ["libs/http/*.md", "libs/http.md"]
"assets": [
"libs/http/*.md"
]
}
},
"release": {
Expand All @@ -170,7 +185,9 @@
"lint": {
"builder": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": ["libs/crypto/**/*.ts"]
"lintFilePatterns": [
"libs/crypto/**/*.ts"
]
}
},
"test": {
Expand All @@ -187,7 +204,9 @@
"tsConfig": "libs/crypto/tsconfig.lib.json",
"packageJson": "libs/crypto/package.json",
"main": "libs/crypto/src/index.ts",
"assets": ["libs/crypto/*.md", "libs/crypto.md"]
"assets": [
"libs/crypto/*.md"
]
}
},
"release": {
Expand Down

0 comments on commit c99a9a1

Please sign in to comment.