Skip to content

Commit

Permalink
feat(nx-python): add new version of poetry project generator
Browse files Browse the repository at this point in the history
re #111
fix #117
  • Loading branch information
lucasvieirasilva committed Jun 14, 2023
1 parent 292a7aa commit 7357139
Show file tree
Hide file tree
Showing 24 changed files with 3,835 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/1-bug.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: 🐞 Bug Report
description: This form is to report unexpected behavior in of lucasvieirasilva/nx-plugins packages.
labels: ['type: bug']
labels: ['bug', 'needs-triage']
body:
- type: markdown
attributes:
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/2-feature.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: "\U0001F680 Feature Request"
about: Suggest a new feature.
labels: 'type: feature'
labels: ['enhancement', 'needs-triage']
---

<!-- Please do your best to fill out all of the sections below! -->
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/3-documentation.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: '📖 Documentation issue'
about: Help improve our docs.
labels: 'type: docs'
labels: ['documentation', 'needs-triage']
---

### Documentation issue
Expand Down
7 changes: 6 additions & 1 deletion packages/nx-python/generators.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,17 @@
"project": {
"factory": "./src/generators/project/generator",
"schema": "./src/generators/project/schema.json",
"description": "python project generator"
"description": "python project generator (Legacy)"
},
"migrate-to-shared-venv": {
"factory": "./src/generators/migrate-to-shared-venv/generator",
"schema": "./src/generators/migrate-to-shared-venv/schema.json",
"description": "Migrate Isolated Venv to Shared Venv"
},
"poetry-project": {
"factory": "./src/generators/poetry-project/generator",
"schema": "./src/generators/poetry-project/schema.json",
"description": "Python Poetry Project"
}
}
}
2 changes: 1 addition & 1 deletion packages/nx-python/jest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default {
moduleFileExtensions: ['ts', 'js', 'html'],
coverageDirectory: '../../coverage/packages/nx-python',
collectCoverage: true,
collectCoverageFrom: ['./src/**/*.ts', '!./src/types.ts'],
// collectCoverageFrom: ['./src/**/*.ts', '!./src/types.ts'],
coverageReporters: [
'text',
'html',
Expand Down
Loading

0 comments on commit 7357139

Please sign in to comment.