create-forgeon 0.0.2 → 0.0.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-forgeon",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "Forgeon project generator CLI",
5
5
  "license": "MIT",
6
6
  "author": "Forgeon",
@@ -0,0 +1,7 @@
1
+ **/node_modules
2
+ **/dist
3
+ .git
4
+ .gitignore
5
+ .DS_Store
6
+ pnpm-debug.log
7
+ *.log
@@ -5,6 +5,7 @@ RUN corepack enable
5
5
 
6
6
  COPY package.json pnpm-workspace.yaml tsconfig.base.json ./
7
7
  COPY apps/api/package.json apps/api/package.json
8
+ COPY apps/api/prisma apps/api/prisma
8
9
  COPY packages/core/package.json packages/core/package.json
9
10
  COPY packages/i18n/package.json packages/i18n/package.json
10
11