Skip to content

Commit

Permalink
fix(nx-container): fix nx-container packaging info
Browse files Browse the repository at this point in the history
  • Loading branch information
gperdomor committed Dec 16, 2024
1 parent 97ae4ab commit efb34d2
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 17 deletions.
4 changes: 2 additions & 2 deletions plugins/nx-container/executors.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"executors": {
"build": {
"implementation": "./src/executors/build/executor",
"schema": "./src/executors/build/schema.json",
"implementation": "./dist/executors/build/executor",
"schema": "./dist/executors/build/schema.json",
"description": "Runs container build executor"
}
}
Expand Down
8 changes: 4 additions & 4 deletions plugins/nx-container/generators.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"generators": {
"configuration": {
"factory": "./src/generators/configuration/generator",
"schema": "./src/generators/configuration/schema.json",
"factory": "./dist/generators/configuration/generator",
"schema": "./dist/generators/configuration/schema.json",
"description": "Configure Container builds for your application"
},
"init": {
"factory": "./src/generators/init/init",
"schema": "./src/generators/init/schema.json",
"factory": "./dist/generators/init/init",
"schema": "./dist/generators/init/schema.json",
"description": "Init Container settings for your workspace"
}
}
Expand Down
4 changes: 3 additions & 1 deletion plugins/nx-container/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@
},
"files": [
"dist",
"!**/*.tsbuildinfo"
"!**/*.tsbuildinfo",
"generators.json",
"executors.json"
]
}
10 changes: 0 additions & 10 deletions plugins/nx-container/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,6 @@
"input": "./plugins/nx-container/src",
"glob": "**/*.d.ts",
"output": "."
},
{
"input": "./plugins/nx-container",
"glob": "generators.json",
"output": "."
},
{
"input": "./plugins/nx-container",
"glob": "executors.json",
"output": "."
}
]
}
Expand Down

0 comments on commit efb34d2

Please sign in to comment.