@cocreate/cli 1.48.0 → 1.50.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/.github/workflows/automated.yml +0 -1
- package/CHANGELOG.md +40 -0
- package/CoCreate.config.js +499 -420
- package/docs/index.html +250 -250
- package/package.json +5 -7
- package/prettier.config.js +18 -0
- package/src/addMeta.js +74 -67
- package/src/coc.js +129 -114
- package/src/commands/acme.js +19 -22
- package/src/commands/bump.js +149 -87
- package/src/commands/clone.js +26 -22
- package/src/commands/fs/automated.js +81 -31
- package/src/commands/fs/config.js +94 -38
- package/src/commands/fs/gitignore.js +13 -22
- package/src/commands/fs/manual.js +17 -27
- package/src/commands/fs/prettier.config.js +99 -0
- package/src/commands/fs/remove.js +7 -12
- package/src/commands/fs/replace.js +23 -31
- package/src/commands/fs/webpack.js +143 -149
- package/src/commands/install.js +18 -22
- package/src/commands/link.js +73 -60
- package/src/commands/nginx.js +19 -22
- package/src/commands/symlink.js +132 -115
- package/src/execute.js +63 -50
- package/src/index.js +3 -0
- package/src/spinner.js +85 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,43 @@
|
|
|
1
|
+
# [1.50.0](https://github.com/CoCreate-app/CoCreate-cli/compare/v1.49.0...v1.50.0) (2025-04-30)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* added missing plugin repos to config ([5452746](https://github.com/CoCreate-app/CoCreate-cli/commit/54527462a68db9416cd726b2978c33dbf84529e0))
|
|
7
|
+
* apply missing repositories ([7eed1d3](https://github.com/CoCreate-app/CoCreate-cli/commit/7eed1d3656b074a942f551ff7e98b8c1b67112c0))
|
|
8
|
+
* CoCreate-docs excludded from fs/webpack ([d6b6b81](https://github.com/CoCreate-app/CoCreate-cli/commit/d6b6b81b3322e8bbb33582145e2d7eb515b3e804))
|
|
9
|
+
* enhance debug output and improve failed retry handling ([1acee5d](https://github.com/CoCreate-app/CoCreate-cli/commit/1acee5df1a6ad17752df4ed4435273ff7dbdb412))
|
|
10
|
+
* facebook typo ([5fcbc8c](https://github.com/CoCreate-app/CoCreate-cli/commit/5fcbc8c713c3e6ff751d67f71fe76bf68318cced))
|
|
11
|
+
* improved handeling of webpack config generation ([4743b98](https://github.com/CoCreate-app/CoCreate-cli/commit/4743b98f0f7d2c67678d487f5cbfd42fc5f3ea63))
|
|
12
|
+
* index as entry ([1a2a0dd](https://github.com/CoCreate-app/CoCreate-cli/commit/1a2a0ddcaa4fafd72ac9a5014b4def6d2ea88a93))
|
|
13
|
+
* renamed CoCreate-components to CoCreate-modules ([81f3a28](https://github.com/CoCreate-app/CoCreate-cli/commit/81f3a28308781326ffff7f68564ae98d33617a22))
|
|
14
|
+
* update query attributes ([730bd25](https://github.com/CoCreate-app/CoCreate-cli/commit/730bd250acc7797d8e16449eb417c088aa83666d))
|
|
15
|
+
* updated dependencies ([27a046c](https://github.com/CoCreate-app/CoCreate-cli/commit/27a046c826eec832a68ebf3679b66e920137d0f6))
|
|
16
|
+
* webpack.config and devdependencies ([a42ee03](https://github.com/CoCreate-app/CoCreate-cli/commit/a42ee0378c557101aed823d4b3ee959408661d32))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Features
|
|
20
|
+
|
|
21
|
+
* Implement automated version updates and improve file handling ([7164e4e](https://github.com/CoCreate-app/CoCreate-cli/commit/7164e4ed5913dc83f1b1641d704339e27b829a24))
|
|
22
|
+
|
|
23
|
+
# [1.49.0](https://github.com/CoCreate-app/CoCreate-cli/compare/v1.48.0...v1.49.0) (2024-11-04)
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
### Bug Fixes
|
|
27
|
+
|
|
28
|
+
* formating ([4fa8f1b](https://github.com/CoCreate-app/CoCreate-cli/commit/4fa8f1bc145c9b42eb9c18795fe3c9e78e7c9ac5))
|
|
29
|
+
* formating ([d7c6940](https://github.com/CoCreate-app/CoCreate-cli/commit/d7c694035d9be72cabf557a50a743d8d1dec4287))
|
|
30
|
+
* prettier.config options ([9c7ed78](https://github.com/CoCreate-app/CoCreate-cli/commit/9c7ed787cc7f4e9ab20ceb6ffa22fcc75384147a))
|
|
31
|
+
* removed glob and prittier package ([568016b](https://github.com/CoCreate-app/CoCreate-cli/commit/568016bdc513a0aa3c10f9e3bfa22374182ef41c))
|
|
32
|
+
* removed loadtest, moved mongodb to plugins ([9cea5db](https://github.com/CoCreate-app/CoCreate-cli/commit/9cea5dbd156f7b5900f43269cf94a7e1bbf77011))
|
|
33
|
+
* usertab false added to tempalte ([8dc0843](https://github.com/CoCreate-app/CoCreate-cli/commit/8dc0843c31f49c0c0bd125ad73ebdbc95dba5adc))
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
### Features
|
|
37
|
+
|
|
38
|
+
* add prettier.config.js and format files ([47de18c](https://github.com/CoCreate-app/CoCreate-cli/commit/47de18c2170889e7f64d8eca34f46b3df166e434))
|
|
39
|
+
* support wildcards, removed glob ([3533c23](https://github.com/CoCreate-app/CoCreate-cli/commit/3533c23b339fa893f7400c13cf0d83624572c0b5))
|
|
40
|
+
|
|
1
41
|
# [1.48.0](https://github.com/CoCreate-app/CoCreate-cli/compare/v1.47.7...v1.48.0) (2024-09-21)
|
|
2
42
|
|
|
3
43
|
|