@adbayb/create 0.8.0 → 0.11.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 +18 -2
- package/README.md +7 -0
- package/cli/index.js +1 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,16 +3,32 @@
|
|
|
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.
|
|
6
|
+
# [0.11.0](https://github.com/adbayb/stack/compare/v0.10.0...v0.11.0) (2022-03-31)
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
### Features
|
|
10
10
|
|
|
11
|
-
* **
|
|
11
|
+
* **scripts:** use built-in package manager to resolve bin instead of yarn ([80a5fd4](https://github.com/adbayb/stack/commit/80a5fd4776b4f36ac6e583e289342bfe2474e22e))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
12
15
|
|
|
13
16
|
|
|
17
|
+
# [0.10.0](https://github.com/adbayb/stack/compare/v0.9.0...v0.10.0) (2021-11-25)
|
|
18
|
+
|
|
19
|
+
### Features
|
|
20
|
+
|
|
21
|
+
- **prettier-config:** make prettier a peer dependency ([7ff4fe8](https://github.com/adbayb/stack/commit/7ff4fe86438dbccfebe27ad71fabd2108e1b848e))
|
|
14
22
|
|
|
23
|
+
# [0.9.0](https://github.com/adbayb/stack/compare/v0.8.0...v0.9.0) (2021-11-23)
|
|
24
|
+
|
|
25
|
+
**Note:** Version bump only for package @adbayb/create
|
|
26
|
+
|
|
27
|
+
# [0.8.0](https://github.com/adbayb/stack/compare/v0.7.0...v0.8.0) (2021-11-23)
|
|
28
|
+
|
|
29
|
+
### Features
|
|
15
30
|
|
|
31
|
+
- **create:** use husky v4 ([982c8be](https://github.com/adbayb/stack/commit/982c8bea835f1610d578175071b6d52e83cc8e92))
|
|
16
32
|
|
|
17
33
|
# [0.7.0](https://github.com/adbayb/stack/compare/v0.6.1...v0.7.0) (2021-07-17)
|
|
18
34
|
|
package/README.md
CHANGED
|
@@ -8,3 +8,10 @@
|
|
|
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
|
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.
|
|
3
|
+
"version": "0.11.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"license": "MIT",
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"husky": "4.3.8",
|
|
30
|
-
"lint-staged": "12.
|
|
30
|
+
"lint-staged": "12.3.7",
|
|
31
31
|
"ora": "5.4.1"
|
|
32
32
|
},
|
|
33
|
-
"gitHead": "
|
|
33
|
+
"gitHead": "9dd2e1ca7f903bc64405c860118c3212a3766507"
|
|
34
34
|
}
|