Skip to content

Commit

Permalink
feat(generators): update app generator configuration
Browse files Browse the repository at this point in the history
update the app generator to create Forge apps that utilize a native Nx build task to bundle the app and the package executor; adds support for esbuild bundler; removes target generation in project.json for inferred targets; removes package.json from app generator because it is generated by the plugin; reduce init generator to only set up the plugin

Closes #121, #68
  • Loading branch information
tbinna committed Jun 7, 2024
1 parent 04d1970 commit a301715
Show file tree
Hide file tree
Showing 38 changed files with 1,081 additions and 769 deletions.
10 changes: 8 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,18 @@
{
"files": ["*.ts", "*.tsx"],
"extends": ["plugin:@nx/typescript"],
"rules": {}
"rules": {
"@typescript-eslint/no-extra-semi": "error",
"no-extra-semi": "off"
}
},
{
"files": ["*.js", "*.jsx"],
"extends": ["plugin:@nx/javascript"],
"rules": {}
"rules": {
"@typescript-eslint/no-extra-semi": "error",
"no-extra-semi": "off"
}
}
]
}
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,5 @@ Thumbs.db
# Never commit .env files!
.env

.nx/cache
.nx/cache
.nx/workspace-data
3 changes: 2 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@
/dist
/coverage

/.nx/cache
/.nx/cache
/.nx/workspace-data
Loading

0 comments on commit a301715

Please sign in to comment.