@akanjs/config 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/src/akanConfig.js +1 -1
- package/esm/src/akanConfig.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1 +1,7 @@
|
|
|
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
|
This package is a sub-library of akanjs. For more information, please refer to [@akanjs/cli](https://www.npmjs.com/package/@akanjs/cli) and the [Akan.js Github](https://github.com/akan-team/akanjs).
|
package/cjs/src/akanConfig.js
CHANGED
|
@@ -198,7 +198,7 @@ ${preRunScripts.join("\n")}
|
|
|
198
198
|
RUN mkdir -p /workspace
|
|
199
199
|
WORKDIR /workspace
|
|
200
200
|
COPY ./package.json ./package.json
|
|
201
|
-
RUN npx pnpm i --prod
|
|
201
|
+
RUN npx pnpm i --prod --config.dangerously-allow-all-builds=true
|
|
202
202
|
COPY . .
|
|
203
203
|
ENV PORT=4200
|
|
204
204
|
ENV NODE_OPTIONS=--max_old_space_size=8192
|
package/esm/src/akanConfig.js
CHANGED
|
@@ -159,7 +159,7 @@ ${preRunScripts.join("\n")}
|
|
|
159
159
|
RUN mkdir -p /workspace
|
|
160
160
|
WORKDIR /workspace
|
|
161
161
|
COPY ./package.json ./package.json
|
|
162
|
-
RUN npx pnpm i --prod
|
|
162
|
+
RUN npx pnpm i --prod --config.dangerously-allow-all-builds=true
|
|
163
163
|
COPY . .
|
|
164
164
|
ENV PORT=4200
|
|
165
165
|
ENV NODE_OPTIONS=--max_old_space_size=8192
|