@pixpilot/scaffoldfy-configs 0.28.0 → 0.30.0
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/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -104,16 +104,6 @@ Usage:
|
|
|
104
104
|
npx @pixpilot/scaffoldfy@latest --config https://unpkg.com/@pixpilot/scaffoldfy-configs@latest/update-root-package-json/scaffoldfy.json
|
|
105
105
|
```
|
|
106
106
|
|
|
107
|
-
### workspace-generator
|
|
108
|
-
|
|
109
|
-
Generate workspace with apps and packages
|
|
110
|
-
|
|
111
|
-
Usage:
|
|
112
|
-
|
|
113
|
-
```sh
|
|
114
|
-
npx @pixpilot/scaffoldfy@latest --config https://unpkg.com/@pixpilot/scaffoldfy-configs@latest/workspace-generator/scaffoldfy.json
|
|
115
|
-
```
|
|
116
|
-
|
|
117
107
|
### workspace-initializer
|
|
118
108
|
|
|
119
109
|
Initial setup for a pnpm + Turbo monorepo template, including project info, license, and initial package generation.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pixpilot/scaffoldfy-configs",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.30.0",
|
|
5
5
|
"author": "PixPilot <m.doaie@hotmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
@@ -25,9 +25,9 @@
|
|
|
25
25
|
"eslint": "^9.38.0",
|
|
26
26
|
"@internal/eslint-config": "0.3.0",
|
|
27
27
|
"@internal/prettier-config": "0.0.1",
|
|
28
|
+
"@internal/tsdown-config": "0.1.0",
|
|
28
29
|
"@internal/vitest-config": "0.1.0",
|
|
29
|
-
"@pixpilot/scaffoldfy": "0.
|
|
30
|
-
"@internal/tsdown-config": "0.1.0"
|
|
30
|
+
"@pixpilot/scaffoldfy": "0.51.0"
|
|
31
31
|
},
|
|
32
32
|
"prettier": "@internal/prettier-config",
|
|
33
33
|
"publishConfig": {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "../node_modules/@pixpilot/scaffoldfy/schema/scaffoldfy.schema.json",
|
|
3
|
-
"extends": ["../workspace-initializer/scaffoldfy.json"],
|
|
3
|
+
// "extends": ["../workspace-initializer/scaffoldfy.json"],
|
|
4
4
|
"name": "pnpm-turbo-monorepo-template-setup",
|
|
5
5
|
"description": "Generate workspace with apps and packages",
|
|
6
6
|
"prompts": [
|
|
@@ -30,18 +30,12 @@
|
|
|
30
30
|
],
|
|
31
31
|
"tasks": [
|
|
32
32
|
{
|
|
33
|
-
"id": "
|
|
34
|
-
"name": "
|
|
35
|
-
"description": "
|
|
36
|
-
"type": "
|
|
33
|
+
"id": "clone-monorepo-template",
|
|
34
|
+
"name": "Clone Monorepo Template",
|
|
35
|
+
"description": "Clone the monorepo template",
|
|
36
|
+
"type": "exec",
|
|
37
37
|
"config": {
|
|
38
|
-
"
|
|
39
|
-
"replacements": [
|
|
40
|
-
{
|
|
41
|
-
"find": "<projectName>",
|
|
42
|
-
"replace": "{{projectName}}"
|
|
43
|
-
}
|
|
44
|
-
]
|
|
38
|
+
"command": "git clone https://github.com/pixpilot/pnpm-turbo-monorepo-template.git"
|
|
45
39
|
}
|
|
46
40
|
}
|
|
47
41
|
]
|
|
@@ -163,10 +163,7 @@
|
|
|
163
163
|
"config": {
|
|
164
164
|
"file": "./scripts/add-dependencies.cjs",
|
|
165
165
|
"runtime": "node",
|
|
166
|
-
"args": [
|
|
167
|
-
"--file={{workspace}}/{{packageBaseName}}/package.json",
|
|
168
|
-
"--deps={{deps}}"
|
|
169
|
-
]
|
|
166
|
+
"args": ["--file={{workspace}}/{{packageBaseName}}/package.json", "--deps={{deps}}"]
|
|
170
167
|
}
|
|
171
168
|
},
|
|
172
169
|
{
|