Skip to content

Commit

Permalink
chore(integrations/openapi-json): private package
Browse files Browse the repository at this point in the history
  • Loading branch information
guesant committed Oct 31, 2024
1 parent ce8bc61 commit 7743d25
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 17 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ RUN corepack install
FROM base AS build
COPY . "/ldsa"

ENV GIT_COMMIT_HASH=
ENV NX_DAEMON=true
ENV GIT_COMMIT_HASH=
# ENV NX_VERBOSE_LOGGING=true

RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile
Expand Down
22 changes: 6 additions & 16 deletions integrations/openapi-json/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
{
"name": "@ladesa-ro/api.integrations.openapi-json",
"version": "1.0.0-next.28",
"files": [
"generated.json"
],
"private": true,
"files": ["generated.json"],
"scripts": {
"build": "nx build"
},
Expand All @@ -14,30 +13,21 @@
"typedoc-plugin-mdn-links": "^3.3.5"
},
"nx": {
"tags": [
"integrations",
"integrations:openapi-json"
],
"tags": ["integrations", "integrations:openapi-json"],
"root": "integrations/openapi-json",
"namedInputs": {
"default": []
},
"targets": {
"build": {
"executor": "nx:run-commands",
"inputs": [
"default"
],
"inputs": ["default"],
"options": {
"cwd": "{projectRoot}",
"command": "OUT_FILE=$(pwd)/generated.json pnpm run --filter '@ladesa-ro/api.service' generate:openapi && pnpm run -w code-static:fix $(pwd)/generated.json"
},
"outputs": [
"{projectRoot}/generated.json"
],
"dependsOn": [
"@ladesa-ro/api.service:build"
]
"outputs": ["{projectRoot}/generated.json"],
"dependsOn": ["@ladesa-ro/api.service:build"]
}
}
}
Expand Down

0 comments on commit 7743d25

Please sign in to comment.