We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0daf6b5 commit eb6bb7aCopy full SHA for eb6bb7a
2 files changed
.npmrc
@@ -0,0 +1,5 @@
1
+# adminjs creates a virtual Babel entry file at the project root to resolve its
2
+# .babelrc.json at runtime. pnpm strict hoisting prevents Babel from finding
3
+# adminjs's own babel plugins from that path, so we hoist them to root node_modules.
4
+public-hoist-pattern[]=@babel/plugin-syntax-import-assertions
5
+public-hoist-pattern[]=@babel/plugin-syntax-import-attributes
Dockerfile
@@ -18,6 +18,7 @@ ENV NODE_ENV=production
18
RUN pnpm run build
19
20
# Clean and reinstall only production dependencies
21
+ENV CI=true
22
RUN pnpm prune --prod --ignore-scripts
23
24
#
0 commit comments