@akanjs/cli 1.0.17 → 1.0.18

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
@@ -807,7 +807,7 @@ ${preRunScripts.join("\n")}
807
807
  RUN mkdir -p /workspace
808
808
  WORKDIR /workspace
809
809
  COPY ./package.json ./package.json
810
- RUN npx pnpm i --prod
810
+ RUN npx pnpm i --prod --config.dangerously-allow-all-builds=true
811
811
  ${postRunScripts.join("\n")}
812
812
  COPY . .
813
813
  ENV PORT=8080
package/esm/index.js CHANGED
@@ -786,7 +786,7 @@ ${preRunScripts.join("\n")}
786
786
  RUN mkdir -p /workspace
787
787
  WORKDIR /workspace
788
788
  COPY ./package.json ./package.json
789
- RUN npx pnpm i --prod
789
+ RUN npx pnpm i --prod --config.dangerously-allow-all-builds=true
790
790
  ${postRunScripts.join("\n")}
791
791
  COPY . .
792
792
  ENV PORT=8080
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.17",
5
+ "version": "1.0.18",
6
6
  "bin": {
7
7
  "akan": "esm/index.js"
8
8
  },