@akanjs/cli 1.0.18 → 1.0.20
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/README.md +6 -0
- package/cjs/index.js +1 -1
- package/esm/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
> 🎉 **Akanjs v2 has been released!**
|
|
2
|
+
>
|
|
3
|
+
> This package is under maintenance for existing users, but we recommend using Akanjs v2 for new projects.
|
|
4
|
+
>
|
|
5
|
+
> For the unified and latest version package, please visit [akanjs](https://www.npmjs.com/package/akanjs).
|
|
6
|
+
|
|
1
7
|
# ⚡ Akan.js CLI
|
|
2
8
|
|
|
3
9
|
The official command-line interface for the Akan.js ecosystem, providing powerful development tools for creating, managing, and deploying modern web applications with ease.
|
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
|