@react-foundry/create 0.1.6 → 0.1.7
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/dist/skel-prototype.tar
CHANGED
|
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.
|
|
3
|
+
"version": "0.1.7",
|
|
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.
|
|
24
|
+
"@react-foundry/plop-pack": "^0.1.7"
|
|
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',
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const siteTitle: string = '{{{ fullName }}}';
|