Skip to content

Commit

Permalink
Merge pull request #11 from dman926/further-configuration-and-e2e
Browse files Browse the repository at this point in the history
Update packages. Properly configure pyre and build output.
  • Loading branch information
dman926 authored Sep 16, 2023
2 parents ee14ac9 + ad8a191 commit 321d7d2
Show file tree
Hide file tree
Showing 13 changed files with 1,457 additions and 1,299 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"files": ["*.mjs"],
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2015
"ecmaVersion": 2020
}
}
]
Expand Down
6 changes: 5 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@
"files": ["*.json", ".pyre_configuration"],
"parser": "jsonc-eslint-parser",
"rules": {
"@nx/dependency-checks": "error"
"@nx/dependency-checks": [
"error",
// Not really sure why these are triggering
{ "ignoredDependencies": ["@nx/jest", "@nx/linter", "chalk"] }
]
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ yarn add -D @dman926/nx-python-pdm
- command\*: The command to run. 'pdm ' is prepended to this command.
- cwd: Override where the command runs. By default, the command runs in the project root. If provided, it should be relative to the workspace root.
- raw: Do not prepend `'pdm '` to the given command.
- quiet: Suppress output to stdout. stderr will still be printed.
- quiet: Suppress output to stdout. stderr will still be printed on process error.

### Generators

Expand Down
Loading

0 comments on commit 321d7d2

Please sign in to comment.