@adbayb/create 0.9.0 → 0.10.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
@@ -3,24 +3,21 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
- # [0.9.0](https://github.com/adbayb/stack/compare/v0.8.0...v0.9.0) (2021-11-23)
7
-
8
- **Note:** Version bump only for package @adbayb/create
6
+ # [0.10.0](https://github.com/adbayb/stack/compare/v0.9.0...v0.10.0) (2021-11-25)
9
7
 
8
+ ### Features
10
9
 
10
+ - **prettier-config:** make prettier a peer dependency ([7ff4fe8](https://github.com/adbayb/stack/commit/7ff4fe86438dbccfebe27ad71fabd2108e1b848e))
11
11
 
12
+ # [0.9.0](https://github.com/adbayb/stack/compare/v0.8.0...v0.9.0) (2021-11-23)
12
13
 
14
+ **Note:** Version bump only for package @adbayb/create
13
15
 
14
16
  # [0.8.0](https://github.com/adbayb/stack/compare/v0.7.0...v0.8.0) (2021-11-23)
15
17
 
16
-
17
18
  ### Features
18
19
 
19
- * **create:** use husky v4 ([982c8be](https://github.com/adbayb/stack/commit/982c8bea835f1610d578175071b6d52e83cc8e92))
20
-
21
-
22
-
23
-
20
+ - **create:** use husky v4 ([982c8be](https://github.com/adbayb/stack/commit/982c8bea835f1610d578175071b6d52e83cc8e92))
24
21
 
25
22
  # [0.7.0](https://github.com/adbayb/stack/compare/v0.6.1...v0.7.0) (2021-07-17)
26
23
 
package/cli/index.js CHANGED
@@ -106,6 +106,7 @@ const install = async () => {
106
106
  await exec("yarn add @adbayb/eslint-config@latest --dev");
107
107
  await exec("yarn add @adbayb/prettier-config@latest --dev");
108
108
  await exec("yarn add @adbayb/ts-config@latest --dev");
109
+ await exec("yarn add @adbayb/create@latest --dev"); // @todo: replace with @adbayb/scripts once ready (scripts should hoist the husky and other core dev packages)
109
110
  };
110
111
 
111
112
  const clean = async () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adbayb/create",
3
- "version": "0.9.0",
3
+ "version": "0.10.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -30,5 +30,5 @@
30
30
  "lint-staged": "12.1.2",
31
31
  "ora": "5.4.1"
32
32
  },
33
- "gitHead": "71fd3ed9468b258ea3134103913d7cceec9bedfd"
33
+ "gitHead": "ed6e52774ccf2171754b36f1a73390a0f0e012a0"
34
34
  }