Skip to content

Commit

Permalink
feat(nx-prisma): move project to plugins directory
Browse files Browse the repository at this point in the history
  • Loading branch information
gperdomor committed May 26, 2024
1 parent e76e956 commit 08ea098
Show file tree
Hide file tree
Showing 71 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ A collection of Nx plugins and commons tools to build them.
| Plugin | Description |
| ----------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- |
| [`@nx-tools/nx-container`](plugins/nx-container/README.md) | First class support for Container builds in your Nx workspace. Docker, Podman and Kaniko engines are supported |
| [`@nx-tools/nx-prisma`](packages/nx-prisma/README.md) | First class support for [Prisma](https://prisma.io/) in your Nx workspace. |
| [`@nx-tools/nx-prisma`](plugins/nx-prisma/README.md) | First class support for [Prisma](https://prisma.io/) in your Nx workspace. |
| [`@nx-tools/nx-graphql-codegen`](packages/nx-graphql-codegen/README.md) | First class support for [graphql code generator](https://the-guild.dev/graphql/codegen) in your Nx workspace. |

## Authors
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ export default {
'^.+\\.[tj]s$': ['ts-jest', { tsconfig: '<rootDir>/tsconfig.spec.json' }],
},
moduleFileExtensions: ['ts', 'js', 'html'],
coverageDirectory: '../../coverage/packages/nx-prisma',
coverageDirectory: '../../coverage/plugins/nx-prisma',
};
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "nx-prisma",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "packages/nx-prisma/src",
"sourceRoot": "plugins/nx-prisma/src",
"projectType": "library",
"release": {
"version": {
Expand All @@ -17,28 +17,28 @@
"executor": "@nx/js:tsc",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/packages/nx-prisma",
"main": "packages/nx-prisma/src/index.ts",
"tsConfig": "packages/nx-prisma/tsconfig.lib.json",
"outputPath": "dist/plugins/nx-prisma",
"main": "plugins/nx-prisma/src/index.ts",
"tsConfig": "plugins/nx-prisma/tsconfig.lib.json",
"assets": [
"packages/nx-prisma/*.md",
"plugins/nx-prisma/*.md",
{
"input": "./packages/nx-prisma/src",
"input": "./plugins/nx-prisma/src",
"glob": "**/!(*.ts)",
"output": "./src"
},
{
"input": "./packages/nx-prisma/src",
"input": "./plugins/nx-prisma/src",
"glob": "**/*.d.ts",
"output": "./src"
},
{
"input": "./packages/nx-prisma",
"input": "./plugins/nx-prisma",
"glob": "generators.json",
"output": "."
},
{
"input": "./packages/nx-prisma",
"input": "./plugins/nx-prisma",
"glob": "executors.json",
"output": "."
}
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"@nx-tools/core": ["packages/core/src/index.ts"],
"@nx-tools/nx-container": ["plugins/nx-container/src/index.ts"],
"@nx-tools/nx-graphql-codegen": ["packages/nx-graphql-codegen/src/index.ts"],
"@nx-tools/nx-prisma": ["packages/nx-prisma/src/index.ts"],
"@nx-tools/nx-prisma": ["plugins/nx-prisma/src/index.ts"],
"@nx-tools/nx-set-shas": ["packages/nx-set-shas/src/index.ts"]
}
},
Expand Down

0 comments on commit 08ea098

Please sign in to comment.