@adbayb/create 0.9.0 → 0.12.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,43 @@
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)
6
+ # [0.12.0](https://github.com/adbayb/stack/compare/v0.11.0...v0.12.0) (2022-04-01)
7
7
 
8
- **Note:** Version bump only for package @adbayb/create
9
8
 
9
+ ### Features
10
+
11
+ * update dependencies ([4dcd403](https://github.com/adbayb/stack/commit/4dcd4039c0dac3596129db05657fa5a85deaceab))
10
12
 
11
13
 
12
14
 
13
15
 
14
- # [0.8.0](https://github.com/adbayb/stack/compare/v0.7.0...v0.8.0) (2021-11-23)
16
+
17
+ # [0.11.0](https://github.com/adbayb/stack/compare/v0.10.0...v0.11.0) (2022-03-31)
15
18
 
16
19
 
17
20
  ### Features
18
21
 
19
- * **create:** use husky v4 ([982c8be](https://github.com/adbayb/stack/commit/982c8bea835f1610d578175071b6d52e83cc8e92))
22
+ * **scripts:** use built-in package manager to resolve bin instead of yarn ([80a5fd4](https://github.com/adbayb/stack/commit/80a5fd4776b4f36ac6e583e289342bfe2474e22e))
23
+
24
+
20
25
 
21
26
 
22
27
 
28
+ # [0.10.0](https://github.com/adbayb/stack/compare/v0.9.0...v0.10.0) (2021-11-25)
29
+
30
+ ### Features
31
+
32
+ - **prettier-config:** make prettier a peer dependency ([7ff4fe8](https://github.com/adbayb/stack/commit/7ff4fe86438dbccfebe27ad71fabd2108e1b848e))
33
+
34
+ # [0.9.0](https://github.com/adbayb/stack/compare/v0.8.0...v0.9.0) (2021-11-23)
35
+
36
+ **Note:** Version bump only for package @adbayb/create
37
+
38
+ # [0.8.0](https://github.com/adbayb/stack/compare/v0.7.0...v0.8.0) (2021-11-23)
39
+
40
+ ### Features
23
41
 
42
+ - **create:** use husky v4 ([982c8be](https://github.com/adbayb/stack/commit/982c8bea835f1610d578175071b6d52e83cc8e92))
24
43
 
25
44
  # [0.7.0](https://github.com/adbayb/stack/compare/v0.6.1...v0.7.0) (2021-07-17)
26
45
 
package/README.md CHANGED
@@ -8,3 +8,11 @@
8
8
 
9
9
  - `cd my-project-root-folder`
10
10
  - `npm init @adbayb --yes` or `npx @adbayb/create`
11
+
12
+ ## TODO
13
+
14
+ - Github actions (integrate and release)
15
+ - PNPM
16
+ - @adbayb/scripts usage
17
+ - Monorepo by default with project_name, packages/*, examples/*, docs/, .config (?) folder
18
+ - Renovatebot
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.12.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -26,9 +26,7 @@
26
26
  },
27
27
  "license": "MIT",
28
28
  "dependencies": {
29
- "husky": "4.3.8",
30
- "lint-staged": "12.1.2",
31
29
  "ora": "5.4.1"
32
30
  },
33
- "gitHead": "71fd3ed9468b258ea3134103913d7cceec9bedfd"
31
+ "gitHead": "0e0fb73eba71f7a5c1c9a19252ca6527cb77aa5d"
34
32
  }