@pixpilot/scaffoldfy-configs 0.28.0 → 0.29.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
@@ -1,5 +1,11 @@
1
1
  # @pixpilot/scaffoldfy-configs
2
2
 
3
+ ## 0.29.0
4
+
5
+ ### Minor Changes
6
+
7
+ - replace update task with clone monorepo template task
8
+
3
9
  ## 0.28.0
4
10
 
5
11
  ### Minor Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pixpilot/scaffoldfy-configs",
3
3
  "type": "module",
4
- "version": "0.28.0",
4
+ "version": "0.29.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.50.0",
30
- "@internal/tsdown-config": "0.1.0"
30
+ "@pixpilot/scaffoldfy": "0.50.0"
31
31
  },
32
32
  "prettier": "@internal/prettier-config",
33
33
  "publishConfig": {
@@ -30,18 +30,12 @@
30
30
  ],
31
31
  "tasks": [
32
32
  {
33
- "id": "update-contributing",
34
- "name": "Update CONTRIBUTING.md",
35
- "description": "Update contributing guidelines with project info",
36
- "type": "replace-in-file",
33
+ "id": "clone-monorepo-template",
34
+ "name": "Clone Monorepo Template",
35
+ "description": "Clone the monorepo template",
36
+ "type": "exec",
37
37
  "config": {
38
- "file": "CONTRIBUTING.md",
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
  ]