@akanjs/cli 1.0.18 → 1.0.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/cjs/index.js CHANGED
@@ -836,7 +836,7 @@ ${preRunScripts.join("\n")}
836
836
  RUN mkdir -p /workspace
837
837
  WORKDIR /workspace
838
838
  COPY ./package.json ./package.json
839
- RUN npx pnpm i --prod
839
+ RUN npx pnpm i --prod --config.dangerously-allow-all-builds=true
840
840
  COPY . .
841
841
  ENV PORT=4200
842
842
  ENV NODE_OPTIONS=--max_old_space_size=8192
package/esm/index.js CHANGED
@@ -815,7 +815,7 @@ ${preRunScripts.join("\n")}
815
815
  RUN mkdir -p /workspace
816
816
  WORKDIR /workspace
817
817
  COPY ./package.json ./package.json
818
- RUN npx pnpm i --prod
818
+ RUN npx pnpm i --prod --config.dangerously-allow-all-builds=true
819
819
  COPY . .
820
820
  ENV PORT=4200
821
821
  ENV NODE_OPTIONS=--max_old_space_size=8192
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "type": "module",
3
3
  "sourceType": "module",
4
4
  "name": "@akanjs/cli",
5
- "version": "1.0.18",
5
+ "version": "1.0.19",
6
6
  "bin": {
7
7
  "akan": "esm/index.js"
8
8
  },