@tukuyomil032/bricklayer 1.0.2 → 1.0.3
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/README.md +3 -6
- package/dist/index.js +2 -3
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -32,17 +32,14 @@ bun add -g @tukuyomil032/bricklayer
|
|
|
32
32
|
|
|
33
33
|
```bash
|
|
34
34
|
# When treating the current directory during command execution as the project's root folder:
|
|
35
|
-
|
|
35
|
+
brick create
|
|
36
36
|
|
|
37
37
|
# If you want to specify the project's root folder yourself (we generally recommend using this option):
|
|
38
38
|
# Use the arrow keys (up and down) and the Enter key to navigate to the project's root folder.
|
|
39
|
-
|
|
39
|
+
brick create -d
|
|
40
40
|
|
|
41
41
|
# You can also specify a project folder directly by entering a relative path after the `-d` option.
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
# available aliases
|
|
45
|
-
bl create
|
|
42
|
+
brick create -d ~/Documents/dev/CLI/my-test-project
|
|
46
43
|
```
|
|
47
44
|
|
|
48
45
|
Follow the interactive prompts to configure your project:
|
package/dist/index.js
CHANGED
|
@@ -3,10 +3,9 @@ import { createCommand } from './create/index.js';
|
|
|
3
3
|
import { sampleCommand } from './sample.js';
|
|
4
4
|
const program = new Command();
|
|
5
5
|
program
|
|
6
|
-
.name('
|
|
7
|
-
.alias('bl')
|
|
6
|
+
.name('brick')
|
|
8
7
|
.description('Interactive CLI to scaffold TypeScript CLI projects')
|
|
9
|
-
.version('
|
|
8
|
+
.version('1.0.3');
|
|
10
9
|
program.addCommand(createCommand());
|
|
11
10
|
program.addCommand(sampleCommand());
|
|
12
11
|
program.parseAsync(process.argv).catch((err) => {
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tukuyomil032/bricklayer",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.3",
|
|
5
5
|
"description": "Interactive TypeScript CLI project scaffolder",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "./dist/index.js",
|
|
8
8
|
"module": "./dist/index.js",
|
|
9
9
|
"bin": {
|
|
10
|
-
"
|
|
10
|
+
"brick": "./dist/index.js"
|
|
11
11
|
},
|
|
12
12
|
"files": [
|
|
13
13
|
"dist",
|