@react-foundry/create 0.1.6 → 0.1.8

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.
@@ -32,17 +32,17 @@
32
32
  "test": "NODE_OPTIONS=--experimental-vm-modules jest --coverage --json --outputFile=.jest-results.json"
33
33
  },
34
34
  "devDependencies": {
35
- "@babel/core": "7.28.6",
35
+ "@babel/core": "7.29.0",
36
36
  "@babel/plugin-transform-export-namespace-from": "7.27.1",
37
- "@babel/preset-env": "7.28.6",
37
+ "@babel/preset-env": "7.29.2",
38
38
  "@babel/preset-react": "7.28.5",
39
39
  "@babel/preset-typescript": "7.28.5",
40
40
  "@react-foundry/plop-pack": "workspace:*",
41
41
  "@types/jest": "30.0.0",
42
- "@types/react": "19.2.10",
43
- "babel-jest": "30.2.0",
44
- "jest": "30.2.0",
45
- "jest-environment-jsdom": "30.2.0",
42
+ "@types/react": "19.2.14",
43
+ "babel-jest": "30.3.0",
44
+ "jest": "30.3.0",
45
+ "jest-environment-jsdom": "30.3.0",
46
46
  "plop": "4.0.5",
47
47
  "react-is": "19.2.4",
48
48
  "ts-jest": "29.4.6",
Binary file
package/dist/skel.tar CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-foundry/create",
3
- "version": "0.1.6",
3
+ "version": "0.1.8",
4
4
  "description": "A project and prototype initialiser.",
5
5
  "type": "module",
6
6
  "main": "plopfile.js",
@@ -21,7 +21,7 @@
21
21
  },
22
22
  "dependencies": {
23
23
  "shelljs": "^0.10.0",
24
- "@react-foundry/plop-pack": "^0.1.6"
24
+ "@react-foundry/plop-pack": "^0.1.8"
25
25
  },
26
26
  "devDependencies": {
27
27
  "plop": "4.0.5"
package/plopfile.js CHANGED
@@ -225,6 +225,16 @@ export const plopFile = async (plop) => {
225
225
  destination: '.github/workflows/deploy.yml',
226
226
  source: 'skel/prototype/.github/workflows/deploy.yml'
227
227
  },
228
+ {
229
+ type: 'copy',
230
+ destination: 'pnpm-workspace.yaml',
231
+ source: 'skel/prototype/pnpm-workspace.yaml'
232
+ },
233
+ {
234
+ type: 'add',
235
+ path: 'src/app/config.ts',
236
+ templateFile: 'skel/prototype/src/app/config.ts.hbs'
237
+ },
228
238
  {
229
239
  type: 'merge',
230
240
  path: 'package.json',
@@ -40,7 +40,7 @@ jobs:
40
40
  uses: ./.github/actions/build-app
41
41
 
42
42
  - name: Save build directory
43
- uses: actions/upload-artifact@v6
43
+ uses: actions/upload-artifact@v7
44
44
  with:
45
45
  name: 'build'
46
46
  path: "dist"
@@ -66,7 +66,7 @@ jobs:
66
66
  node: 22
67
67
 
68
68
  - name: Download build directory
69
- uses: actions/download-artifact@v7
69
+ uses: actions/download-artifact@v8
70
70
  with:
71
71
  name: 'build'
72
72
  path: "dist"
@@ -0,0 +1,3 @@
1
+ onlyBuiltDependencies:
2
+ - bun
3
+ - cypress
@@ -0,0 +1 @@
1
+ export const siteTitle: string = '{{{ fullName }}}';